1.開通分散式查詢許可權
exec sp_configure 'show advanced options',1 reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure
2.查詢
select * from openrowset( 'SQLOLEDB ', 'IP地址(伺服器名)'; '使用者名稱'; '密碼',[資料庫名].[dbo].[表名]) a , openrowset( 'SQLOLEDB ', 'IP地址(伺服器名)'; '使用者名稱'; '密碼',[資料庫名].[dbo].[表名]) b where *** GROUP by *** order by count(1) desc
3.然後換查詢條件,然後修改IP、 庫名和表名。
4.關閉
exec sp_configure 'Ad Hoc Distributed Queries',0 reconfigure exec sp_configure 'show advanced options',0 reconfigure