Oracle只读表

前端之家收集整理的这篇文章主要介绍了Oracle只读表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Oracle只读表能阻止表上所有的DML操作(truncate/insert/update/delete)

sql> create table t_zhasir as select * from dba_objects where rownum < 10;


--设置表为只读
sql> alter table t_zhasir read only;


Table altered.

--设置表为读写状态

sql> alter table t_zhasir read write; Table altered.

原文链接:https://www.f2er.com/oracle/207747.html

猜你在找的Oracle相关文章