oracle 11g 基本操作
1、登入: win + r 開啟 cmd 命令介面。
2、先用DBA登陸:sqlplus / as sysdba;
3、再連線庫:conn 使用者/密碼@sid;
例如:conn system/[email protected];
4、修改密碼:alter user 使用者 identified by 密碼;
列如:alter user system identified by exer;
5、解鎖使用者:alter user 使用者 account unlock;
列如:alter user system account unlock;
6、查詢使用者角色:select * from dba_role_privs where grantee = '使用者';
列如:select * from dba_role_privs where grantee = 'SCOTT';
或者:show user;
select * from user_role_privs;
7、查詢角色的許可權:select * from role_sys_privs;
8、賦予許可權:grant create table to scott; //建立表許可權
grant create procedure to scott;
grant create session to scott; //建立會話許可權
grant dba to scott; //授予最高許可權
刪除dba許可權: revoke dba from scott;
9、匯出
一:將伺服器上的ORACLE資料庫匯入到本地機子上;
具體方法:
在CMD模式下執行以下命令
1\匯出:
exp 使用者名稱/密碼@伺服器端資料庫ID owner=使用者名稱 file=c:/檔名.dmp
例如:
exp system/[email protected]:1521/test owner=system file=e:/test.dmp
10、檢查了使用system表空間的使用者
select distinct owner from dba_segments where tablespace_name='SYSTEM';
如有差錯,後續修改