English 中文(简体)
T-SQL
原标题:Querying a remote MSIDXS via T-SQL

I think this question better fits here rather than ServerFault, but if I m wrong, please correct me.

I have a system which has a database that also queries Windows Indexing Services. The queries are done via T-SQL using the OpenQuery(Linked_Server_Name, ...) function. When the DB and the Indexing Services are on the same server, everything works perfectly.

现在,我需要扩大系统,这意味着我不得不把非行服务器与索引服务服务器分开。 问题在于,我找不到一种办法,可以远程查询索引服务。

Did anyone succeed with a similar setup? If no, what alternatives would you suggest?

问题回答

I had a similar problem in my company and I googled, that remote indexing is impossible. But we found a solution. Now we have one server with DB and another server with IIS and attachments which are indexed. The solution was to share attachments folder (or maybe whole disc) that DB server could see them. Unfortunatly, I changed position in the company and I don t have permissions anymore to connect to servers to check for configuration, so I can t write what and where exactly must be done.

It really does seem impossible to remote query MSIDXS. I ended up writing a web service that wraps the MSIDXS and is called remotely. Performance aren t as good, though.





相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

SQL server: Can NT accounts be mapped to SQL server accounts

In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...

SQL Server 2000, ADO 2.8, VB6

How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8

热门标签