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