alter table t1 disable table lock;Table al..."/>
您好,登錄后才能下訂單哦!
剛翻閱資料,查到一個(gè)數(shù)據(jù)庫(kù)管理的小技巧,可以禁止用戶對(duì)自己schema下的表進(jìn)行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
同時(shí)不影響該表的DML操作。
SQL> delete t1 where deptno=20;
5 rows deleted.
SQL> commit;
Commit complete.
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。