Hi
I am working on Oracle Database 12c Standard Edition Release 12.1.0.2.0
show pdbs;
CON_ID CON_NAME OPEN MODE RESTRICTED
---------- ------------------------------ ---------- ----------
2 PDB$SEED READ ONLY YES
3 PDB_**** READ WRITE YES
I just need to know that how to change PDB mode from restrict mode to normal mode. i have run the following SQL command and got the output as follow
select name,cause,type,action from pdb_plug_in_violations where status <> 'RESOLVED';
NAME
------------------------------
CAUSE TYPE
---------------------------------------------------------------- ---------
ACTION
--------------------------------------------------------------------------------
PDB_*****
SQL patch error ERROR
Call datapatch to reinstall
PDB_*****
SQL patch error ERROR
Call datapatch to reinstall
NAME
------------------------------
CAUSE TYPE
---------------------------------------------------------------- ---------
ACTION
--------------------------------------------------------------------------------
PDB$SEED
SQL patch error ERROR
Call datapatch to reinstall
PDB$SEED
SQL patch error ERROR
NAME
------------------------------
CAUSE TYPE
---------------------------------------------------------------- ---------
ACTION
--------------------------------------------------------------------------------
Call datapatch to reinstall
Any kind of help will be appreciated. Thank you in advance.