How to execute an Oracle stored procedure via a database link

后端 未结 2 683
执念已碎
执念已碎 2020-12-29 20:08

Can I call a stored procedure in Oracle via a database link?

The database link is functional so that syntax such as...

SELECT * FROM myTable@myRemote         


        
2条回答
  •  清酒与你
    2020-12-29 20:49

    The syntax is

    EXEC mySchema.myPackage.myProcedure@myRemoteDB( 'someParameter' );
    

提交回复
热议问题