InterviewSolution
Saved Bookmarks
| 1. |
Can Ddl Commands Be Used Within A Procedure? If So, Then How? |
|
Answer» DDL COMMANDS, such as create, alter, revoke, and GRANT, cannot be used directly within the procedural language block. They can only be called USING built-in Native DYNAMIC SQL or Dynamic SQL Package, which allows the execution of the DDL statements at runtime. DDL commands, such as create, alter, revoke, and grant, cannot be used directly within the procedural language block. They can only be called using built-in Native Dynamic SQL or Dynamic SQL Package, which allows the execution of the DDL statements at runtime. |
|