用戶創建: create user <用戶名> identified by <密碼>
default tablespace users
temporary tablespace temp;
新用戶權限設定:grant connect,resource,unlimited tablespace to <用戶名>;
用戶丟棄: drop user <用戶名> cascade;
取消權限: revoke <權限> from <用戶名>;
查詢用戶: select * from dba_users;
查詢已創建用戶:select username from dba_users;
查詢空間: select * from dba_tablespaces;
數據導入: imp <用戶名>/<密碼> file=文件名.dmp full=y
數據導出: exp <用戶名>/<密碼> file=文件名.dmp full=y
提交: commit;
添加數據庫文件:alter tablespace users add datafile 路徑users2.ora size 500M;
alter tablespace rbs add datafile 路徑bs2.ora size 200M;
alter tablespace temp add datafile 路徑 mp2.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 (啟 動)