Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
amodi
Yak Posting Veteran
83 Posts |
Posted - 2009-09-11 : 10:31:27
|
Hello friends, I created a catalog, unique index and full text index as followscreate fulltext catalog ISFullTextCatalogDetailscreate unique index ui_PagesMaster on Pages_Master(PageId)create fulltext index on Pages_Master(Page)Key Index ui_PagesMaster on ISFullTextCatalogDetailswith CHANGE_TRACKING MANUAL Note: In the followingcreate fulltext index on Pages_Master(Page)Key Index ui_PagesMaster on ISFullTextCatalogDetailswith CHANGE_TRACKING MANUAL Column "Page"(where i want to search data) in Pages_Master table is of type varchar(max)Every thing works fine, but when i search the data like:SELECT pageId,Page,fk_pagecode FROM Pages_Master Where contains (Page, ' "Procedures" ')It is displaying no data???Thanks. |
|
amodi
Yak Posting Veteran
83 Posts |
Posted - 2009-09-12 : 09:58:12
|
Hello friends, I just change the column type( where i am doing data search) from varchar(max) to varchar(100)and its working.Does sql server FTS not support varchar(max)? orDoes sql server FTS have some limit on varchar() character? orDo i need to change some setting of Sql Server 2005?Thanks. |
 |
|
|
|
|