Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / Other Technologies / Full-Text Search / May 2007

Tip: Looking for answers? Try searching our database.

Error 7653 when executing CREATE FULLTEXT INDEX

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
DC - 14 May 2007 17:50 GMT
Hi,

I receive Message 7653 when I try this:

CREATE FULLTEXT INDEX
ON Products
(Name LANGUAGE 0x0)
KEY INDEX ID
WITH CHANGE_TRACKING AUTO;

The message states that ID is an invalid column because it must not
allow nulls, be unique and the like, but ID is really a simple int
primary clustered key and meets all those requirements. I cannot
recreate the table since it is in production, does someone know what
to to?

Regards
DC
DC - 15 May 2007 08:02 GMT
Of course the documentation clearly states that the name of the index
is required, not the name of the indexed column (and that is what "ID"
was).

So in my example, this worked:

CREATE FULLTEXT INDEX ON Products (Name LANGUAGE 0x0)
KEY INDEX PK_Products
WITH CHANGE_TRACKING AUTO;

> Hi,
>
[quoted text clipped - 14 lines]
> Regards
> DC
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.