使用未打开的PDB,将出现如下错误
create user infa_training IDENTIFIED BY infa_training; 次のコマンドの開始中にエラーが発生しました : 行 16 - create user infa_training IDENTIFIED BY infa_training エラー・レポート - ORA-01109: データベースがオープンされていません。 01109. 00000 - "database not open" *Cause: A command was attempted that requires the database to be open. *Action: Open the database and try the command again show pdbs; CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 3 PDBORCL MOUNTEDpdb数据库处于MOUNTED 状态,无法使用
打开pdb数据库
alter pluggable database PDBORCL open; Pluggable database PDBORCLが変更されました。 show pdbs; CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 3 PDBORCL READ WRITE NOpdb数据库处于 READ WRITE 状态,可以使用
create user infa_training IDENTIFIED BY infa_training; User INFA_TRAININGは作成されました。
用户做成
grant DBA,CONNECT,RESOURCE to infa_trainingGrantが正常に実行されました。