刚翻阅资料,查到一个数据库管理的小技巧,可以禁止用户对自己schema下的表进行DDL操作,原理是禁用表上的锁。
SQL> alter table t1 disable table lock;
Table altered.
SQL> drop table t1 purge;
drop table t1 purge
*
ERROR at line 1:
ORA-00069: cannot acquire lock -- table locks disabled for T1
同时不影响该表的DML操作。
SQL> delete t1 where deptno=20;
5 rows deleted.
SQL> commit;
Commit complete.
本文出自 “思考ter的博客” 博客,请务必保留此出处http://bennylee.blog.51cto.com/7832165/1894652
原文地址:http://bennylee.blog.51cto.com/7832165/1894652