What command is used to encrypt a PL/SQL application?
-
DB_ENCRYPT
-
DBMS_ENCRYPT
-
DBMS_WRAP
-
WRAP
D
Correct answer
Explanation
The WRAP command encrypts PL/SQL source code by converting it into a format that's difficult to reverse-engineer but remains executable. This protects intellectual property while allowing deployment. DBMS_DDL.WRAP is the underlying package, but WRAP is the command-line interface. There is no DB_ENCRYPT or DBMS_ENCRYPT package for PL/SQL wrapping.