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...

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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What are group functions in oracle?

1092


why dont we assign not null constraint as table level constraint.

2796


1) Does oracle have any table which contain all the exceptions and it's code internally?

1801


What is oracle join syntax?

1061


Explain integrity constraint?

1206


How to change user password in oracle?

1092


What are the attributes of the cursor?

1057


Can a formula column referred to columns in higher group ?

2550


If youre unsure in which script a sys or system-owned object is created, but you know its in a script from a specific directory, what UNIX command from that directory structure can you run to find your answer?

2188


What do database buffers contain?

1078


How to create a stored function in oracle?

1156


How to pass parameters to procedures in oracle?

1080


Will you be able to store pictures in the database?explain.

1034


 How to use an oracle sequence generator in a mapping?

1129


What is a lookup table in oracle?

1023