hi,I have a syntax issue that I need to figure out how to solve:here is a test query i used to figure out how to make use of ISABOUT:select ftitle, rank from engspecentries inner joinfreetexttable(engspecentries,ftitle, 'ISABOUT (single weight (.9))') as Xon X.[key] = engspecentries.fidorder by Rank DESC
this worked fine and as expectednow I tried to implement the ISABOUT logic in a rather large SP i have. Here is the part of it that is causing me a problemselect e.ffileloc,e.fid from engspecentries einner join freetexttable(e,e.ftitle,@ftitle) as Xon X.[key] = e.fidwhere ...
in the above case the @ftitle is supposed to be a dynamically generated ISABOUT statement (it is coming from my VB app that is using this SP)however if I pass this exact string as in the above test ( 'ISABOUT (single weight (.9))' ) i get this errorLine 63: Incorrect syntax near '.'.this is pointing to the INNER JOIN lineEDIT:just to clarify: the error is happening when i tried to SAVE the SP, not when i try to run it. the above mentioned problem with passing the literal string will have to wait, because i realized that i did not properly write the logic of the SP when i was trying to run the SPcan somebody please tell me what am I screwing up here?thanx