Oracle的 alter table table_name nologging; 的使用

Oracle 的 nologging 的使用,同时满足一下三个条件才不会真正产生日志

1.表空间:alter tablespace table_name nologging;

2.表:alter table table_name nologging;

3.插入:insert /+append/ into table_name select * from table_name1;

猜你喜欢

转载自blog.csdn.net/qq_28358461/article/details/88976159