If a Procedure/Package code is getting compiled in the database for the first time and we receive compilation time error, the procedure/package still gets stored in the database. The previous statement is TRUE/FALSE?
A
Correct answer
Explanation
When PL/SQL code (procedure or package) is compiled for the first time and encounters errors, the source code is still stored in the database with an INVALID status. The database persists the source code regardless of compilation status, allowing developers to view and fix errors later. This behavior is by design.