Oracle Solution for Error ora-00069

ORA-00069: cannot acquire lock -- table locks disabled for string

What triggered the Error:

A command was issued that tried to lock the table indicated in the message. Examples of commands that can lock tables are: LOCK TABLE, ALTER TABLE ... ADD (...), and so on.

What should we do to fix it:

Use the ALTER TABLE ... ENABLE TABLE LOCK command, and retry the command.