oracle 常用語句

2021-08-28 01:42:25 字數 924 閱讀 3424

一、查詢所有使用者

select username from dba_users

二、查詢使用者下所有表

select * from user_tables

三、oracle中exp,imp的使用詳解

1、exp:

有三種主要的方式(完全、使用者、表)

1、完全:

exp system/manager buffer=64000 file=c:\full.dmp full=y

如果要執行完全匯出,必須具有特殊的許可權

2、使用者模式:

exp sonic/sonic buffer=64000 file=c:\sonic.dmp owner=sonic

這樣使用者sonic的所有物件被輸出到檔案中。

3、表模式:

exp sonic/sonic buffer=64000 file=c:\sonic.dmp owner=sonic tables= (sonic)

這樣使用者sonic的表sonic就被匯出

2、imp:

具有三種模式(完全、使用者、表)

1、完全:

imp system/manager buffer=64000 file=c:\full.dmp full=y

2、使用者模式:

imp sonic/sonic buffer=64000 file=c:\sonic.dmp fromuser=sonic touser=sonic

這樣使用者sonic的所有物件被匯入到檔案中。必須指定fromuser、touser引數,這樣才能匯入資料。

3、表模式:

imp sonic/sonic buffer=64000 file=c:\sonic.dmp owner=sonic tables=(sonic)

這樣使用者sonic的表sonic就被匯入。

oracle 常用語句

oracle 產看表空間 select total.name tablespace name free space,total space free space used space,total space from select tablespace name,sum bytes 1024 102...

oracle常用語句

drop tablespace crm online space including contents and datafiles 刪除表空間 drop user wuliu01 cascade 刪除使用者 exp orcl file d dmp 匯出資料庫 imp orcl file e alen...

oracle 常用語句

oracle 常用語句 查詢表的大小 select t.owner,t.segment name,sum t.blocks 8 1024 m as s,t.segment type from dba segments t where t.owner user name group by t.owne...