今日、元の会社の同僚から電話があり、誤って操作してしまったデータベースのデータを回復する方法を尋ねられました。彼の当初のアイデアはデータベースにログインしてレコードを更新することでしたが、場所を追加するのを忘れたため、悲劇が起こりました。今日は、悪用されたデータを復元する方法については説明しません。これは、同様の問題を回避するための基本的な対策です。大丈夫。直接トピックに進みましょう:
1. MySQL ヘルプの説明
[root@liuyazhuang151 ~]# mysql --help|grep dummy -U, --i-am-a-dummy Synonym for option --safe-updates, -U. i-am-a-dummy FALSE
mysql コマンドにオプション -U を追加した後、WHERE または LIMIT キーワードなしで UPDATE または DELETE が発行されると、mysql プログラムは実行を拒否します
2. -U ログインテストを指定します
[root@liuyazhuang151 ~]# mysql -uroot -proot -S /data/3306/mysql.sock -U Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 14 Server version: 5.5.32-log MySQL Community Server (GPL) Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> delete from oldboy.student; ERROR 1175 (HY000): You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column mysql> quit Bye
ヒント: 無条件に削除することはできません。目的は達成されます。
3. 他の人や DBA が誤操作しないようにエイリアスを作成します
[root@liuyazhuang151 ~]# alias mysql='mysql -U' [root@liuyazhuang151 ~]# mysql -uroot -poldboy123 -S /data/3306/mysql.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 15 Server version: 5.5.32-log MySQL Community Server (GPL) Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> delete from oldboy.student; ERROR 1175 (HY000): You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column mysql> delete from oldboy.student where Sno=5; Query OK, 1 row affected (0.02 sec) mysql> quit Bye [root@liuyazhuang151 ~]# echo "alias mysql='mysql -U'" >>/etc/profile [root@liuyazhuang151 ~]# . /etc/profile [root@liuyazhuang151 ~]# tail -1 /etc/profile alias mysql='mysql -U'
4. 結論:
オプション -U を MySQL コマンドに追加した後、WHERE または LIMIT キーワードを使用しない UPDATE または DELETE が実行されると、 mysql プログラムが実行を拒否しました
上記は MySQL の内容です - MySQL データベースの人による誤用を防ぐ方法 詳細については、PHP 中国語 Web サイト (www.php.cn) に注目してください。