Can MS SQL support full-text indexing for a view that connects (joins or unions) multiple databases?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, absolutely. Each index will be queried individually and the results will be combined by the engine.
For example, if you’ve got:
And you have a view that includes both fields from both tables in both databases, it’ll work fine when you query that view. From SQL Server’s perspective, it doesn’t matter whether they’re in the same database or not.
If that doesn’t match your scenario, try posting more detail about your challenges. Thanks!