if i am using dml statement in function.
then i am writing select statement what was the output

Answers were Sorted based on User's Feedback



if i am using dml statement in function. then i am writing select statement what was the output..

Answer / jayashree

DML cant be performed in Function. There would be no change.

Is This Answer Correct ?    3 Yes 3 No

if i am using dml statement in function. then i am writing select statement what was the output..

Answer / sandeeptiwari1111@gmail.com

We can perform DML operation in function but we can not Query that function in select statement.
But if you want to query it any how from select stmnt then you have to use Pragma_autonomous transaction .

create or replace function f2 return date as
Pragma Autonomous_Transaction;

begin

insert into Tab values(sysdate);
commit;
return sysdate-1;


end ;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

What are operators in oracle?

0 Answers  


How to write date and time interval literals in oracle?

0 Answers  


25. Display the client number and the value of the highest value order placed by that client.

2 Answers   Wipro,


Can a formula column referred to columns in higher group ?

0 Answers   Oracle,


What is oracle open database communication (odbc)?

0 Answers  






What is a read only transaction in oracle?

0 Answers  


Explain the truncate in oracle?

0 Answers  


cursor attributes are %isopen ,%notfound,%found,%rowcount but is any attributes there other than these? please tell me asap ..

2 Answers  


what is reindexing?

0 Answers   Tata Technologies,


What will be the syntax to find current date and time in format "yyyy-mm-dd"?

0 Answers  


Why do you use stored procedures and state some of its disadvantages?

0 Answers  


what is exact difference between drop and truncate table.

3 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)