0 votes
in PL/SQL by

Can Ddl Commands Be Used Within A Procedure? If So, Then How?

1 Answer

0 votes
by

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.

Related questions

0 votes
asked Mar 8, 2021 in PL/SQL by sharadyadav1986
0 votes
asked Mar 13, 2021 in PL/SQL by rajeshsharma
...