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
Explain the difference between and xml documentation tag?
What is the benefit of interface in c#?
What is a virtual property. Give an example?
What are controls in c#?
What are Memory foot print of an exe?
How objects are stored in memory?
Is learning c# hard?
What does the keyword “virtual†declare for a method or property?
What is the difference between func and action delegate?
What is sql transaction in c#?
What are the 3 types of comments in c#?
How do you remove white spaces from a string?
How many types of delegates are there in c#?
What is callback delegate in c#?
What is the difference between arraylist and list in c#?