Jul 13
--add a new file to the databaseALTER DATABASE x ADD FILE(newfile,.........)--move data from the the existing file to the new fileDBCC SHRINKFILE('oldfile','EMPTYFILE')--now move it backDBCC SHRINKFILE('newfile','EMPTYFILE')--delete the new fileALTER DATABASE x REMOVE FILE newfile