ORACLE簡單應用 (轉)

worldblog發表於2007-12-12
ORACLE簡單應用 (轉)[@more@]

建立:   create user ntified by

  default tablespace users

    temporary tablespace temp;

 :namespace prefix = o ns = "urn:schemas--com::office" />

新使用者設定:grant connect,re,unlimited tablespace to ;

 

使用者丟棄:  drop user cascade;

 

取消許可權:  revoke from ;

 

查詢使用者:  * from a_users;

 

查詢已建立使用者:select username from dba_users;

 

查詢空間:  select * from dba_tablespaces;

 

資料匯入:  imp / file=名.dmp full=y

 

資料匯出:  e/ file=檔名.dmp full=y

 

提交:    commit;

 

新增檔案:alter tablespace users add datafile '路徑users2.ora' size 500M;

 

  alter tablespace rbs add datafile '路徑rbs2.ora' size 200M;

 

  alter tablespace temp add datafile '路徑tmp2.ora' size 200M;

 

開啟表:  alter rollback segment rb* online;

 

關閉表:  alter rollback segment rb* offline;

 

新增回滾段:  alter rollback segment rb* storage (next 2M optimal 10M);

 

建立回滾段:  create public rollback segment rb* storage (next 2M optimal 10M);

 

 

登錄檔語言:  ZHS16GBK  或者  ZHS16CGB231280

 

啟動LISTENER:  lsnrctl status  (看狀態)

    lsnrctl start  (啟  動)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-991767/,如需轉載,請註明出處,否則將追究法律責任。

相關文章