具有外连接的视图上的 MS-SQL 2005 全文索引
我有一个视图,我想对其应用全文索引。 当然,它需要一个唯一的聚集索引来允许全文索引。
不幸的是,我了解到您无法创建包含外连接的索引视图。 问题是我的视图需要这些外部联接!
有没有办法实现这一点,或者我是否会被困在编写复杂的存储过程中?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否可以创建一个虚拟记录来加入此视图?
Is it possible to create a dummy record to join to for the purposes of this view?