使用DBCC SHRINKFILE EMPTYFILE 选项迁移数据

对于DBCC SHRINKFILE EMPTYFILE的解释:

 

将指定文件中的所有数据迁移到同一文件组中的其他文件。由于数据库引擎不再允许将数据放在空文件内,因此可以使用ALTERDATABASE语句来删除该文件。

 

假设说我现在想将数据从一个磁盘移动到另外一个磁盘,在移动过程中不想数据库Offline,我们可以使用这个选项。下面是一个例子:

 

 

 --create demodatabase

create database test

on primary( name=test,filename=‘D:\testdata\test_primary.mdf‘),

filegroup [seconday]

(name = testsecondary,filename=‘d:\testdata\test_secondary.ndf‘)

log on(name = test_log,filename=‘d:\testdata\test_log.ldf‘)

 

 

--create tableon secondary filegroup

use test

go

create table test(idint) on [seconday]

 

--Insert Demodata

 

declare @int int

set @int =0

while @int <100000

begin

insert into testvalues (@int )

set @int = @int+1

end

 

 --Add another dadtafile on secondary file group

 alter database test

 add file

 (name= test_secondary_new,filename=‘d:\testdata\test_secondary_new.ndf‘)

 to filegroup[seconday]

 

 

--Empty oldfile and data will move to another file in the same filegroup

 dbccshrinkfile(‘testsecondary‘,emptyfile)

 go

 --Show filesizeafter empty file

 dbccshowfilestats

 go

 --remove old file

 alter database test removefiletestsecondary

 

--drop demodatabase

 use master

 go

 drop database test

 

使用这个选项不能够移动系统对象,所以有局限性。另外性能上来讲肯定没有detach然后附近来的快,好处是整个数据库不会offline. 

使用DBCC SHRINKFILE EMPTYFILE 选项迁移数据,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。