資料庫當前只有乙個root使用者,需要建立乙個唯讀帳戶給其他使用,因使用者是使用資料庫管理工具在其他主機訪問,所以還要開戶遠端訪問許可權,操作步驟如下。
1. 使用現有的root使用者登入到mysql。
mysql -uroot -p
2. 建立使用者,並授權select查詢許可權,授權遠端訪問許可權,注意,命令中username/password指使用者名稱密碼,請自己指定。若要限制僅指定ip可以使用此使用者訪問mysql,將%改為具ip即可。
grant select on *.* to 'username'@'%' identified by "password";
3. 重新整理mysql許可權,使使用者建立、授權生效。
flush privileges;
至此完成。
1. 使用現有的root使用者登入到mysql。
mysql -uroot -p
2. 建立使用者,並授權select查詢許可權,授權遠端訪問許可權,注意,命令中username/password指使用者名稱密碼,請自己指定。若要限制僅指定ip可以使用此使用者訪問mysql,將%改為具ip即可。
grant select on *.* to 'username'@'%' identified by "password";
3. 重新整理mysql許可權,使使用者建立、授權生效。
flush privileges;
至此完成。
火鳥資料庫開發筆記
1 建立類似oralce的sys guid set term create or alter procedure sys guid returns hex uuid varchar 32 asdeclare variable i integer declare variable c integer ...
開發筆記(資料庫相關)
1 如何查詢乙個沒有主鍵的表的第n行資料 假設第n條資料 select top n identity int tempid,into temptb from tablename select from temptb where tempid n 為了降低大表的查詢時間,我選擇了選擇top n為止,然...
資料庫的開發筆記 字典表
在實際的資料庫程式開發中,會碰到很多小的字典需要儲存到資料庫的情況。例如,分類a 分類b 分組c 一行資料的配置。這類資料不會很龐大 不會經常修改,此時可以用字典表儲存 表結構如下圖 其中type表資料的名稱 代號 curr id可以選擇自增長,parent id可以理解成父節點的id,value表...