What is different bet native dynamic sql and Dbms_Sql?
Answer Posted / thirupathi.l
using native dynamic sql we can directly use DML and DDL
statements.
ex:native dynamic sql
declare
a varchar2(1000);
begin
a:='create table <tname>(elements)
execute immediate a;
end;
where as in dbms_sql package also we can use dml and DDL
but here declare cursor
coding is so lenthy
thats why currently using native dynamic sql
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What are operators in oracle?
How many types of synonyms in Oracle?
Why do we use coalesce function in oracle?
What is an oracle transaction?
How to rollback the current transaction in oracle?
What is an Oracle Instance?
What is the difference between pre-select and pre-query?
Explain the characteristics of oracle dba?
What is oracle server autotrace in oracle?
What are the various constraints used in oracle?
How to turn on or off recycle bin for the instance?
How to call a sub procedure?
How to define a record variable to store a table row?
What privilege is needed for a user to create tables in oracle?
how to code performance tuning of oracle PL/SQL? can any body send me the perfect answer?