zl程序教程

您现在的位置是:首页 >  其它

当前栏目

datapatch meet ORA-01422

ORA
2023-09-11 14:18:40 时间

 [现象]

datapatch ORA-01422: e

 

[解决方法]
sample 1:

--step 1:
sqlplus /nolog
conn /as sysdba
create table registry$sqlpatch_backup as select * from registry$sqlpatch ;
drop table registry$sqlpatch;
@?/rdbms/admin/catsqlreg.sql

---step 2:
alter session set container=PTUAT;
create table registry$sqlpatch_backup as select * from registry$sqlpatch ;
drop table registry$sqlpatch;
@?/rdbms/admin/catsqlreg.sql

--step 3:
alter session set container=PTDEV;
create table registry$sqlpatch_backup as select * from registry$sqlpatch ;
drop table registry$sqlpatch;
@?/rdbms/admin/catsqlreg.sql