0
插入記錄我已經SQL查詢,如:當提交記錄時,我們是從其他表
insert into dedupunclear
select mdnnumber,poivalue
from deduporiginal a
where exists (
select 1
from deduporiginal
where mdnnumber=a.mdnnumber and rowid<a.rowid)
or mdnnumber is null;
有500K記錄在我的deduporiginal。我已經把這個查詢放在函數中,但是它需要大約3個小時才能將記錄提交到dedupunclear表。
有解決性能問題的方法嗎?
當此查詢提交記錄時,在某個時間間隔或從select
查詢得到所有結果後?
要清理已經提交的部分結果的數據有多困難? – Thilo 2011-12-16 07:15:39