Minimalistic Oracle contains a collection of practical examples from my encounters with Oracle technologies.
When relevant, I also write about other technologies, like Linux or PostgreSQL.
Many of the posts starts with "how to" since they derive directly from my own personal experience.
My goal is to provide simple examples, so that they can be easily adapted to other situations.
Thursday, June 28, 2018
How to solve ORA-00069: cannot acquire lock -- table locks disabled
Unfortunately, the only known way out of this is to
1. stop the database
2. start in restricted mode with "startup restrict"
3. enable table locks:
alter table scott.emp enable table lock;
4. startup the database in normal mode, and you will now be able to aquire locks on the table.
No comments:
Post a Comment