資料庫常用(不好記)語句

2021-10-12 15:33:10 字數 775 閱讀 3937

oracle 匯入dmb檔案

imp 使用者名稱/密碼@例項名 file=匯入的dmp檔案路徑 full=y

例項: imp nguser/

9003

@ngtest full=y file=g:\ng**zk2008201356最終備份.dmp ignore=y;

imp nguser/

9003

@ngtest file=d:\nggxxk1701161525.dmp log=c:\users\hhh\desktop\nggxxk1701161525.log fromuser=nguser tables=

(td_kmdm,t_yhxxb)

,buffer=

10000000 statistics=none touser=nguser,ignore=y;

建立使用者

create user username identified by password;

刪除使用者

drop user username cascade;

//級聯刪除

查詢表空間

select tablespace_name,file_name,autoextensible from dba_data_files;

表空間自動增長

alter database datafile 'd:\oracle\product\10.2.0\oradata\ngtest\users02.dbf' autoextend on;

建立表空間

mysql常用資料庫語句

解決too many connections問題 select concat kill id,from information schema.processlist檢視最大連線數 show variables like max connections 臨時設定成500 set global max ...

常用資料庫分頁語句

select from cat limit select from cat limit 20000,100 從cat表中第20000條開始取出100條記錄,即記錄號為20000到20099的記錄 select from cat limit select from cat limit 100 從cat...

資料庫常用查詢語句

1.all表示所有 where a all select b from t where 條件 a滿足所有b的條件 2.order by排序 select from order by company desc desc是降序 asc是公升序 預設事務開啟的作用是什麼?當我們去執行乙個sql語句的時候,...