sql server大資料歸檔

來源:互聯網
上載者:User

昨天做了個日常大資料歸檔,歸檔700W資料,表欄位130左右,欄位比較多,分享下!

---- 先禁用表的index

1.先擷取需要停用的索引

declare @tname varchar(100)

set @tname='orders'

select  'alter index '+' '+c.indexname+' '+'on'+' '+@tname+' '+'disable'

from

(

select * from

(

SELECT

OBJECT_NAME(i.OBJECT_ID) AS TableName,

i.name AS IndexName,

i.index_id AS IndexID,

8 * SUM(a.used_pages)/1024 AS 'Indexsize(MB)'

FROM sys.indexes AS i

JOIN sys.partitions AS p ON p.OBJECT_ID = i.OBJECT_ID AND p.index_id = i.index_id

JOIN sys.allocation_units AS a ON a.container_id = p.partition_id

GROUP BY i.OBJECT_ID,i.index_id,i.name

)a

where a.tablename=@tname

--order by [Indexsize(MB)] desc

)c

go

--2.禁止上面語句 獲得索引,但是主鍵和clustered index別禁用,切記!

----刪除資料

DBCC DROPCLEANBUFFERS

DBCC FREEPROCCACHE

go

SET NOCOUNT ON

BEGIN TRANSACTION

while 1=1

begin

delete top(20000) from dbo.orders   with(TABLOCK)

where ordertime <'2010-1-1'

if @@rowcount<20000

break

end

commit

go

----索 引重建

alter index all on orders rebuild

go

基本上很短時間搞定,為了效能,需 要完成索引rebuild和統計資訊更新!

查看本欄目更多精彩內容:http://www.bianceng.cn/database/SQLServer/

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.