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 |
|
crugerenator
Posting Yak Master
126 Posts |
Posted - 2009-04-28 : 17:00:58
|
| I was hoping someone could explain the differences between "Keyword" and "Full Text Sql". Thanks |
|
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2009-04-28 : 17:05:25
|
| http://msdn.microsoft.com/en-us/library/ms142547(SQL.90).aspx |
 |
|
|
crugerenator
Posting Yak Master
126 Posts |
Posted - 2009-04-28 : 17:20:04
|
| perfect, thanks - could only find this w/ sql server 2008. Info I was searching for if anyone else is looking at this post:In contrast to full-text search, the LIKE Transact-SQL predicate works on character patterns only. Also, you cannot use the LIKE predicate to query formatted binary data. Furthermore, a LIKE query against a large amount of unstructured text data is much slower than an equivalent full-text query against the same data. A LIKE query against millions of rows of text data can take minutes to return; whereas a full-text query can take only seconds or less against the same data, depending on the number of rows that are returned. |
 |
|
|
|
|
|