April 26, 2012 at 11:07 am
Hi guys,
I know its simple question and i can google it but i would like to know your though about,
Can two user access single table in SQL? (Same Database,Same Table)
Thanks.
April 26, 2012 at 11:21 am
It depends. What do you mean by access? The purpose of a database to facilitate multiple user access while maintaining the integrity of the data.
April 26, 2012 at 11:35 am
Thanks for Prompt reply!
I mean lets say i am using bunch of Select Statement on Employee Table & at the same time other user trying to insert or delete on same table (Employee) table.
April 26, 2012 at 11:41 am
I have to ask, what is the point of this question?
April 26, 2012 at 11:53 am
If i am understand right you are saying "what is the point of my Original Question?" Or you are asking my second reply?
April 26, 2012 at 11:56 am
more than likely, Lynn is asking what is the point of your ORIGINAL question.
there are many variables to the question "Can 2 people access a table?"
the simple answer is "yes, they can"
the complicated answer is "maybe they can"
are there indexes? what is in the "where" clause of the select statement. what is in the where clause of the delete statement?
if your table is a heap, then many users can access the table, but expect some delays for locks to be released.....
April 26, 2012 at 12:00 pm
Thanks for the Clarification Old Hand!
Thank you guys.
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply