Well I do have a datetime field in the table. Here is the data structure of the table that is being used.CREATE TABLE [dbo].[RSS_Feeds_Data] ( [Data_ID] [int] IDENTITY (1, 1) NOT NULL , [Data_FeedID] [int] NULL , [Data_Title] [nvarchar] (400) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Data_Link] [nvarchar] (400) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Data_Desc] [varchar] (1000) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Data_DateCreated] [datetime] NULL , [Data_Desc_Checksum] AS (binary_checksum(substring([Data_Desc],1,8000))) , [Data_Title_Checksum] AS (binary_checksum(substring([Data_Title],1,4000))) ) ON [PRIMARY]GO
The only columns I have Full Text Indexing are the Data_Title, Data_Link and Data_Desc. Do I need to have the Data_DateCreated in the full text catalog also? If so do I have to recreate the entire catalog to have it add in the date?Quality NT Web Hosting & Design