I need to get some data from an external db and make some calculations with it in another db, is it possible to connect to an external db from a stored procedure? Thanks guys.
PS.
Im using Oracle and both databases are in the same server.
I need to get some data from an external db and make some calculations with it in another db, is it possible to connect to an external db from a stored procedure? Thanks guys. PS. Im using Oracle and both databases are in the same server. |
||||
|
You want to use a Database Link (DBLink). http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_5005.htm http://psoug.org/reference/db_link.html
@conn_user on the end of a procedure or table name will tell the pl/sql engine to query the db link specified for that info. |
|||||||
|