SQL Server怎样一次性删除master数据库中的所有用户添加的表

时间:2020-11-30 13:53:23
SQL Server怎样一次性删除master数据库中的所有用户添加的表
这是我不小心导入的数据,因为数据量太多,动手一个一个删不实际,所以请问有没有一次性可以删除这些导入的表的,谢谢!

4 个解决方案

#1


use master;
go
sp_msforeachtable @command1="drop table ?"
go

#2


还是楼上的方法高明!!
我只能想到:
select * from sys.tables where is_ms_shipped=0

#3


引用 1 楼 szx1999 的回复:
use master;
go
sp_msforeachtable @command1="drop table ?"
go


非常感谢  高明高明

#4


引用 2 楼 zbdzjx 的回复:
还是楼上的方法高明!!
我只能想到:
select * from sys.tables where is_ms_shipped=0


也很感谢 厉害厉害

#1


use master;
go
sp_msforeachtable @command1="drop table ?"
go

#2


还是楼上的方法高明!!
我只能想到:
select * from sys.tables where is_ms_shipped=0

#3


引用 1 楼 szx1999 的回复:
use master;
go
sp_msforeachtable @command1="drop table ?"
go


非常感谢  高明高明

#4


引用 2 楼 zbdzjx 的回复:
还是楼上的方法高明!!
我只能想到:
select * from sys.tables where is_ms_shipped=0


也很感谢 厉害厉害