Oracle Database 11g: Program with PL/SQL — Question 44

Identify situations in which the DBMS_SQL package is the only applicable method of processing dynamic SQL. (Choose all that apply.)

Answer options

Correct answer: B, C

Explanation

The correct answers are B and C because the DBMS_SQL package is specifically designed to handle scenarios where the structure of SQL statements is not fully known at compile time. Options A, D, and E do not require dynamic SQL processing through DBMS_SQL, as they can be handled using standard SQL or other methods.