Solved
How to Create a Stored Procedure from thingworx service
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:
USE [SERVICE1]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[ListServices]
@product_id nvarchar(32)
AS
BEGIN
.........
END

