Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含很多表的数据库,我在主文件组中创建了一个新文件,我还没有插入任何新数据,但是当我尝试删除这个新文件时,我收到了这个错误
无法删除文件“newfile”,因为它不是空的
我怎样才能删除这个文件?
好的,解决方案正如 Mitch Wheat 在他显示的链接中指出的那样。我不得不使用以下方法清空文件:
DBCC SHRINKFILE(newfile,EMPTYFILE)
然后可以使用以下方法消除它:
ALTER DATABASE DBNAME REMOVE FILE newfile