InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of Dbms_sql Package? |
|
Answer» The DBMS_SQL package is used to ACCESS dynamic SQL and dynamic PL/SQL from WITHIN a PL/SQL program. It allows you to execute statements that are otherwise impossible from within PL/SQL programs, which includes DDL, DCL, or TRANSACTION CONTROL statements. The DBMS_SQL package is used to access dynamic SQL and dynamic PL/SQL from within a PL/SQL program. It allows you to execute statements that are otherwise impossible from within PL/SQL programs, which includes DDL, DCL, or Transaction Control statements. |
|