Viewing 15 posts - 1 through 15 (of 103 total)
Excellent! It was the extra skip row and some changes to the escape characters. Below is the actual format file that was successful!
10.0
6
1 SQLCHAR...
John T. Kane
June 20, 2011 at 4:26 pm
hi..
Are you both using SQL 2000 or SQL 2005? Can you provide more details?
Post the output of "SELECT @@version" or indicate what version of SQL Server you're using? If SQL...
John T. Kane
March 30, 2009 at 5:14 pm
There has been extensive debate (flame war levels) on this issue for many years, and as always the answer you seek "depends" upon what you are doing, and the size...
John T. Kane
July 26, 2007 at 9:47 am
You can also go to my blog:
SQL Full Text Search Blog
http://jtkane.spaces.live.com/
for more info and links on SQL FTS, both SQL Server 2000 and SQL Server 2005. I will...
John T. Kane
February 28, 2007 at 9:02 am
Keith,
Can I assume that the above sproc is used in a SQL Server 2005 FTS enabled database? How many rows in your Knowledgebase database? If so, then the following KB...
John T. Kane
January 26, 2007 at 8:28 am
hi Rob,
Yes, many have succesfully used the 32-bit Adobe PDF IFilter using SQL 7.0, SQL 2000 and SQL 2005 on 32-bit WinXP and Win2003. Below is some SQL code that...
John T. Kane
December 20, 2006 at 9:40 am
You're welcome, Bimal,
However, it seems you posted the SQL Server 2005 output twice. I need the SQL Server 2000 information to compare & contrast with the SQL 2005 FTS...
John T. Kane
November 28, 2006 at 8:02 pm
Bimal,
First of all, it is very uncommon for both T-SQL LIKE and SQL Full-text Search (FTS) to always return the same number of results as both search methods are different....
John T. Kane
November 28, 2006 at 10:07 am
The informational messages about "No full-text supported languages found." is a bit misleading, but this message is informative "Default full-text index language is not a language supported by...
John T. Kane
November 9, 2006 at 9:14 am
Certainly, unusual as with SQL Server 2005 developer edition SQL FTS is installed by default. I don't have an X64 box to test this on, but can you create and...
John T. Kane
November 6, 2006 at 9:25 am
#1: You should use CONTAINS or CONTAINSTABLE and put the search word or search phrase in double quotes, for example:
select pub_id from pub_info where contains(pr_info,'"moon"')
will return only rows that contain "moon"...
John T. Kane
September 28, 2006 at 12:28 am
Andrew,
Can you post the output of "SELECT @@version" or indicate what version of SQL Server you're using? If SQL 2000, then look in the server's Application Event log for "Microsoft...
John T. Kane
September 12, 2006 at 10:19 pm
No problem, SQL FTS is somewhat of a "black box" for diagnosing these types of issues. Yes, I was somewhat suprised by the initial "300" problem in finding that text,...
John T. Kane
August 31, 2006 at 9:25 am
Hi Pat,
First of all, you can use a vairable (your @DESCRIP_PARAMETER) with both CONTAINSTABLE and FREETEXTTABLE. However, with FREETEXT or FREETEXTTABLE the words in the variable are treated as a...
John T. Kane
August 30, 2006 at 8:49 am
Chris,
Your first query [select * from employees where freetext(employees.*,' "John Smith" ')] is a "phrase" search for the specific string "John Smith". Does this...
John T. Kane
February 10, 2006 at 8:36 am
Viewing 15 posts - 1 through 15 (of 103 total)