Accessing the SQL server2005 tables from more than one client

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • supervikki02
    New Member
    • Jul 2012
    • 1

    Accessing the SQL server2005 tables from more than one client

    hello ,
    i have a problem with accessing the datas on a table of SQLserver2005 from my vb.net applications( more than one client) which has request to access the datas simultaneously. , can we access simultaneously ???
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    Yes you can. As long as there aren't conflicting locks. If it's only for reading data, then use read only connections/views so they don't lock up the data.

    Comment

    Working...