473,508 Members | 2,249 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Technique for concurrent access?

I've been asked to turn our single-user database system into a multi-user
system. At present, each user has a copy of the MSDE on their desktop
machine and uses our program to access it. In future, we would like to
centralise our MSDE instance and allow multiple users to access it. In
order to facilitate this, we are going to only allow one user write access
to the system at a time (I know, its a kludge, but the system was never
designed for multiple users in the first place).

I have a single, simple question this being the case: can I update a single
"read-only" bit field in a table of the database in order to flag to other
users that the system is in read-only mode in a way that avoids concurrency
issues? ie. does an "UPDATE" query lock and unlock? ( I suspect the answer
is yes! ). If anyone else has experience of these things, I would also
appreciate some tips on how best to proceed.

Thanks
Robin
Jul 20 '05 #1
7 2519
Hi

You don't say how your application will not cope with multiple users. SQL
server is a muti-user environment therefore you may be better writing
transaction handling into your application than a single-user "cludge".

If you use the table based method you will almost invariably have to also
write a reset option.
Alternatively you may want to do this within the application for example
using as using a mutex in .NET or the application object in ASP.

John

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:co*******************@news.demon.co.uk...
I've been asked to turn our single-user database system into a multi-user
system. At present, each user has a copy of the MSDE on their desktop
machine and uses our program to access it. In future, we would like to
centralise our MSDE instance and allow multiple users to access it. In
order to facilitate this, we are going to only allow one user write access
to the system at a time (I know, its a kludge, but the system was never
designed for multiple users in the first place).

I have a single, simple question this being the case: can I update a
single "read-only" bit field in a table of the database in order to flag
to other users that the system is in read-only mode in a way that avoids
concurrency issues? ie. does an "UPDATE" query lock and unlock? ( I
suspect the answer is yes! ). If anyone else has experience of these
things, I would also appreciate some tips on how best to proceed.

Thanks
Robin

Jul 20 '05 #2
Robin Tucker (id*************************@reallyidont.com) writes:
I've been asked to turn our single-user database system into a multi-user
system. At present, each user has a copy of the MSDE on their desktop
machine and uses our program to access it. In future, we would like to
centralise our MSDE instance and allow multiple users to access it. In
order to facilitate this, we are going to only allow one user write access
to the system at a time (I know, its a kludge, but the system was never
designed for multiple users in the first place).

I have a single, simple question this being the case: can I update a
single "read-only" bit field in a table of the database in order to flag
to other users that the system is in read-only mode in a way that avoids
concurrency issues? ie. does an "UPDATE" query lock and unlock? ( I
suspect the answer is yes! ). If anyone else has experience of these
things, I would also appreciate some tips on how best to proceed.


No, there is no built-in support for this, of the simple reason that this
is a funny thing to do. You can set a database in single-user mode, but
it means single-user. And that is when you do things like restoring the
database and the like.

You would have to roll your own to do this. Have a separate table where
you keep track of who is updating now. You could then have two different
application roles, and a user would be admitted into a reader role or
a writer role.
--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp
Jul 20 '05 #3
Although I am using transaction processing at present and I understand that
anything in the brackets of the transaction is "unitary" in nature and
either will or will not be applied in its entirety, there still remains the
issue of updating the other clients when a change has taken place in the
database. I assume there is no "call back mechanism" I can use to keep the
clients all synchronised? ie. I won't know when another client has accessed
the database unless I perform some kind of poll and update myself if they
have.

"John Bell" <jb************@hotmail.com> wrote in message
news:41***********************@news.easynet.co.uk. ..
Hi

You don't say how your application will not cope with multiple users. SQL
server is a muti-user environment therefore you may be better writing
transaction handling into your application than a single-user "cludge".

If you use the table based method you will almost invariably have to also
write a reset option.
Alternatively you may want to do this within the application for example
using as using a mutex in .NET or the application object in ASP.

John

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:co*******************@news.demon.co.uk...
I've been asked to turn our single-user database system into a multi-user
system. At present, each user has a copy of the MSDE on their desktop
machine and uses our program to access it. In future, we would like to
centralise our MSDE instance and allow multiple users to access it. In
order to facilitate this, we are going to only allow one user write
access to the system at a time (I know, its a kludge, but the system was
never designed for multiple users in the first place).

I have a single, simple question this being the case: can I update a
single "read-only" bit field in a table of the database in order to flag
to other users that the system is in read-only mode in a way that avoids
concurrency issues? ie. does an "UPDATE" query lock and unlock? ( I
suspect the answer is yes! ). If anyone else has experience of these
things, I would also appreciate some tips on how best to proceed.

Thanks
Robin


Jul 20 '05 #4
Hi

There is not automatic call back mechanism for this, so you would run
the risk of overwriting someone else's changes. It sounds like you are
wanting a real-time system which is not really what a database is
designed for and it is tricky to do that in any client.

You could force a refresh periodically, although this may be annoying
to a user if they take a long time. Factors will be how volatile the
data is, how many users you have and if the changes made are likely to
be significant.

Check out Notification Services it may be useful.

John
"Robin Tucker" <id*************************@reallyidont.com> wrote in message news:<co*******************@news.demon.co.uk>...
Although I am using transaction processing at present and I understand that
anything in the brackets of the transaction is "unitary" in nature and
either will or will not be applied in its entirety, there still remains the
issue of updating the other clients when a change has taken place in the
database. I assume there is no "call back mechanism" I can use to keep the
clients all synchronised? ie. I won't know when another client has accessed
the database unless I perform some kind of poll and update myself if they
have.

"John Bell" <jb************@hotmail.com> wrote in message
news:41***********************@news.easynet.co.uk. ..
Hi

You don't say how your application will not cope with multiple users. SQL
server is a muti-user environment therefore you may be better writing
transaction handling into your application than a single-user "cludge".

If you use the table based method you will almost invariably have to also
write a reset option.
Alternatively you may want to do this within the application for example
using as using a mutex in .NET or the application object in ASP.

John

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:co*******************@news.demon.co.uk...
I've been asked to turn our single-user database system into a multi-user
system. At present, each user has a copy of the MSDE on their desktop
machine and uses our program to access it. In future, we would like to
centralise our MSDE instance and allow multiple users to access it. In
order to facilitate this, we are going to only allow one user write
access to the system at a time (I know, its a kludge, but the system was
never designed for multiple users in the first place).

I have a single, simple question this being the case: can I update a
single "read-only" bit field in a table of the database in order to flag
to other users that the system is in read-only mode in a way that avoids
concurrency issues? ie. does an "UPDATE" query lock and unlock? ( I
suspect the answer is yes! ). If anyone else has experience of these
things, I would also appreciate some tips on how best to proceed.

Thanks
Robin


Jul 20 '05 #5

Ok, thanks for your help. Useful information for my manager at least :)

This isn't a real-time system. Actually, its a central repository for
images and associated data. I've implemented a tree structure, similar to a
file system inside the database. All access goes through a single module,
calling stored procedures, so I can put "locks" in no problem. I think my
solution will be to allow potential overwrites, coupled with warnings that
the database needs a refresh if, for example, nodes are deleted when another
user attempts to access.

Thanks again.
"John Bell" <jb************@hotmail.com> wrote in message
news:3b*************************@posting.google.co m...
Hi

There is not automatic call back mechanism for this, so you would run
the risk of overwriting someone else's changes. It sounds like you are
wanting a real-time system which is not really what a database is
designed for and it is tricky to do that in any client.

You could force a refresh periodically, although this may be annoying
to a user if they take a long time. Factors will be how volatile the
data is, how many users you have and if the changes made are likely to
be significant.

Check out Notification Services it may be useful.

John
"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:<co*******************@news.demon.co.uk>...
Although I am using transaction processing at present and I understand
that
anything in the brackets of the transaction is "unitary" in nature and
either will or will not be applied in its entirety, there still remains
the
issue of updating the other clients when a change has taken place in the
database. I assume there is no "call back mechanism" I can use to keep
the
clients all synchronised? ie. I won't know when another client has
accessed
the database unless I perform some kind of poll and update myself if they
have.

"John Bell" <jb************@hotmail.com> wrote in message
news:41***********************@news.easynet.co.uk. ..
> Hi
>
> You don't say how your application will not cope with multiple users.
> SQL
> server is a muti-user environment therefore you may be better writing
> transaction handling into your application than a single-user "cludge".
>
> If you use the table based method you will almost invariably have to
> also
> write a reset option.
> Alternatively you may want to do this within the application for
> example
> using as using a mutex in .NET or the application object in ASP.
>
> John
>
> "Robin Tucker" <id*************************@reallyidont.com> wrote in
> message news:co*******************@news.demon.co.uk...
>> I've been asked to turn our single-user database system into a
>> multi-user
>> system. At present, each user has a copy of the MSDE on their desktop
>> machine and uses our program to access it. In future, we would like
>> to
>> centralise our MSDE instance and allow multiple users to access it.
>> In
>> order to facilitate this, we are going to only allow one user write
>> access to the system at a time (I know, its a kludge, but the system
>> was
>> never designed for multiple users in the first place).
>>
>> I have a single, simple question this being the case: can I update a
>> single "read-only" bit field in a table of the database in order to
>> flag
>> to other users that the system is in read-only mode in a way that
>> avoids
>> concurrency issues? ie. does an "UPDATE" query lock and unlock? ( I
>> suspect the answer is yes! ). If anyone else has experience of these
>> things, I would also appreciate some tips on how best to proceed.
>>
>> Thanks
>>
>>
>> Robin
>>
>
>

Jul 20 '05 #6
Dag
Hi,

the complexity of providing an optimistic concurrency implementation
(ie. no locks, let serveral users get the same data for editing, but
detect and handle any conflicts that arise) depends on what
constitutes conflicting changes.

On the row level it is easy (ie. if conflicting change means two users
modify the same row in the database); just keep a copy of the original
row that was read. Then write an update proc that accepts both the new
values and the original values, uses all the original values in the
where clause so the update only matches a row if it has not been
changed, and return @@ROWCOUNT, thus signifying to the caller a
concurrency violation in the event the row was changed by another user
after it was read.

How to resolve the conflict is another matter. Options can be anything
from an error message explaining the concurrency violation and
requireing the user to start over with the new data to presenting the
user with the updated version of the data and let the user manually
resolve the conflict. Which is needed depends both on how frequently
violations are likely to occur and how much work the user would lose
had he to start over.

Hope this helps,

Dag
Jul 20 '05 #7
Hi Robin

You can use a timestamp to check to see if the row has changed since
selecting it rather than checking each of the columns individually.

John

"Robin Tucker" <id*************************@reallyidont.com> wrote in message news:<co*******************@news.demon.co.uk>...
Ok, thanks for your help. Useful information for my manager at least :)

This isn't a real-time system. Actually, its a central repository for
images and associated data. I've implemented a tree structure, similar to a
file system inside the database. All access goes through a single module,
calling stored procedures, so I can put "locks" in no problem. I think my
solution will be to allow potential overwrites, coupled with warnings that
the database needs a refresh if, for example, nodes are deleted when another
user attempts to access.

Thanks again.
"John Bell" <jb************@hotmail.com> wrote in message
news:3b*************************@posting.google.co m...
Hi

There is not automatic call back mechanism for this, so you would run
the risk of overwriting someone else's changes. It sounds like you are
wanting a real-time system which is not really what a database is
designed for and it is tricky to do that in any client.

You could force a refresh periodically, although this may be annoying
to a user if they take a long time. Factors will be how volatile the
data is, how many users you have and if the changes made are likely to
be significant.

Check out Notification Services it may be useful.

John
"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:<co*******************@news.demon.co.uk>...
Although I am using transaction processing at present and I understand
that
anything in the brackets of the transaction is "unitary" in nature and
either will or will not be applied in its entirety, there still remains
the
issue of updating the other clients when a change has taken place in the
database. I assume there is no "call back mechanism" I can use to keep
the
clients all synchronised? ie. I won't know when another client has
accessed
the database unless I perform some kind of poll and update myself if they
have.

"John Bell" <jb************@hotmail.com> wrote in message
news:41***********************@news.easynet.co.uk. ..
> Hi
>
> You don't say how your application will not cope with multiple users.
> SQL
> server is a muti-user environment therefore you may be better writing
> transaction handling into your application than a single-user "cludge".
>
> If you use the table based method you will almost invariably have to
> also
> write a reset option.
> Alternatively you may want to do this within the application for
> example
> using as using a mutex in .NET or the application object in ASP.
>
> John
>
> "Robin Tucker" <id*************************@reallyidont.com> wrote in
> message news:co*******************@news.demon.co.uk...
>> I've been asked to turn our single-user database system into a
>> multi-user
>> system. At present, each user has a copy of the MSDE on their desktop
>> machine and uses our program to access it. In future, we would like
>> to
>> centralise our MSDE instance and allow multiple users to access it.
>> In
>> order to facilitate this, we are going to only allow one user write
>> access to the system at a time (I know, its a kludge, but the system
>> was
>> never designed for multiple users in the first place).
>>
>> I have a single, simple question this being the case: can I update a
>> single "read-only" bit field in a table of the database in order to
>> flag
>> to other users that the system is in read-only mode in a way that
>> avoids
>> concurrency issues? ie. does an "UPDATE" query lock and unlock? ( I
>> suspect the answer is yes! ). If anyone else has experience of these
>> things, I would also appreciate some tips on how best to proceed.
>>
>> Thanks
>>
>>
>> Robin
>>
>
>

Jul 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
2358
by: CJM | last post by:
I'm setting up some web-based (ASP) reports that query an Access DB. I also want certain people to be able to access and manipulate the database directly. However, if the database is open in...
1
1977
by: focus | last post by:
I have one doubt, I have defined a singleton class, that implements a STL list, this singleton class, will be access at the same time from diferent classes. My doubt is if STL accepts concurrent...
11
5420
by: Durai | last post by:
Hi All, I tested "concurrent testing" in MySQL. It works fine. But I couldn't do in PostgreSQL 7.3.4 on HPUX IPF. I got deadlock problem. I used the PHP script to update table( one script...
1
3512
by: bluedolphin | last post by:
There seems to be a consensus that Access has a concurrent user limit of 200 users. I am working on a system that currently stands at approx. 1 gig and has a small number of users. However, there...
3
4432
by: mgPA | last post by:
Short: How can I limit the number of concurrent logins to Access (2000) DB? Long: I seem to be having the problem discussed in previous postings of having more than 9 or 10 concurrent logins. ...
2
2358
by: Adnan | last post by:
Hey Ppl, I'm developing an Online Auction Site using ASP.net and am experiencing a problem with Transactions in ADO.Net. When beginTrasaction() function is invoked from a specific connection,...
6
6438
by: roblugt | last post by:
I have what I imagine is a well-known .Net networking problem, but even though I've Googled for some time I've not yet come across a thread where this has been fully explained... There is a...
6
4099
by: goraya | last post by:
This is design level discussion about web applications. How I design application that support 1 million concurrent requests??
0
13290
amitpatel66
by: amitpatel66 | last post by:
There is always a requirement that in Oracle Applications, the Concurrent Program need to be execute programatically based on certain conditions/validations: Concurrent programs can be executed...
0
7123
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7383
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7046
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7498
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5627
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5053
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3194
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1557
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
418
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.