当前位置: 移动技术网 > IT编程>数据库>MSSQL > MSSQL 删除数据库里某个用户所有表里的数据

MSSQL 删除数据库里某个用户所有表里的数据

2017年12月12日  | 移动技术网IT编程  | 我要评论

吕秀菱近照,战场前线,异次元杀阵下载

-->title:删除数据库里某个用户所有表里的数据
-->author:wufeng4552
-->date :2009-09-21 15:08:41
--方法1
复制代码 代码如下:

declare @uname varchar(20)
declare cuser cursor for
select so.name
from sysobjects so,sysusers su where so.uid=su.uid and su.name='stone'
and so.xtype='u'
open cuser
fetch next from cuser into @uname
while(@@fetch_status=0)
begin
exec('truncate table [stone].['+@uname+']')
fetch next from cuser
end
close cuser
deallocate cuser

--方法2
复制代码 代码如下:

exec sp_msforeachtable @command1="truncate table ? ;",@whereand='and schema_id = (select schema_id from sys.schemas where [name] =''stone'')'

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网