Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what are Dynamic SQL statements?

Answers were Sorted based on User's Feedback



what are Dynamic SQL statements?..

Answer / tharanath.n

A SQL statement is dynamic if it is constructed
at runtime and then executed.
we can use ddl commands by dynamic sql, without we can't
use.

Is This Answer Correct ?    16 Yes 1 No

what are Dynamic SQL statements?..

Answer / soujanya

A SQL statement is dynamic if it is constructed
at runtime and then executed.

Is This Answer Correct ?    9 Yes 2 No

what are Dynamic SQL statements?..

Answer / srikanth

EXECUTE IMMEDIATE

Is This Answer Correct ?    9 Yes 2 No

what are Dynamic SQL statements?..

Answer / naresh

Basically Dynamic SQL means, you'll construct a SQL
statement dynamically while runtime and run it.

Why this needed: Since the stored database objects
(Procedures and Functions and others) will be compiled while
creating and stored inside a database.so everything has been
checked already. so whenever you make a call to these
programs they will directly run withou compiling second time.
since it runs without compiling you cannot use DDL commands
inside a stored program.

So to avoid this you can directly mention Execute Immediate
keywords in front of a SQL query dynamically in your
block.so that it'll work this time.

Hope this helps.

Is This Answer Correct ?    3 Yes 0 No

what are Dynamic SQL statements?..

Answer / brahmam

-> the combination of Sql and Plsql is called dynamic Sql.
when ever sql statements executed runtime then we are using
Execute immediate clause in executable section of the plsql block.

Is This Answer Correct ?    2 Yes 0 No

what are Dynamic SQL statements?..

Answer / thanvi

Both compilation and execution happens at the time.It will be useful where we don't know (the value of col_name or table_name) till runtime.
-Compilation means checks for the syntax.

Is This Answer Correct ?    0 Yes 0 No

what are Dynamic SQL statements?..

Answer / tharanath.n

A SQL statement is dynamic if it is constructed
at runtime and then executed.
we can use ddl commands by dynamic sql, without we can't
use.

Is This Answer Correct ?    0 Yes 1 No

what are Dynamic SQL statements?..

Answer / vishal kumar

Sql statement should be written in quotes like

'select table1.col1, tabel2.col2 from table1,table2 where
table1.col3=table2.col4'
and we can execute through below command "execute immidiate"
EXECUTE IMMEDIATE 'select table1.col1, tabel2.col2 from
table1,table2 where table1.col3=table2.col4'

it execute at runtime, means its not allowed as static.

Is This Answer Correct ?    1 Yes 2 No

what are Dynamic SQL statements?..

Answer / manoj

It take value dynamicaly at run time

Need:- If we need DDL in programming as "CREATE, INSERT"

.. It always written in single
quote " 'sql_statement ' " both end
with termination " ; "

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More SQL PLSQL Interview Questions

What is your daily office routine?

0 Answers   Data Vision,


What does a pl/sql package consist of?

0 Answers  


What is function and procedure in pl sql?

0 Answers  


Is record in oracle pl sql?

0 Answers  


How do I filter in sql profiler?

0 Answers  


What is difference between db2 and sql?

0 Answers  


Types of locks in database ?

8 Answers   HCL, TCS, Tieto,


What is lookup table in sql?

0 Answers  


What is the difference between inner join and outer join?

0 Answers  


how to find the second highest salary from emp table?

211 Answers   CIS, Cognizant, Cosmosoft, DAS, EDS, GreenTech, HOV Services, IBM, Infosys, National Institute of Science and Technology, Patni, Persistent, Polaris, TCS, Wipro, Yardi, Zensar,


What is mutating table?

11 Answers   Saama Tech,


suppose we have values like 1 5 7 in a colum.Now we want numbers like(2 3 4 6) that exists between 1 5 7.How can we do this using sql query??

5 Answers   Keane India Ltd,


Categories