对于MSSQL数据库的表.如果要全部删除.总结起来有三种方法:
1)删除数据库重新建立数据库;
2)一个个表删除;
3)用脚本把所有表删除.
从方法上可以看出.最省时最方便快捷的还是第三种方法.当然.要使用第三种方法,那就要编写一个脚本了.
以下脚本只在网上找到的.现在整理一下.也当作个标记.
use [DataBase];
declare @table varchar(600)
while (select count(*) from sysobjects where type='u')>=1
begin
set @table=(select top 1 name from sysobjects where type='u')
set @table='drop table '+@table
exec(@table)
end
其中的[DataBase]这个替换为要删除数据库表的数据库--这个不能错.错了就悲剧了:)
type='u'是只删除用户表的意思