If a point-in-time recovery is not an option, follow the steps below:
- Backup the Database as sys user.
- We will have to patch fed$apps and obj$.
- startup restrict;
- Create backup tables:create table backup_fed$apps as select * from fed$apps where APP_NAME = ‘_CURRENT_STATE’;
create table backup_obj as select * from obj$ where bitand(flags, 134217728)=134217728; - Update the necessary records:update fed$apps set APP_STATUS = 0 where APP_NAME = ‘_CURRENT_STATE’;
commit;update obj$ set flags = flags – 134217728 where bitand(flags, 134217728) = 134217728;
commit; - shutdown abort;
- startup
- Retry the Export
Recommended Posts