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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trying to find good book on concurrency

Status
Not open for further replies.

dghundt

Programmer
Apr 28, 2006
28
US
I have been using visual studio 2005 C# and have been working with databases lately. I need a good read on updating data in mssql (for example) that gives a good practical lesson with concurrency which will allow me to safely update data with multiple database users. Thanks!
 
SQL Server is designed from the ground up to handle multiple users updating data at the same time. Standard update statements are all you need to use.

Denny
MCSA (2003) / MCDBA (SQL 2000)
MCTS (SQL 2005 / Microsoft Windows SharePoint Services 3.0: Configuration / Microsoft Office SharePoint Server 2007: Configuration)
MCITP Database Administrator (SQL 2005) / Database Developer (SQL 2005)

My Blog
 
Thanks for the information.

I have read that I need to setup optmistic concurrency o/w it is the last write who wins; everyone else is overwritten. There are features with optimistic concurrency that give notifications that the data was changed between reading it offline, and then updating it.

thanks
 
I have read that I need to setup optmistic concurrency
Are you creating your own database engine? SQL Server as well as any other RDBMS has already taken care of all that. If you want to use SQL Server then start here.



- Paul
- If at first you don't succeed, find out if the loser gets anything.
 
Thanks for the tip.
No, I will be using an already created sql2005 database.
I will browse your link. Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top