How to execute an Oracle stored procedure via a database link

后端 未结 2 682
执念已碎
执念已碎 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:26

    check http://www.tech-archive.net/Archive/VB/microsoft.public.vb.database.ado/2005-08/msg00056.html

    one needs to use something like

    cmd.CommandText = "BEGIN foo@v; END;" 
    

    worked for me in vb.net, c#

提交回复
热议问题