September 28, 2005 at 6:49 am
i have a SP
if in my server has many client. When all of client use it, the first client call SP, we know that SP still doing their task to processing data. And then, at the same time, another client call SP for doing their task. My question is how to defend the second client and another in order waiting until SP that called by first client finished the task ????
thanxs for you.........
sorry my english is so bad.....
September 28, 2005 at 6:56 am
You could/can do may different things
Good Hunting!
AJ Ahrens
webmaster@kritter.net
September 28, 2005 at 7:15 am
i'm so sorry about your explanation......
i still confuse...
can you give me example......
please !!!
thanxs you very much for AJ Ahrens
September 29, 2005 at 11:28 am
Locking is SQL Server's way of making sure that the data maintains it's 'integrity' - only one person/process can update one thing at a time. Locking is not an issue if tranasctions/stored procedures are designed to perform things efficiently (quickly). It seems in this post 'integrity' and 'concurrency' are being mixed up. Locking is normal, excessive locking is not. Queueing things or using interim processing tables are design methods to achieve greater 'concurrency' and overall system throughput.
RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply