InterviewSolution
Saved Bookmarks
| 1. |
How Can You Reference Remote Tables In Procedures? |
|
Answer» REMOTE TABLES can be referenced within PROCEDURES through SQL STATEMENTS. A remote table can be queried through a database link in the procedure. The following CODE inserts a record in the STUDENT_MARKS table, which is in another schema, using the CONNECT_STUDENT database link: Remote tables can be referenced within procedures through SQL statements. A remote table can be queried through a database link in the procedure. The following code inserts a record in the STUDENT_MARKS table, which is in another schema, using the CONNECT_STUDENT database link: |
|