MS-SQL 2005 full-text index on a view with outer joins

我的梦境 提交于 2019-12-24 11:53:30

问题


I have a view that I'd like to apply a full text index on. It of course needs a unique clustered index to allow for the full text index.

Unforunately, I learned that you cannot create an indexed view that contains outer joins. Problem is that my view needs these outer joins!

Is there a way to make this happen, or am I going to be stuck writing a complex stored procedure?


回答1:


Is it possible to create a dummy record to join to for the purposes of this view?



来源:https://stackoverflow.com/questions/1094695/ms-sql-2005-full-text-index-on-a-view-with-outer-joins

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!