SELECT * FROM opendatasource('sqloledb','data source=192.168.1.197;user id=sa;password=sa')
.SafetyMonitor3.dbo.Dictionary

 

 

 

解决办法:  --启用Ad Hoc Distributed Queries:新建查询,输入
      exec sp_configure 'show advanced options',1
      reconfigure
      exec sp_configure 'Ad Hoc Distributed Queries',1
       reconfigure
--使用完成后,关闭Ad Hoc Distributed Queries:
      exec sp_configure 'Ad Hoc Distributed Queries',0
      reconfigure
      exec sp_configure 'show advanced options',0
      reconfigure

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-12
  • 2021-06-18
  • 2022-02-08
  • 2021-11-28
  • 2021-09-08
猜你喜欢
  • 2022-12-23
  • 2021-07-19
  • 2021-06-30
  • 2021-06-16
  • 2021-05-05
  • 2022-12-23
相关资源
相似解决方案