Quote:
Originally posted by ybadejo
You might want to try this steps.
1 Check to see if users are logged on
if not
2. shutdown immediate
3. comment outout archiving in Init.ora file
4. startup restrict mount
5. alter database noarchivelog
6. alter database open
7. do your delete command
once done
8. shutdown immediate
9. uncomment out archiving in Init.ora file
10. startup mount
11. alter database archivelog
12. alter database open
13. alter system disable restricted session
Hopefully this works for you.
I would discourage using this method. First, you have to bounce your database. That by itself is bad enough. However, by switching out of archivelog mode, you have now ruined your chances for any kind of recovery using archived redo logs.