5 个解决方案
#1
希望大家帮帮忙
不甚感激
#2
1 用job
2 加分区。
2 加分区。
#3
execute immediate 'crete table new_tab select * from old_tab ...'
另外做分区最好了
另外做分区最好了
#4
create or replace procedure prc_bcktable
as
begin
execute immediate 'crete table table_201202 select * from table where datetime >=''201301''';
--log...
exception
when others then
dbms_output.put_line(sqlcode||sqlerrm);
--记录失败日志...
end;
#5
非常感谢大家
#1
希望大家帮帮忙
不甚感激
#2
1 用job
2 加分区。
2 加分区。
#3
execute immediate 'crete table new_tab select * from old_tab ...'
另外做分区最好了
另外做分区最好了
#4
create or replace procedure prc_bcktable
as
begin
execute immediate 'crete table table_201202 select * from table where datetime >=''201301''';
--log...
exception
when others then
dbms_output.put_line(sqlcode||sqlerrm);
--记录失败日志...
end;
#5
非常感谢大家