I have a tSQL scalar-valued function
ALTER FUNCTION [dbo].[MyDB_GetJobId]
(
)
RETURNS [uniqueidentifier]
Its results need to go into a SSIS user variable vJobId
, declared as String
.
SqlStatementSource is EXEC ? = dbo.MyDB_GetJobId()
; result set is as follows: Result Name
: 0; Variable Name
: User::vJobId
.
It does not work, the error message is as follows
"EXEC ? = dbo.MyDB_GetJobId()" failed with the following error: "No value given for one or more required parameters.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
Connection is fine (a plain SQL request runs ok), no input parameters, ... Could you help? Thanks.