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 the different types of modules in oracle forms?
What happens if the update subquery returns multiple rows?
6. Display the client name and order date for all orders using the traditional method.
How to convert csv to table in oracle?
How to write date and time literals in oracle?
Explain the use of analyse option in exp command.
Explain a private synonyms?
How do I manually create a database in oracle?
Are truncate and delete commands same? If so why?
How to assign a table row to a record variable?
What is dynamic proxy?
what are bitmap indexes? How does they work?
Explain an index segment?
What is a sub query and what are the different types of subqueries?
What is an oracle tablespace?