Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data modification queries and isolation level

Status
Not open for further replies.

newbby

Programmer
Mar 16, 2004
36
US
Hi All,
A. What should the transaction isolation level be set to in select/insert/update/delete queries if I DONOT have a BEGIN TRAN, COMMIT/ROLLBACK set(BEGIN TRAN is not needed in select queries)?
B. What should the transaction isolation level be set to in select/insert/update/delete queries if I DO have a BEGIN TRAN, COMMIT/ROLLBACK set(BEGIN TRAN is not needed in select queries)?
Thanks
 
Hm... BEGIN/COMMIT TRAN is not necessary for single DML statement. And if you don't have a BEGIN TRAN but should have, no isolation level will help - anyone can modify data before batch is completed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top