我正在创建一个像这样的全文搜索索引:
CREATE FULLTEXT INDEX ON [dbo].[vwBusinessSearch] ([Address] LANGUAGE 1033,[City] LANGUAGE 1033,[State] LANGUAGE 1033,[Registration No] LANGUAGE 1033,[Phone] LANGUAGE 1033,[Contact Phone] LANGUAGE 1033,[Contact Fax] LANGUAGE 1033,[Fax] LANGUAGE 1033,[Business Name] LANGUAGE 1033) KEY INDEX [IX_Registry_ID_Business] ON [ft_cat_CreditRegistry_Nigeria] WITH CHANGE_TRACKING OFF
GO
ALTER FULLTEXT INDEX ON [dbo].[vwBusinessSearch] ENABLE
GO
但是收到以下错误:
SQL03006: Full-text Index contains an unresolved reference to an object. Either the object does not exist or the reference is ambiguous because it could refer to any of the following objects:
如果我尝试创建这样的索引:
CREATE UNIQUE CLUSTERED INDEX [IX_Registry_ID_Business] ON [dbo].[vwBusinessSearch] ([Registry ID]) ON [PRIMARY]
GO
我得到以下信息:
SQL04127: The table or view ([dbo].[vwBusinessSearch]) has more than one clustered index.
请建议解决此问题。
由于