Answer Posted / nilesh
Dynamic SQL enables you to write programs that reference
SQL statements whose full text is not known until runtime.
Before discussing dynamic SQL in detail, a clear definition
of static SQL may provide a good starting point for
understanding dynamic SQL. Static SQL statements do not
change from execution to execution. The full text of static
SQL statements are known at compilation, which provides the
following benefits:
Successful compilation verifies that the SQL statements
reference valid database objects.
Successful compilation verifies that the necessary
privileges are in place to access the database objects.
Performance of static SQL is generally better than dynamic
SQL.
Because of these advantages, you should use dynamic SQL
only if you cannot use static SQL to accomplish your goals,
or if using static SQL is cumbersome compared to dynamic
SQL. However, static SQL has limitations that can be
overcome with dynamic SQL. You may not always know the full
text of the SQL statements that must be executed in a
PL/SQL procedure. Your program may accept user input that
defines the SQL statements to execute, or your program may
need to complete some processing work to determine the
correct course of action. In such cases, you should use
dynamic SQL.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the boxing and unboxing in c#?
What are the uses of namespaces?
Why to use lock statement in c#?
How many dimensions can an array have?
Give 2 scenarios where static constructors can be used?
What are the 3 elements of delegation?
Why do we need constructors?
Is string nullable in c#?
Which one is trusted and which one is untrusted?
what is be the overhead, if i use binary transmission. and will it be sent using xml text or how ?
What is delegate in c#?
Should I make my destructor virtual?
Why do we use overloading in c#?
How does the lifecycle of Windows services differ from Standard EXE?
Can property be private in c#?