本文實例講述了sql server實現在多個數據庫間快速查詢某個表信息的方法。分享給大家供大家參考,具體如下:
最近出來實習,所在公司的服務器有十幾個數據庫,為了方便根據某個數據表的 表名 快速找到對應的數據庫,又復習了一下游標的知識,寫了下面這個sql代碼,方便自己的工作。
1.先了解一下系統存儲過程和系統表的使用,簡單介紹一下我用到的幾個系統存儲過程(資料參考網絡)
use master --切換到系統數據庫,因為下面用到的系統存儲過程和系統表大部分存在於該數據庫 go exec sp_helpdb --查詢 當前 服務器的所有數據庫 select [name] from [sysdatabases] --查詢 當前 服務器的所有數據庫 select * from sysobjects where type = 'u'--列出 當前 數據庫裡所有的表名 select * from information_schema.tables --列出 當前 數據庫裡所有的表名(執行對比一下與上面這個語句的查詢結果) select * from syscolumns where id = object_id('spt_fallback_db') --列出指定表裡的所有的信息,包括字段等等(根據需要修改參數)
2.直接上代碼(具體請參考注釋,純屬學習,有錯請指出)
use master --切換到系統數據庫,因為下面用到的 系統存儲過程和系統表 大部分存在於該數據庫 go ------------------在當前服務器 根據表的名字 在多個數據庫進行查詢 得到哪個數據庫存在該表的信息------------------ declare @DataBaseName nvarchar(max) --定義變量(數據庫的名字) declare cur cursor for select [name] from [sysdatabases] --定義游標,該游標指向 當前 服務器上的所有數據庫名字列表 open cur --打開游標 create table #TableInfo (table_catalog nvarchar(max),table_schema nvarchar(max),table_name nvarchar(max),table_type nvarchar(max)) --創建臨時表用於存儲所有數據庫的所有表信息 fetch next from cur into @DataBaseName --獲取游標的數據,相當於獲取數據庫名字列表的第一條數據 while (@@fetch_status=0) begin print '' print '' print '當前數據庫: '+ @DataBaseName --讀出每個數據庫的名字 insert into #TableInfo --把存儲過程查詢出來的數據插進臨時表 exec('select table_catalog,table_schema,table_name,table_type from ' + @DataBaseName + '.information_schema.tables') --查詢對應數據庫的所有表 print '--------------------------------------------------------------------------------------------------------------------------------------' fetch next from cur into @DataBaseName --游標移動 end close cur --關閉游標 deallocate cur --釋放游標 print '' print '' print '' print '' print '' declare @TableName nvarchar(max) set @TableName = 'MyTableName' --查詢條件(根據需要自行修改) if exists(select table_name from #TableInfo where table_name = @TableName) --查詢指定名字的表 begin print '====================當前服務器存在 ' + @TableName + ' 表,相關信息請到結果窗口查看====================' select table_catalog as '所屬數據庫',table_name as '表名' from #TableInfo where table_name = @TableName --輸出表的相關信息,從這些信息就可以知道這個表在哪個數據庫 end else begin print '--------------------當前服務器不存在 ' + @TableName + ' 表--------------------' end drop table #TableInfo --刪除臨時表
更多關於SQL Server相關內容感興趣的讀者可查看本站專題:《SQL Server查詢操作技巧大全》、《SQL Server存儲過程技巧大全》、《SQL Server索引操作技巧大全》、《SQL Server常用函數匯總》及《SQL Server日期與時間操作技巧總結》
希望本文所述對大家SQL Server數據庫程序設計有所幫助。