anoop shukla
Answered On : May 2nd, 2005
transaction is collection of logical operation that perform a task
Login to rate this answer.
Suresh Pendyala
Answered On : May 7th, 2005
Transaction should ACID properties.
A for Automicity
C for Consistency
I for Isolation
D for Durability.
Login to rate this answer.
Vidhiya
Answered On : Jun 1st, 2005
Any operation that hits the database for storing, retrieving, updating or deleting records is said to be a transaction.
Login to rate this answer.
prashant
Answered On : Jul 14th, 2005
A transaction can be termed as any operation such as storing, retrieving, updating or deleting records in the table that hits the database.
Login to rate this answer.
srisubu
Answered On : Jul 22nd, 2005
A transaction is a series of operations that appear to execute as one large, atomic operation. Transactions guarantee an all or nothing value proposition: Either all of your operations will succeed, or none of them will. Transactions account for network or machine failure in a graceful, reliable way. Transactions allow multiple users to share the same data and guarantee that any set of data they update will be completely and wholly written, with no interleaving of updates from other clients.
Login to rate this answer.
amol aswar
Answered On : Sep 7th, 2005
i impress form ans.
Login to rate this answer.
sanjay
Answered On : Sep 8th, 2005
I am very much happy when i saw this site it got good interview point of questions.But
I want clear information and frequently asked questions on JDBC.I want JDBC drivers and their usages?
Login to rate this answer.
anoop shukla Wrote: transaction is collection of logical operation that perform a task
A transaction is a set of operations for which it is important that all succeed or all fail. A transaction should satisfy ACID properties.

1 User has rated as useful.
Login to rate this answer.
aravind
Answered On : Sep 15th, 2005
hai this is aravind.cTranscation : in every database application to carryout a task the application needs to execute several statements .if it failures in executing any of those statements leads to the problem.To avoid this problem the set of statements will execute together as part of TRANSCATION.
Login to rate this answer.
rupesh
Answered On : Sep 15th, 2005
Transaction mainly consist of ACID. A-Atomicity, C- Consistency, I - Integrity, D- Durability. If a process consist of acid successfully then we can say that the transaction is successful.
Login to rate this answer.
Mala
Answered On : Sep 16th, 2005
A group of messages are transfered from one to another for performing the particular task
Login to rate this answer.
Narendra
Answered On : Sep 16th, 2005
Transaction is set of uniform oprations execute at perticuler point of time as a group irrespective of sucess or failure.
Login to rate this answer.
madhav
Answered On : Oct 4th, 2005
rupesh Wrote: Transaction mainly consist of ACID. A-Atomicity, C- Consistency, I - Integrity, D- Durability. If a process consist of acid successfully then we can say that the transaction is successful.
Yes, it's nice answer
Login to rate this answer.
Hi there,
I understand what ACID means:
A-Atomicity, C- Consistency, I - Integrity, D- Durability
Can anybody elaborate on each(A,C,I,D) of one with an example?
Thanks
-ashruf
Login to rate this answer.
Guest
Answered On : Mar 29th, 2006
Hi there,
I understand what ACID means:
A-Atomicity, C- Consistency, I - Integrity, D- Durability
Can anybody elaborate on each(A,C,I,D) of one with an example?
Thanks
-ashruf
Login to rate this answer.
A.rajeswari
Answered On : Mar 5th, 2007
Transaction is a set of statements treated as a single logical operation.It satisfies the ACID property.
Login to rate this answer.