InterviewSolution
Saved Bookmarks
| 1. |
Suppose A Procedure Is Created Using The Create Procedure Command; However, It Gives A Syntax Error. Which Data Dictionary Views Will Have The Source Code Of The Procedure? |
|
Answer» The USER_SOURCE, ALL_SOURCE, and DBA_SOURCE data dictionary views will have the source code, as a procedure is STORED in the DATABASE EVEN if it has a syntax error. The USER_SOURCE, ALL_SOURCE, and DBA_SOURCE data dictionary views will have the source code, as a procedure is stored in the database even if it has a syntax error. |
|