InterviewSolution
Saved Bookmarks
| 1. |
What Is Syntax For Dropping A Procedure And A Function? Are These Operations Possible? |
|
Answer» Answer : DROP Procedure/Function; yes, if they are STANDALONE procedures or FUNCTIONS. If they are a part of a PACKAGE then one have to remove it from the package definition and body and recompile the package. yes, if they are standalone procedures or functions. If they are a part of a package then one have to remove it from the package definition and body and recompile the package. |
|