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

When does a Transaction end ?

Answer Posted / kumar

Transaction ends with COMMIT or ROLLBACK keywords.

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are the uses of rollback segment?

1064


How to create a stored program unit?

1314


Explain what are the different type of segments?

1003


How to use like conditions in oracle?

1108


Explain an index?

1179


How to insert a new row into a table in oracle?

1213


How to convert characters to dates in oracle?

1148


how to do daily transactions with out sql* loader control file regesterd in apps?

1726


how to make an oracle object

2392


How can I create database in oracle?

1064


> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

2086


How to create a table in a specific tablespace?

1019


Differentiate between post-database commit and post-form commit?

1089


Explain enable novalidate constraint.

1129


Select all the employees who were hired in last 2 years and who works in dept where max managers are working.

3021