Viewing 7 posts - 1 through 7 (of 7 total)
I worked the above with Cast to varchar when updating the TitleNormal.
April 4, 2022 at 6:10 am
August 16, 2017 at 10:58 pm
Convert your dataset to xml and pass xml string to stored procedure.
In procedure you can extract the xml string into a temp table and do the rest.
July 21, 2017 at 4:58 pm
HI Thanks for replying.So can i just disable the Microsoft Volume Shadow copy service from Services? or do i need to go through programs and uninstall the Feature to get...
November 26, 2014 at 4:21 pm
Create a Temp table with exact structure of the xml
Open the xml document using sp_xml_preparedocument and then insert the data from xml into the temp table created above.
Once inserted...
November 25, 2014 at 10:42 pm
Try this.
SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%foobar%'
AND ROUTINE_TYPE='PROCEDURE'
Replace foobar with the string you are...
October 19, 2011 at 11:42 pm
Hi,thanks for replying.I found the problem.But still i didn't find the solution.The problem is not the autual table where i do the fulltext search.In the stored prcodeure,which i am using...
April 21, 2010 at 11:47 pm
Viewing 7 posts - 1 through 7 (of 7 total)