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 |
aminnagpure
Starting Member
3 Posts |
Posted - 2010-05-28 : 10:30:18
|
i configured full text index on a varchar column, but its not getting populatediam using sp2 windows 2003 server, with sql server 2008 web editioniam getting the error pasting belowA fatal error occurred during a full-text population and caused the population to be cancelled. Population type is: FULL; database name is cvsearch (id: 13); catalog name is cvs (id: 7); table name candidatesRegistration (id: 1138103095). Fix the errors that are logged in the full-text crawl log. Then, resume the population. The basic Transact-SQL syntax for this is: ALTER FULLTEXT INDEX ON table_name RESUME POPULATION.Man Behind Firewall |
|
aminnagpure
Starting Member
3 Posts |
Posted - 2010-05-28 : 12:57:53
|
i found the solution for it, and iam posting it so it wud be useful for othersgo into sql server configuration managerjust run the sql full text filter data dameon and the mss sql server in the same logini.e local systemby default ful text runs on local service, change it local system it works Man Behind Firewall |
 |
|
sabra
Starting Member
25 Posts |
Posted - 2010-05-30 : 06:21:35
|
Need help!What's error in this code?CREATE TABLE BLOBTest(BLOBID int IDENTITY NOT NULL,BLOBData varbinary(max) NOT NULL)GOINSERT INTO BLOBTest(BLOBData) SELECT * FROM OPENROWSET(BULK N'D:\DSN0022.jpg', SINGLE_BLOB); |
 |
|
|
|
|