sqlserver查询所有表(或所有数据库)中出现的表数据

比如我有10个数据库 data1到data10,在这十个数据库里每个库都有100个表,table1到table100,那么,在这一共1000个表里的记录都不重复,在其中一个表里存在一条记录正是我想查找的记录,要怎么查询?

---
/*
以下是遍历一个数据库的
*/
use db
declare @sql varchar(500)
declare @tablename varchar(20)
declare test1 cursor
for
select name from sysobjects where xtype='U'
open test1
fetch next from test1 into @tablename
while @@FETCH_STATUS=0
begin
select @sql='select * from '+@tablename +' where name ='+'''李智'''
print @sql
begin try
print @sql
exec(@sql)
end try
begin catch
print 'error'
end catch
fetch next from test1 into @tablename
end
close test1
deallocate test1
go
温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-11-20
一个库一个库,一张表一张表的查询
相似回答