SqlServer中大資料表有條件刪除資料的問題

來源:互聯網
上載者:User

SQLSERVER中要刪除大資料表Table1(千萬條以上)中的部分資料,如果採用delete方法,常常會出現執行逾時。可以採用如下的方法:

選出您所需要保留的記錄到新的表

Select * into Table2 From Table1 Where Time 〉 = '2006-03-10' 


然後直接Truncate Table1。無論何種復原模式都不會進行日誌記錄:Truncate table Table1 

最後對Table2進行改名為Table1:EC sp_rename 'Table2', 'Table1'

注意:

select * into 語句沒這樣的功能,只是簡單產生表,不包括主鍵,預設值等。如果要與源表一樣,可以產生源表的Create Table指令碼,修改表名、鍵名,約束名等,先建立table2,,再用insert into table2 select * from table1把資料複製過去。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.