oracle之受限模式修改
修改 登入的限制模式
restricted是資料庫受限模式,在這個模式下只有RESTRICTED SESSION 許可權的人才可以登陸,一般用與資料庫維護的時候使用。
首先檢查scott使用者,確認其沒有restricted session許可權
select grantee,granted_role from dba_role_privs where grantee='SCOTT'union
select grantee,privilege from dba_sys_privs where grantee='SCOTT';
GRANTEE GRANTED_ROLE
------------------------------ ----------------------------------------
SCOTT CONNECT
SCOTT RESOURCE
SCOTT UNLIMITED TABLESPACE
restricted是資料庫受限模式,在這個模式下只有RESTRICTED SESSION 許可權的人才可以登陸,一般用與資料庫維護的時候使用。
首先檢查scott使用者,確認其沒有restricted session許可權
select grantee,granted_role from dba_role_privs where grantee='SCOTT'union
select grantee,privilege from dba_sys_privs where grantee='SCOTT';
GRANTEE GRANTED_ROLE
------------------------------ ----------------------------------------
SCOTT CONNECT
SCOTT RESOURCE
SCOTT UNLIMITED TABLESPACE
conn scott/tiger
ERROR:
ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege
Warning: You are no longer connected to ORACLE.
登入資料庫失敗,因為其沒有restricted session許可權
ERROR:
ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege
Warning: You are no longer connected to ORACLE.
登入資料庫失敗,因為其沒有restricted session許可權
為使用者scott授予restricted session許可權,再次登入資料庫,可以登入
grant restricted session to scott;
SP2-0640: Not connected
conn / as sysdba
Connected.
grant restricted session to scott;
Grant succeeded.
conn scott/tiger
Connected.
將資料庫修改為正常模式(即退出限制模式)
conn / as sysdba
Connected.
alter system disable restricted session;
System altered.
由正常模式切換到限制模式的方法
alter system enable restricted session;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20976446/viewspace-717024/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 淺談Oracle的受限模式(Restricted Mode)Oracle模式REST
- Oracle 修改歸檔模式Oracle模式
- ORACLE 受限RESTRICT模式,只讀READ ONLY模式,靜默QUIESCE模式,延遲SUSPEND模式解釋OracleREST模式UI
- oracle 之修改DBIDOracle
- oracle之修改字符集Oracle
- oracle 修改資料庫為歸檔模式Oracle資料庫模式
- ORACLE 12C pdb受限解決思路Oracle
- oracle之 單例項監聽修改埠Oracle單例
- oracle實驗記錄 (oracle的兩種受限制登陸訪問)Oracle
- ORA-00265:修改Oracle歸檔模式錯誤分析Oracle模式
- oracle 修改ORACLE例項Oracle
- 檢視oracle資料庫是否歸檔和修改歸檔模式Oracle資料庫模式
- pdb受限解決思路
- 【引數】ORACLE修改資料庫名之完整版Oracle資料庫
- ORACLE學習之九 Oracle 字符集的檢視和修改 (轉帖)Oracle
- 【Oracle】修改oracle監聽埠Oracle
- oracle 11g開啟歸檔模式及修改歸檔目錄Oracle模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式(轉)Oracle資料庫模式
- RAC(ASM)歸檔模式修改ASM模式
- padding oracle attack相關之CBC模式paddingOracle模式
- Oracle修改時區Oracle
- oracle中修改processOracle
- oracle em 修改埠Oracle
- java檔案受限搜尋Java
- AOSP之修改frameworkFramework
- oracle 11.2.0.1 rac 修改asm磁碟組的冗餘模式(redundancy mode)為normalOracleASM模式ORM
- oracle 10g rac ocfs或者asm 修改為歸檔模式操作步驟Oracle 10gASM模式
- 今天早上將一個新的資料庫$ORACLE_SID修改成歸檔模式,修改步驟如下:資料庫Oracle模式
- Ftp - 主被動模式說明及修改模式命令FTP模式
- zabbix agent(Active)模式 /克隆修改模板模式
- 修改ASM磁碟組冗餘模式ASM模式
- zabbix-agent修改主動模式模式
- 設計模式之禪之代理模式設計模式
- Oracle 字符集修改Oracle
- Oracle RAC 修改 IP 地址Oracle
- oracle nid修改dbnameOracle
- 修改oracle字符集Oracle
- oracle修改字符集Oracle