Viewing 15 posts - 136 through 150 (of 369 total)
Take a look at message 474053 which describes our method.
http://www.sqlservercentral.com/Forums/FindPost474053.aspx
I describe how we store each object as a separate file in the source code control system (currently Perforce, but Visual...
April 22, 2009 at 7:58 am
SA (4/14/2009)
So it really depends on your database...
April 15, 2009 at 12:39 pm
A few things to solve your problem. All are in the BOL.
1. to search for plurals, word variants, etc. see FORMSOF and INFLECTION.
http://technet.microsoft.com/en-us/library/ms142566(SQL.90).aspx
Example:
WHERE CONTAINS(curriculum_vite, 'FORMSOF (INFLECTIONAL, skate)')
This matches curriculum_vite...
April 15, 2009 at 11:43 am
In SQL Server 2005, "Noise Words", also known as "Stop Words", are global to each instance. So to have a different noise word list for a database, you'll have...
April 13, 2009 at 7:33 am
Jonathan Mallia (4/8/2009)
search for OPENXML... it will probably be your final solution...
Don't use OPENXML! Use XQuery.
April 10, 2009 at 8:41 am
You can pass the data to the stored procedure as an XML document. You should use the XML data type for the parameter.
Then the stored procedure can perform a...
April 8, 2009 at 11:26 am
Related to "parameter sniffing", query optimization, OPTION (RECOMPILE) and this type of "catch-all" query parameterization, check out Erland Sommarskog's "connect" entry at: https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=244298
Another good reason to upgrade to SQL Server...
April 7, 2009 at 7:35 am
Your example is exactly what the Thesaurus is for. There is no quick way to populate it. You'll have to add the terms to the Thesaurus as per...
April 1, 2009 at 6:48 am
Vijaya Kadiyala (3/31/2009)
HiCheck out the below link
http://deepakrangarajan.blogspot.com/2009/02/full-text-index-sql-2005.html
Thanks -- Vijaya Kadiyala
While it is nice to post links it would be nice if you would:
1. Put the proper URL tags around your...
March 31, 2009 at 11:40 am
See related thread: http://www.sqlservercentral.com/Forums/Topic685529-145-1.aspx
March 31, 2009 at 9:24 am
kavi (3/29/2009)
March 31, 2009 at 9:20 am
I don't think that you want every synonym for every word in every language to be added to the thesaurus file(s).
The thesaurus file is used for alternate names and/or spellings...
March 31, 2009 at 9:15 am
RBarryYoung (3/31/2009)
Nice example, JohnG. Mind if I quote it in my Blog sometime?
Sure, no problem. Glad that I could be of assistance.
Side bar (or why I had to...
March 31, 2009 at 8:06 am
Viewing 15 posts - 136 through 150 (of 369 total)