Hi All,
We have a very complicated Stored Procedure that has quite a few Dynamic Queries. We are having a tough time trying to successfully bring data into Alteryx calling this stored procedure.
If someone can help solve this issue, with below Stored Procedure as an example, it will be greatly appreciated.
CREATE PROCEDURE ProcedureWithDynamicQuery
AS
BEGIN
DECLARE @SelectStatement NVARCHAR(2000)
SET @SelectStatement = 'SELECT GETDATE() '
EXECUTE (@SelectStatement)
END
Thanks