对于DBCC SHRINKFILE EMPTYFILE的解释:

 

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

 

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

 

--create demodatabase

createdatabase test

onprimary( name =test,filename='D:\testdata\test_primary.mdf'),

filegroup [seconday]

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

logon (name = test_log,filename='d:\testdata\test_log.ldf')

 

 

--create tableon secondary filegroup

use test

go

createtable test(id int)on [seconday]

 

--Insert Demodata

 

declare @int int

set @int =0

while @int <100000

begin

insertinto test values (@int )

set @int = @int+1

end

--Add another dadtafile on secondary file group

alterdatabase test 

addfile

(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

alterdatabase test remove filetestsecondary

--drop demodatabase

usemaster

go

dropdatabase test

 

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