如何快速定位查询某个特定内容在数据库哪个表哪个字段中

**

如何快速定位查询某个特定内容在数据库哪个表哪个字段中

**

通过以下存储过程可以快速搜到指定内容在指定数据库里哪个表哪个字段中
注意在“执行”前需先在数据库左上角选择好你要搜索的数据库

declare @zifu varchar(100)
set @zifu=‘Compromise’ --单引号中输入要搜索字段内容

declare @s varchar(8000)
declare sele cursor local for
select ‘if exists(select 1 from [’+b.name+’] where [’+a.name+’] like ‘’%’+@zifu+’%’’)
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 sele
fetch next from sele into @s
while @@fetch_status=0
begin
exec(@s)
fetch next from sele into @s
end
close sele
deallocate sele

以下是我执行该代码的具体结果
如何快速定位查询某个特定内容在数据库哪个表哪个字段中_第1张图片
如何快速定位查询某个特定内容在数据库哪个表哪个字段中_第2张图片

你可能感兴趣的:(如何快速定位查询某个特定内容在数据库哪个表哪个字段中)