您好,登錄后才能下訂單哦!
sql server中怎么實(shí)現(xiàn)多個(gè)數(shù)據(jù)庫(kù)間快速查詢某個(gè)表信息,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
1.先了解一下系統(tǒng)存儲(chǔ)過程和系統(tǒng)表的使用,簡(jiǎn)單介紹一下我用到的幾個(gè)系統(tǒng)存儲(chǔ)過程(資料參考網(wǎng)絡(luò))
use master --切換到系統(tǒng)數(shù)據(jù)庫(kù),因?yàn)橄旅嬗玫降南到y(tǒng)存儲(chǔ)過程和系統(tǒng)表大部分存在于該數(shù)據(jù)庫(kù)goexec sp_helpdb --查詢 當(dāng)前 服務(wù)器的所有數(shù)據(jù)庫(kù)select [name] from [sysdatabases] --查詢 當(dāng)前 服務(wù)器的所有數(shù)據(jù)庫(kù)select * from sysobjects where type = 'u'--列出 當(dāng)前 數(shù)據(jù)庫(kù)里所有的表名select * from information_schema.tables --列出 當(dāng)前 數(shù)據(jù)庫(kù)里所有的表名(執(zhí)行對(duì)比一下與上面這個(gè)語句的查詢結(jié)果)select * from syscolumns where id = object_id('spt_fallback_db') --列出指定表里的所有的信息,包括字段等等(根據(jù)需要修改參數(shù))
2.直接上代碼(具體請(qǐng)參考注釋,純屬學(xué)習(xí),有錯(cuò)請(qǐng)指出)
use master --切換到系統(tǒng)數(shù)據(jù)庫(kù),因?yàn)橄旅嬗玫降?nbsp; 系統(tǒng)存儲(chǔ)過程和系統(tǒng)表 大部分存在于該數(shù)據(jù)庫(kù)go------------------在當(dāng)前服務(wù)器 根據(jù)表的名字 在多個(gè)數(shù)據(jù)庫(kù)進(jìn)行查詢 得到哪個(gè)數(shù)據(jù)庫(kù)存在該表的信息------------------declare @DataBaseName nvarchar(max) --定義變量(數(shù)據(jù)庫(kù)的名字)declare cur cursor for select [name] from [sysdatabases] --定義游標(biāo),該游標(biāo)指向 當(dāng)前 服務(wù)器上的所有數(shù)據(jù)庫(kù)名字列表open cur --打開游標(biāo)create table #TableInfo (table_catalog nvarchar(max),table_schema nvarchar(max),table_name nvarchar(max),table_type nvarchar(max)) --創(chuàng)建臨時(shí)表用于存儲(chǔ)所有數(shù)據(jù)庫(kù)的所有表信息fetch next from cur into @DataBaseName --獲取游標(biāo)的數(shù)據(jù),相當(dāng)于獲取數(shù)據(jù)庫(kù)名字列表的第一條數(shù)據(jù)while (@@fetch_status=0)beginprint ''print ''print '當(dāng)前數(shù)據(jù)庫(kù): '+ @DataBaseName --讀出每個(gè)數(shù)據(jù)庫(kù)的名字insert into #TableInfo --把存儲(chǔ)過程查詢出來的數(shù)據(jù)插進(jìn)臨時(shí)表exec('select table_catalog,table_schema,table_name,table_type from ' + @DataBaseName + '.information_schema.tables') --查詢對(duì)應(yīng)數(shù)據(jù)庫(kù)的所有表print '--------------------------------------------------------------------------------------------------------------------------------------'fetch next from cur into @DataBaseName --游標(biāo)移動(dòng)endclose cur --關(guān)閉游標(biāo)deallocate cur --釋放游標(biāo)print ''print ''print ''print ''print ''declare @TableName nvarchar(max)set @TableName = 'MyTableName' --查詢條件(根據(jù)需要自行修改)if exists(select table_name from #TableInfo where table_name = @TableName) --查詢指定名字的表beginprint '====================當(dāng)前服務(wù)器存在 ' + @TableName + ' 表,相關(guān)信息請(qǐng)到結(jié)果窗口查看===================='select table_catalog as '所屬數(shù)據(jù)庫(kù)',table_name as '表名' from #TableInfo where table_name = @TableName --輸出表的相關(guān)信息,從這些信息就可以知道這個(gè)表在哪個(gè)數(shù)據(jù)庫(kù)endelsebeginprint '--------------------當(dāng)前服務(wù)器不存在 ' + @TableName + ' 表--------------------'enddrop table #TableInfo --刪除臨時(shí)表
看完上述內(nèi)容,你們掌握sql server中怎么實(shí)現(xiàn)多個(gè)數(shù)據(jù)庫(kù)間快速查詢某個(gè)表信息的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。