程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> ORACLE簡單應用

ORACLE簡單應用

編輯:Delphi

用戶創建:     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   (啟  動)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved