Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! 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