How to execute MariaDB storedprocedure from Azure Data Factory?

Ankit Kumar 21 Reputation points
2022-12-20T06:53:55.543+00:00

I wanted to 'Call' MariaDB Procedure from Azure Data Factory.

How can this be achieved, are there any other service which can be integrated with ADF to call this MariaDB procedures.

I tried calling the procedure by writing query using lookup activity.

It fails while showing this error.
ErrorCode=InvalidParameter,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=The value of the property 'columns' is invalid: 'Value cannot be null. Parameter name: columns'.,Source=,''Type=System.ArgumentNullException,Message=Value cannot be null. Parameter name: columns,Source=Microsoft.DataTransfer.Common,'

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,623 questions
{count} votes

Accepted answer
  1. Bhargava-MSFT 31,261 Reputation points Microsoft Employee Moderator
    2022-12-21T15:11:37.847+00:00

    Hello @Ankit Kumar ,
    Thanks for the reply. Are you using any input parameters in your SP?
    Could you please share your SP definition?
    I am going through a similar error message on the below thread; as per the suggestion, it requires a specific syntax.
    I was able to call the sp using the below syntax(also, it worked for me using the standard syntax).

    https://stackoverflow.com/questions/65282135/execute-a-stored-procedure-in-oracle-from-azure-data-factory-v2

    call sp1();  
    

    Can you please try this from your end and see

    272972-image.png

    272829-image.png

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.