脚本找出mysql中缺少主键的表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了脚本找出mysql中缺少主键的表相关的知识,希望对你有一定的参考价值。

有时候早期建的表上可能缺少主键,这样容易导致查询或者主从复制比较慢。


下面是一个小的脚本,用于找出没有主键的表。


#!/bin/bash

# 找出没有主键的表

# Date: 2017/06/05


source /etc/profile


LOG="/tmp/nopk.log_$(date +%F)"


user=‘root‘

host=‘localhost‘

pass=‘123456‘

sock=‘/tmp/mysql.sock‘


MYSQL_CMD="mysql -u$user -h$host -p$pass -S$sock"


dbs=$($MYSQL_CMD 2>/dev/null -BNe "select SCHEMA_NAME from information_schema.SCHEMATA where SCHEMA_NAME not in (‘information_schema‘,‘performance_schema‘)")


for db in $dbs; do 

$MYSQL_CMD information_schema 2>/dev/null -NBe "select distinct TABLE_SCHEMA,table_name from columns where  TABLE_SCHEMA = ‘$db‘ and table_name not in ( select distinct table_name from COLUMNS  where TABLE_SCHEMA = ‘$db‘ and (column_key  = ‘PRI‘ or column_key = ‘UNI‘) )" | tee -a $LOG

done



本文出自 “菜鸡” 博客,请务必保留此出处http://lee90.blog.51cto.com/10414478/1932495

以上是关于脚本找出mysql中缺少主键的表的主要内容,如果未能解决你的问题,请参考以下文章

动态查找带有主键的表

为啥我的 MySQL 表主键不会自动增加?

hive建立数据仓库 事实表的外键和维度表主键怎么关联 啥命令

mysql表中一个表中可以有多个主键吗?

MySQL多表

oracle怎么查询所有的表有没有主键