Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I want to create a stored procedure from thingworx service, when I'm run test it throw an error
"Unable to Invoke Service ListServices on TestDatabase: Incorrect syntax near 'GO'. "
for example:
Solved! Go to Solution.
Hi @vxba could you try something like this :
Create procedure dbo.demoProc1 @Sno int AS SET NOCOUNT ON; Select * from table1 where sNO = @Sno;
Let me know if there's any issue.
Hi @vxba could you try something like this :
Create procedure dbo.demoProc1 @Sno int AS SET NOCOUNT ON; Select * from table1 where sNO = @Sno;
Let me know if there's any issue.
Thank you! It worked for me