oracle 刪除大量資料的方法

2021-07-11 07:29:21 字數 631 閱讀 3655

如果全表刪除直接用truncate table tabl1;就可以了,如果是需要根據條件刪除,正常是用delete方法進行刪除,但這樣刪除由於要寫日誌(用nologging方法對delete方法無效),資料量大了會非常的慢,所以可以參照下面的方法來進行。

我的步驟是(下邊操作都是在plsql中執行的)

1、首先 將這個月的資料匯出到乙個臨時表中(這些資料是自己希望保留的)

create table temptable as select id,name from table1 where sj>to_date('2013-7-31 23:59:59','yyyy-mm-dd hh24:mi:ss');

2、然後將2500萬資料整個刪除(這個是我在有備份情況下才用的)

truncate table table1; 

3、然後將整個表刪除(因為事先從網上查了下,有網友說truncate後,直接把資料從臨時表導回來事個資料檔案沒有變小,自己沒有試)

drop table table1;

4、將資料從臨時表全部導回來

create table table1 as select id,name from temptable;

5、然後刪除臨時表

drop table temptable;

oracle大量資料刪除

oracle有個資料表現在已經有2500萬條資料了,軟體用到這個表的資料時就變的特別慢,所以準備把乙個月以前的資料全部清除。我的步驟是 下邊操作都是在plsql中執行的 1 首先 將這個月的資料匯出到乙個臨時表中 這些資料是自己希望保留的 create table temptable as sele...

Oracle大量刪除資料方案

觀點一 create or replace procedure delete table isi number 10 begin for x in select from emp where deptno like a loop delete emp where emp.id x.id i i 1 ...

oracle儲存過程刪除大量資料

create or replace procedure delbigtab p tablename in varchar2,p condition in varchar2,p count in varchar2 as pragma autonomous transaction n delete nu...