Cannot pass a NULL value as a parameter of type 'uniqueidentifier' in a stored procedure
Veli-Jussi Raitila
386
Reputation points
How do I pass a (potential) NULL value to a stored procedure using the InApp SQL Server 'Execute stored procedure' action in Azure Logic Apps Standard?
The parameter is of type uniqueidentifier
. Invoking the procedure directly using Transact-SQL works just fine. However, within a workflow I get an exception:
{
"code": "ServiceProviderActionFailed",
"message": "The service provider action failed with error code 'ServiceOperationFailed' and error message 'Object reference not set to an instance of an object.'."
}
I would not want to work around such a basic functionality.
Sign in to answer