Oracle 12c 建立 SCOTT 使用者
--檢視 PDB 情況
[oracle@DB2 admin]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Sat Jan 2 08:47:19 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> select dbid, con_id, name, open_mode from v$pdbs;
DBID CON_ID NAME OPEN_MODE
---------- ---------- ------------------------------ ----------
1686940507 2 PDB$SEED READ ONLY
3729057642 3 PDB1 READ WRITE
--切換到包所在的目錄
[oracle@DB2 ~]$ cd $ORACLE_HOME/rdbms/admin
--需要在 PDB 下面建立,切換到要建立的 PDB
[oracle@DB2 admin]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Sat Jan 2 20:22:50 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> alter session set container=pdb1;
Session altered.
--建立 SCOTT 使用者
SQL> @utlsampl.sql
--檢視建立的使用者
SQL> select username,ACCOUNT_STATUS,created from dba_users order by created;
USERNAME ACCOUNT_STATUS CREATED
-------------------------------------------------------------------------------------------------------------------------------- -------------------------------- ---------
SCOTT OPEN 02-JAN-16
[oracle@DB2 admin]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Sat Jan 2 08:47:19 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> select dbid, con_id, name, open_mode from v$pdbs;
DBID CON_ID NAME OPEN_MODE
---------- ---------- ------------------------------ ----------
1686940507 2 PDB$SEED READ ONLY
3729057642 3 PDB1 READ WRITE
--切換到包所在的目錄
[oracle@DB2 ~]$ cd $ORACLE_HOME/rdbms/admin
--需要在 PDB 下面建立,切換到要建立的 PDB
[oracle@DB2 admin]$ sqlplus / as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Sat Jan 2 20:22:50 2016
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> alter session set container=pdb1;
Session altered.
SQL> @utlsampl.sql
--檢視建立的使用者
SQL> select username,ACCOUNT_STATUS,created from dba_users order by created;
USERNAME ACCOUNT_STATUS CREATED
-------------------------------------------------------------------------------------------------------------------------------- -------------------------------- ---------
SCOTT OPEN 02-JAN-16
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-1970032/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 12c如何建立scott使用者Oracle
- 建立scott使用者及物件物件
- Oracle 12c中建立使用者Oracle
- oracle手工建庫後建立scott使用者的emp表,conn scott/tiger報錯解決Oracle
- Oracle資料庫scott使用者建立view檢視許可權Oracle資料庫View
- Oracle 12C 建立使用者連線pdbOracle
- ORACLE 12C建立使用者之ORA-65096Oracle
- oracle 10g 手動建立scott(tiger) schemaOracle 10g
- Oracle 12c公用賬戶和本地使用者的建立Oracle
- 恢復oracle的scott使用者初始狀態操作Oracle
- Oracle 12c 手動建立CDBOracle
- Oracle 12c系列(二)|PDB的建立Oracle
- 新增scott使用者與其物件物件
- Oracle裡scott的由來Oracle
- Oracle 建立使用者Oracle
- oracle建立使用者Oracle
- Oracle通過scott使用者中的emp練習單表操作Oracle
- Oracle 12c 建立與刪除CDB、PDBsOracle
- Oracle-解鎖scott賬戶Oracle
- Oracle scott/tiger的由來Oracle
- Oracle建立新使用者Oracle
- Oracle 12c 手動建立CDB和非CDBOracle
- Oracle 12c 使用Non-CDB來建立PDBOracle
- Oracle 12C -- 使用seed PDB建立新的pdbOracle
- Oracle 12c 手工建立 和 刪除 PDB 示例Oracle
- 建立、克隆pdb---oracle 12c 學習(1)Oracle
- 使用alter session set current_schema=scott用explain plan for檢視scott使用者的sqlSessionAISQL
- Oracle建立只讀使用者Oracle
- oracle 12c pdb測試:建立、開關、刪除Oracle
- 【Oracle】scott使用者下表結構、初始化資料和建表語句Oracle
- 以scott使用者執行set autotrace 出錯
- 向資料庫中新增HR使用者和SCOTT使用者資料庫
- shell oracle 建立使用者指令碼Oracle指令碼
- 使用非oracle使用者建立databaseOracleDatabase
- oracle建立使用者並授權Oracle
- 詳解oracle使用者建立(中)Oracle
- oracle10g建立使用者Oracle
- Oracle建立使用者和授權Oracle