0
点赞
收藏
分享

微信扫一扫

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

爱喝酒的幸福人 2023-03-04 阅读 63


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


select * from sys.tables where is_ms_shipped=0


举报

相关推荐

0 条评论