Viewing 3 posts - 1 through 3 (of 3 total)
This works on Adventure Works when I want to find all occurences of the keyword 'product' in my JobCandidate table :
[font="Courier New"]SELECT * FROM sys.dm_fts_index_keywords_by_document(db_id('AdventureWorks2008'),
object_id('HumanResources.JobCandidate'))
where display_term = 'product';[/font]
One of...
September 29, 2010 at 8:48 am
I have a question about the dynamic SQL block of code you have included in your article.
So the way you have constructed your dynamic SQL, you took @FirstName and @LastName...
January 6, 2009 at 8:27 am
No I did not change anything. Here is exactly how I ran it :
Step 1: Highlight code block 1 (the main query) and hit the EXECUTE button 3 times.
Step...
January 2, 2009 at 9:04 am
Viewing 3 posts - 1 through 3 (of 3 total)