批量查看字符所在的表及字段的SQL语句内容

来源:爱站网时间:2022-08-11编辑:网友分享
批量查看字符所在的表及字段的SQL语句内容你了解过吗?如果没有,那么请看看爱站技术频道小编所整理的资料,或多或少能在工作中帮助到你解决问题。
复制代码 代码如下:

declare @str varchar(100)
set @str='8f8el3l'

declare @s varchar(8000)
declare tb cursor local for
select s='if exists(select 1 from ['+b.name+'] where ['+a.name+'] like ''%'+@str+'%'')
print ''所在的表及字段: ['+b.name+'].['+a.name+']'''
from syscolumns a join sysobjects b on a.id=b.id
where b.xtype='U' and a.status>=0
and a.xusertype in(175,239,231,167)
open tb
fetch next from tb into @s
while @@fetch_status=0
begin
exec(@s)
fetch next from tb into @s
end
close tb
deallocate tb

批量查看字符所在的表及字段的SQL语句内容想必朋友们都看明白了吧!爱站技术频道网站每天都会提供不同类型的技术文章给大家,有需要的小伙伴可以随时来关注收藏。 

上一篇:sqlserver系统存储过程的作用介绍

下一篇:SQL提权需要用到的命令

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载