473,786 Members | 2,583 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Add records in multi-user environment

I have an update table which I automatically would like to add to the master
table which is in use by other users. My idea is to add the records via an
update query. Is this a reliable method or can I run into problems and
should I do it another way?
Thanks,
john
Jun 16 '07 #1
4 1629
On Sat, 16 Jun 2007 16:33:05 +0200, "John" <jo@hn.comwrote :
>I have an update table which I automatically would like to add to the master
table which is in use by other users. My idea is to add the records via an
update query. Is this a reliable method or can I run into problems and
should I do it another way?
Should work fine, the only problem being if a user has one or more of your tables locked (i.e. they're doing data entry
work, saving the data, etc).
>Thanks,
john
Scott McDaniel
scott@takemeout _infotrakker.co m
www.infotrakker.com
Jun 17 '07 #2
"Scott McDaniel" <scott@NoSpam_I nfotrakker.coms chreef in bericht
news:3m******** *************** *********@4ax.c om...
On Sat, 16 Jun 2007 16:33:05 +0200, "John" <jo@hn.comwrote :
>>I have an update table which I automatically would like to add to the
master
table which is in use by other users. My idea is to add the records via an
update query. Is this a reliable method or can I run into problems and
should I do it another way?

Should work fine, the only problem being if a user has one or more of your
tables locked (i.e. they're doing data entry
work, saving the data, etc).
Thanks Scott. I just realize I accicentally mentioned UPDATE query while it
should be an INSERT query. With an insert query, can record locking also be
a problem?

john
Jun 17 '07 #3
On Sun, 17 Jun 2007 13:44:06 +0200, "John" <jo@hn.comwrote :
>"Scott McDaniel" <scott@NoSpam_I nfotrakker.coms chreef in bericht
news:3m******* *************** **********@4ax. com...
>On Sat, 16 Jun 2007 16:33:05 +0200, "John" <jo@hn.comwrote :
>>>I have an update table which I automatically would like to add to the
master
table which is in use by other users. My idea is to add the records via an
update query. Is this a reliable method or can I run into problems and
should I do it another way?

Should work fine, the only problem being if a user has one or more of your
tables locked (i.e. they're doing data entry
work, saving the data, etc).

Thanks Scott. I just realize I accicentally mentioned UPDATE query while it
should be an INSERT query. With an insert query, can record locking also be
a problem?
Same scenario, although I'd say that Insert queries would tend to have less tendency to cause record lock issues, since
they would always be inserting new records (and obviously no one could be editing a new record).
>
john
Scott McDaniel
scott@takemeout _infotrakker.co m
www.infotrakker.com
Jun 17 '07 #4
You also need to look at whether to use record level locking and how
the other users are accessing hte master table.

What version of Access are you using, and is the backend on a windows
2003 server or XP box?

Regards,
Tom Bizannes
Sydney, Australia

Jun 18 '07 #5

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

Similar topics

12
3880
by: * ProteanThread * | last post by:
but depends upon the clique: http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=954drf%24oca%241%40agate.berkeley.edu&rnum=2&prev=/groups%3Fq%3D%2522cross%2Bposting%2Bversus%2Bmulti%2Bposting%2522%26ie%3DUTF-8%26oe%3DUTF-8%26hl%3Den ...
5
8304
by: Terri | last post by:
I have a form with a multi-select combo. I dynamically build a SELECT statement, open a report, and set the recordsource to my dynamic SELECT statement. I count the records returned in the report by setting a text box to =Count(*). This works fine. Now I want to count the unique records in my report. I can dynamically create a SELECT statement that counts unique records. My statement looks like this: SELECT DISTINCT...
5
1677
by: Paul | last post by:
I have a simple database - 3 fields (Parent,Component,Qty) and I link this table to itself using Master File Parent and Link File Component. This creates a multi-indented table which I would like to get to a sequential file with all levels of the Master File listed. Example: Master File
6
1957
by: doncee | last post by:
Using a multi select list box to open several records in a pre - defined form. Most of the code that follows is taken from a posting by Alan Browne on his web site. The click routine is supposed to loop thru all of the reports, or in this case records, selected in the list box & display them for previewing or editing. In my situation it only displays 1 record in the form & does not perform the necessary loop. Have tried futzing with it...
6
1926
by: Dazbear | last post by:
Hi There Have been on a massive learning curve today creating an Access database without having even started the software before this morning! All going well and have learned to create table, forms, queries and even inter link. The database records support for a cohort of schools, giving the ability to give summaries of support by consultant, subject etc. So far all is going well with data being inputted by way of a school support
5
10090
by: mctime | last post by:
Hello, I am attempting to split a raw data table into a new table that has split out a specific field in the raw data and created a new record for each split but I have come to an impasse due to my limited knowledge of sql. The Raw data contains a number of columns with key columns similar to Name, Product and Partcode. The issue is that the Partcode column in the raw data can contain multiple values split by either a "," or a
6
9429
by: Dave | last post by:
On my form I have combo boxes. These combo boxes, after updating them, populate respective listboxes that are located below the combo boxes on the same form. I am trying to use a "generate report" button located on my form to print all of the list box values (that have been updated via selection from combo boxes) from the form to the report. I've tried using a macro with the code: Macro Name: cmdGenerateReport : On Click Action:...
6
4248
by: Hamilton sucks | last post by:
Hi: I need to add some records in a table called location(primary key: loc_id). What I want to do is for each location in the table, I add the same record but with a different loc_id, which can be a random string. All the other column should contain the same value. Can anyone give me a hint on how to do this in SQL server 2000 enterprise manager? thx.
2
2004
by: zenosan | last post by:
SunOS bsm1b 5.9 Generic_118558-09 sun4u sparc SUNW,Netra-440 This is perl, v5.6.1 built for sun4-solaris I have listed the platform/OS information for your reference. I need to extract records from a log file with the following format: |O%:CCLN-1-CBS1:CELLS-1-CELLS1:MCBTS-1-MC1900BTS1183 line 1
6
4158
by: Gun Slinger | last post by:
Hi guys, I have a quick question which i have pondered for a little while. I'm not sure if its even a good idea (so maybe advice on whether or not to do it would be helpful as well). I want to have my first datagridview to have a multi-select (which i have currently), but what i want to happen when multiple rows are selected is different. I have a sub datagridview which is using a relationship in a dataset which allows the two...
0
9655
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9497
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10363
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10169
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8993
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7517
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5398
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.