MSSQL 删除数据库里某个用户所有表里的数据
MSSQL 删除数据库里某个用户所有表里的数据
发布时间:2016-12-29 来源:查字典编辑
摘要:-->Title:删除数据库里某个用户所有表里的数据-->Author:wufeng4552-->Date:2009-09-2115:08:...

-->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'')'

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新mssql数据库学习
热门mssql数据库学习
编程开发子分类