溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何防止人為誤操作MySQL數(shù)據(jù)庫

發(fā)布時間:2021-10-23 09:28:45 來源:億速云 閱讀:185 作者:iii 欄目:數(shù)據(jù)庫

這篇文章主要介紹“如何防止人為誤操作MySQL數(shù)據(jù)庫”,在日常操作中,相信很多人在如何防止人為誤操作MySQL數(shù)據(jù)庫問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何防止人為誤操作MySQL數(shù)據(jù)庫”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

MySQL幫助說明

[root@binghe~]# mysql --help|grep dummy        -U, --i-am-a-dummy Synonym for option --safe-updates, -U. i-am-a-dummy      FALSE

在mysql命令加上選項-U后,當(dāng)發(fā)出沒有WHERE或LIMIT關(guān)鍵字的UPDATE或DELETE時,MySQL程序就會拒絕執(zhí)行。

指定-U登錄測試

[root@binghe~]# 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.7.24-log MySQL Community Server (GPL) Copyright (c) 2000, 2018, 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

提示:不加條件無法刪除,目的達到。

指定別名

我們可以將操作MySQL的命令做成別名,防止他人和DBA誤操作數(shù)據(jù)庫,將操作MySQL的命令做成別名也非常簡單,這里,我們直接上示例了,如下所示。

[root@binghe~]# alias mysql='mysql -U' [root@binghe~]# 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.7.24-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

在命令行會話設(shè)置alias mysql='mysql  -U'之后,只能在當(dāng)前會話有效,關(guān)閉當(dāng)前連接服務(wù)器的命令行之后,會話失效,則別名設(shè)置也會隨之失效。如果想關(guān)閉連接服務(wù)器的會話終端,別名設(shè)置仍然有效,或者多個會話都能夠使用這個別名來操作數(shù)據(jù)庫,則我們可以將設(shè)置別名的命令添加到/etc/profile系統(tǒng)環(huán)境變量中,如下所示。

[root@binghe~]# echo "alias mysql='mysql -U'" >>/etc/profile [root@binghe~]# . /etc/profile [root@binghe~]# tail -1 /etc/profile alias mysql='mysql -U'

這樣,當(dāng)我們退出當(dāng)前連接服務(wù)器的會話終端,MySQL的別名設(shè)置依然有效,每次連接服務(wù)器時,不必在當(dāng)前會話中重新設(shè)置MySQL的命令別名,直接使用即可。

到此,關(guān)于“如何防止人為誤操作MySQL數(shù)據(jù)庫”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI