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 |
|
arkiboys
Master Smack Fu Yak Hacker
1433 Posts |
Posted - 2009-04-21 : 03:14:53
|
| Hi,There is a view called MyView.One of the tables in this view has a field called Description. I changed it's datatype size from nvarchar(1000) to nvarchar(4000)While saving the table after changing the field size, there was a message similar to "indexes on myView will be removed."And now I can not use the view MyView which uses contains.This is the error I get:"Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'dbo.MyView' because it is not full-text indexed."So, then I tried creating an index on the view. The message is:"can not create index on view 'MyView' because the view is not schema bound."Then solved this one by re-creating the view using with schemabinding.Now I am rebuilding the catalog but the status shows as "paused due to microsoft fulltext service"Do you know why it says that?Thanks |
|
|
|
|
|