What is Transaction?

Answers were Sorted based on User's Feedback



What is Transaction?..

Answer / sivasiva

A transaction in SQL (structured query language) is a
larger unit of database processing that contains one or
more database access operations like insertion ,deletion,
retrieval and modification operations.

These transaction are required to fulfil certain
characteristics and they are :

Atomicity: The transaction is either performed entirely or
not performed at all.
Isolation: The transaction should not be interfered by any
other transaction executing concurrently.
Durability: The changes made by the transaction should be
permanently committed in the database.
Consistency preservation: If the database was consistent
before the execution of the transaction .It should remain
consistent after the complete execution of that transaction.

There are two types of transactions: explicit and implicit

Explicit are those that need to be specified like : commit
and roll-back

Commit transaction signals that the transaction was
successfully executed and the changes/ updates (if any)
made by the transaction have been committed to the database
and these changes cannot be undone.

Roll-back signals that the transaction was not successfully
executed , and the changes/updates made by the transaction
have to be undone.

Implicit transactions are those that mark beginning and
end of the transaction, each statement like update,
delete , insert run within these implicit
transactions.,However, you can explicitly specify the
beginning and ending of the transaction by "begin
transaction" and "end transaction" statements respectively.
All the statements within these two boundaries will be
marked as one transaction.

Is This Answer Correct ?    4 Yes 1 No

What is Transaction?..

Answer / subba reddy

A transaction is a series of SQL data manipulation
statements that does a logical unit of work. Oracle
treats the series of SQL statements as a unit so that all
the changes brought about by the statements are
either committed (made permanent) or rolled back (undone)
at the same time. If your program fails in the
middle of a transaction, the database is automatically
restored to its former state

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What is a select query statement in ms sql server?

0 Answers  


Explain couple pf features of SQL server

2 Answers  


List out the different types of locks available in sql server?

0 Answers  


How much space does sql server 2016 take?

0 Answers  


What is the name of the Database which IBM mainframe uses?

0 Answers   Wipro,






Which one is faster delete/truncate? Why?

1 Answers   Infosys,


How do you drop an index?

0 Answers  


1. SELECT SUM(sal) as “Gross Salary” from EMPLOYEES; 2. SELECT MAX(sal) as “Highest Salary” from EMPLOYEES; ouput should be in table format

2 Answers  


explain the difference between oracle- sql and sql server sql ? if both are same y we r using 2 sw.s?

0 Answers   ADP, iSoft,


Which is faster statement or preparedstatement?

0 Answers  


1.what are diff types of joins , and explain diff between cross join and full outer join 2.diff types of views 3. Diff types of index 4. What is diff b/w stores procedure and function procedure 5.diff between double and int in SQL 6.diff between char and varchar in SQL. 7.Oracle or SQL whice you will preferred and why.

0 Answers   Aptroid,


logshipping is Any difference 2000 and 2005?

2 Answers  


Categories