Describe how to reference remote tables in procedures with an example.
Using SQL statements, remote tables can be accessed in procedures. Database links are specifically used for this purpose. They connect one oracle database to another.
CREATE DATABASE LINK employee.in.india.acme_auto.com ... ;
To access a remote table, the table name can be specified using a SQL statement.
SELECT * FROM salary.employee@employee.in.india.acme_auto.com ;