简体   繁体   中英

Invoking Oracle stored procedure in Azure Data Factory

I have a requirement to invoke an Oracle stored procedure in Azure Data Factory pipeline and I tried calling my stored procedure in Oracle function and invoked that function in my pipeline but it is not working.

Is there any way to invoke an Oracle stored procedure in an Azure Data Factory pipeline?

try this

With stored_procedure as (select function(pass-parameter) as alias from dual) select * from stored_procedure schema_name.table_name;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM