摘要:
--如果經常訪問或資料量大,建議用鏈結伺服器 --創建鏈結伺服器exec sp_addlinkedserver 'srv_lnk','','SQLOLEDB','遠端伺服器名或ip地址'exec sp_addlinkedsrvlogin 'srv_lnk','false',null,'用戶名','密碼'go --查詢示例select * from srv_lnk.資料庫名.dbo.表名 --導入... 阅读全文
摘要:
--1:獲取當前資料庫中的所有用戶表 select Name from sysobjects where xtype='u' and status>=0 --2:獲取某一個表的所有欄位 select name from syscolumns where id=object_id('表名') --3:查看與某一個表相關的視圖、存儲過程、函數 select a.* from sysobjects a,... 阅读全文