Calling Oracle stored procedure with output parameter from SQL Server

后端 未结 2 502
半阙折子戏
半阙折子戏 2020-12-15 07:44

I have an Oracle linked server in SQL Server 2008 R2. I need to execute Oracle stored procedures (with output parameter in first, and input parameter in second procedure):

2条回答
  •  别那么骄傲
    2020-12-15 08:17

    Use REF CURSOR and declare that cursor as an output variable in oracle. Using Ref Cursor you can retrieve result set from Oracle Stored procedure

提交回复
热议问题