标签:objects exe object end type vps ble count rom
谁在我的vps上跑了这个?我的备份终于起一定作用了。
GO
declare @sql varchar(8000)
while (select count(*) from sysobjects where type=‘U‘)>0
begin
SELECT @sql=‘drop table ‘ + name
FROM sysobjects
WHERE (type = ‘U‘)
ORDER BY ‘drop table ‘ + name
exec(@sql)
end
标签:objects exe object end type vps ble count rom
原文地址:https://www.cnblogs.com/codingplus/p/2019-05-25-02.html