0

不炸毁事务日志的最快方法是什么?

4

2 回答 2

0

CTAS-create table as select 可能是在任何数据库上执行此类操作的最快方法。

于 2013-01-11T14:51:19.083 回答
0

CTAS 或 create table as select 语句作为一个事务完成。

Create table new_table  
as  
select * from old_table

如果您从临时表插入到您的基表中,这可能是最快的:

insert /*+ append */ into base_table  
values(select * from staging_table) ;  

提示您生成最少的append日志记录,因此您必须立即执行备份。

于 2013-01-11T15:09:39.303 回答