The nasty part is removing the duplicates – the duplicate wizard query will give you a set of records where there are two or more duplicates, but deleting them is usually done manually. How many duplicates do you think you have? If it’s lots (100s) then it may make sense to write some DAO code to step through the duplicate set of records and delete the first instance of each. But usually they aren’t exactly duplicates – different timestamps or something and you may want to use some other criteria to decide which one to delete. Once the deletes are done, the append queries can be run. To eliminate the annoying message, simply do a SetWarnings False in a macro or in code (but be sure to turn it back on), and run the 4 queries. If any of this doesn’t make sense, post back and we’ll try to help.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
series of queries (Access97)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » series of queries (Access97)
- This topic has 18 replies, 6 voices, and was last updated 22 years, 2 months ago.
Viewing 0 reply threadsAuthorReplies-
WSJenn
AskWoody LoungerJanuary 23, 2003 at 2:27 am #646993(Edited by charlotte on 22-Jan-03 19:27. to activate link to prior post)
Regarding my old post # 54573. I took jscher’s advice and have come up with 4 append queries that will append the eventID and DrID to tblapproval. I need help in constructing the on click event of a button that will loop through each of the queries, remove duplicates (especially since the combination of eventID and DrID represent the primary key), and then append the records without that default msgbox popping up telling the user they are about to append 5000 rows. Ok well not really 5000 but the point is that it’s annoying and it’s inappropriate to see that box in the application. Point is that the SQL’s work… and work well… so… if code is necessary and append queries are ill advised… i’d appreciate knowing that. thanks for any help. Jenn.
-
WSDrew
AskWoody Lounger -
WSGARYPSWANSON
AskWoody LoungerJanuary 22, 2003 at 7:48 pm #647068If you want to be lazy (and I am sure I will recieve some comments on this), use a Select Distinct or Select Distinct Row query on the final dataset to get the all unique combinations without the need to delete the duplicates. I find this easier then writing the code to eliminate duplicates.
HTH
-
WScarbonnb
AskWoody LoungerJanuary 22, 2003 at 8:06 pm #647072Here is an answer to part of your question.
To turn the warnings off and to run the append queries you code like this:
‘Turn the warnings off
DoCmd.SetWarnings False
‘Run Stored queries
DoCmd..OpenQuery “QueryName”
DoCmd..OpenQuery “QueryName2”
‘Run a query built in code
‘strSQL contains the SQL statement
DoCmd.RunSQL strSQL
‘Turn the warnings back on
DoCMD.SetWarnings TrueYou will need to follow the lead of others for the deleting duplicate records.
-
WSJenn
AskWoody LoungerJanuary 23, 2003 at 1:21 pm #647300Hmmm… any chance a union query will work? or maybe a line of code which after the second and subsequent append queries tells Access to check for duplicates? i think that if a duplicate is appended there will be an error msg that says you’ve violated a primary key rule or something equally informative… Maybe appending to a temporary table, removing duplicates and then appending to tblapproval, once the data is all cleaned up (i would not even know how to begin that in code) but i think it’s plausible. Oh and I even considered a macro (LOL) but as soon as I started, the thought was readily supplanted with an urge to ask the lounge for HELP! Anyway, these are the ideas that plague me today… I appreciate what you’ve all shared so far… any further comments or referrals are welcome.
-
WBell
AskWoody_MVP -
WSJenn
AskWoody LoungerJanuary 23, 2003 at 1:59 pm #647312This will be done with regularly, with each event/transaction that is recorded in the database. These queries represent a set of business rules that when combined, will produce a list of people who need to be sent a report. Every contribution I make, about 300 per year, will be passed through these queries. Thanks Wendell
-
WBell
AskWoody_MVPJanuary 23, 2003 at 3:10 pm #647328Since that’s the case, I think you may want to rethink the data entry process, and prevent duplicates from ever being entered. There are a couple of ways of doing that, and if you build forms that deal with your new structure, you shouldn’t really need to run the action queries you were originally concerned about. If this doesn’t make sense, let’s explore exactly what you need to do each time a contribution is recorded.
-
WSJenn
AskWoody LoungerJanuary 23, 2003 at 3:58 pm #647342You’ve got me thinking Wendell – do you suggest using forms based on the queries to filter tbldoctors versus the append queries. i’m not sure how that would work but i’m willing to try. all the background on the db is in the earlier post…. the reason duplicates will arise is because the records from tbldoctors are selected based upon multiple criteria. (position on a committee, which committee they are on, (there are 4 committees), location in the state, title in our organization, relationship to a legislator, because of this, a doctor could very well end up more than once in the resultant recordset. Upon looking back at jscher’s original response to my post… i think changing from append queries to update queries using a yes/no field, then appending after all are tagged, might be a better idea.
Whichever way it happens… the EventID and DrID must end up in tblapproval but it is not an option to manually select the doctors, say from a drop down list… that’s work the ‘puter needs to do.
-
WBell
AskWoody_MVPJanuary 23, 2003 at 5:20 pm #647369If I understand correctly, you are essentially creating a list of doctors for a specific issue, project, event, or whatever, and for any given event, you only want a doctor to show up once. It seems to me you should be able to create a SELECT DISTINCT query based on a UNION query which would give you just the unique DrIDs, and turn that into an Append query to tblapproval. You could do it with a series of update queries as well, but that seems more complex.
BTW – disregard my rambling on about a form – I somehow concluded you were concerned about the entry of duplicate doctor records – -
WSJenn
AskWoody LoungerJanuary 24, 2003 at 1:22 pm #647503well, seems the append queries didn’t work in the end… they append great, unless i have additional records for the same legislator, then they won’t append the data (darn those key violations!)… so… onto another approach… i think i will have a go at union queries, seeing that the sql’s for the append queries do work. potential snag: i need a field somewhere… a yes/no that after I append, i can update. this field should be used to leave out records that have already been satisfied. thank you all for the ideas given so far… they have been very helpful.
-
WBell
AskWoody_MVPJanuary 24, 2003 at 5:08 pm #647563 -
WSJenn
AskWoody LoungerJanuary 24, 2003 at 6:19 pm #647584What timing you have Wendell! I have constructed the union query and the append query works! … However I have tried several methods of constructing an update query and to no avail… RTE 3073 “Operation must use an updatable querie” has got me beat. I need a work around…. the goal is to update a yes or no field in tblEvent to “yes” after the records are appended to tblApproval, understanding that there is one record for each event in tblEvent… in tblapproval there can be up to 30 records for each event because several people approve each event. Obviously a one to many relationship. so after the append process, i need to tell Access “hey, look at the eventIDs that were just appended and put a check mark in this table for me, so the next time i run this process, you won’t bother appending the same records again!”
The original SQL statements used in the union queries are based on a filtered version of tblEvent that checks the [AprvlConst] field and only selects those that = no. This is the field that needs to be updated with a check mark after the append querie runs. Any suggestions??? temp table of some sort??? loop through the records???
-
WSJenn
AskWoody LoungerJanuary 24, 2003 at 6:42 pm #647620ok… i have a solution that works… i think LOL
two complex select queries based on filtered tables…. unioned to remove duplicates…. two append queries based on this union query. 1- appends EventID and DrID to tblapprovals 2- appends EventID to tempapprovalusing group by statement… update query run based on tempapproval table which updates [AprvlConst] in tblEvent. I think i can string these along in code but what i don’t know how to do is… empty the temp table after it updates… or check that it’s empty before it accepts new records…
-
WSpatt
AskWoody Lounger -
WBell
AskWoody_MVPJanuary 24, 2003 at 8:44 pm #647665Not sure I understand the need for a temporary table, but if that works, good. A delete query as the first step in your process will take care of emptying the table – I usually like to do it that way in case a question arises about how things got the way they are. If you delete the data at the end of the process, you can’t go back to figure out where something went wrong.
As to a query not being updateable, there are some useful tips on how to make sure queries are updateable in the Access help – the most basic one is to make sure that tables all have a primary key.
-
WSJenn
AskWoody LoungerJanuary 27, 2003 at 1:46 pm #647675(Corrected SQL- Thanks Wendell)
Eureka! and thanks All! I did reverse the delete command to delete at the beginning rather than end. great idea! I had to append to a temp table – seems to be the easiest way to make the recordset updatable. And wouldn’t you know… it works!this has been a thorn in my side for a very long time… and it used to frustrate me so much that i just couldn’t follow through for the solution… below are the sql’s involved and the rudimentary VBA i know… Thanks to all who helped… and come monday, i’m planning on removing another thorn… should y’all want to help!…
qrytblEvent =
SELECT tblEvent.*
FROM tblEvent
WHERE (((tblEvent.AprvlConst)=No));qryUnionApprovalsNoDups =
SELECT DISTINCT qrytblEvent.EventID, jctblDrtoMSSNYComm.DrID
FROM (qrytblEvent INNER JOIN (tblCampType INNER JOIN (tblMSSNYComm INNER JOIN (jctblDrtoMSSNYComm INNER JOIN (jctblCampTypetoMSSNYComm INNER JOIN tblCampaign ON jctblCampTypetoMSSNYComm.CampTypeID = tblCampaign.CampTypeID) ON jctblDrtoMSSNYComm.MSSNYCommID = jctblCampTypetoMSSNYComm.MSSNYCommID) ON (tblMSSNYComm.MSSNYCommID = jctblCampTypetoMSSNYComm.MSSNYCommID) AND (tblMSSNYComm.MSSNYCommID = jctblDrtoMSSNYComm.MSSNYCommID)) ON (tblCampType.CampTypeID = jctblCampTypetoMSSNYComm.CampTypeID) AND (tblCampType.CampTypeID = tblCampaign.CampTypeID)) ON qrytblEvent.CampID = tblCampaign.CampID) INNER JOIN tblEventDetails ON qrytblEvent.EventID = tblEventDetails.EventID
WHERE (((tblEventDetails.ProposedAmt)>500) AND ((tblMSSNYComm.MSSNYComm)=”PACExec”) AND ((jctblDrtoMSSNYComm.DrCommTitle)=”Chair” Or (jctblDrtoMSSNYComm.DrCommTitle)=”EVP”)) OR (((tblEventDetails.ProposedAmt)>500) AND ((tblMSSNYComm.MSSNYComm)=”FCES” Or (tblMSSNYComm.MSSNYComm)=”SCES”) AND ((jctblDrtoMSSNYComm.DrCommTitle)=”Chair”)) OR (((tblEventDetails.ProposedAmt)>500) AND ((tblMSSNYComm.MSSNYComm)=”PACExec”) AND ((jctblDrtoMSSNYComm.DrCommTitle)=”StateChair”) AND ((tblCampType.CampType)=”OtherComm”)) OR (((tblEventDetails.ProposedAmt)1000) AND ((tblMSSNYComm.MSSNYComm)=”PACExec”) AND ((jctblDrtoMSSNYComm.DrCommTitle)=”Member”)) OR (((tblEventDetails.ProposedAmt)>10000) AND ((tblMSSNYComm.MSSNYComm)=”MSSNYExec”) AND ((jctblDrtoMSSNYComm.DrCommTitle)=”Member”))UNION SELECT DISTINCTROW qrytblEvent.EventID, jctblDrtoMSSNYComm.DrID
FROM (qrytblEvent INNER JOIN (tblMSSNYDistrict INNER JOIN (((jctblLegCamp INNER JOIN (tblCampType INNER JOIN (((tblMSSNYComm INNER JOIN (tblDoctors INNER JOIN jctblDrtoMSSNYComm ON tblDoctors.DrID = jctblDrtoMSSNYComm.DrID) ON tblMSSNYComm.MSSNYCommID = jctblDrtoMSSNYComm.MSSNYCommID) INNER JOIN jctblCampTypetoMSSNYComm ON tblMSSNYComm.MSSNYCommID = jctblCampTypetoMSSNYComm.MSSNYCommID) INNER JOIN tblCampaign ON jctblCampTypetoMSSNYComm.CampTypeID = tblCampaign.CampTypeID) ON (tblCampType.CampTypeID = tblCampaign.CampTypeID) AND (tblCampType.CampTypeID = jctblCampTypetoMSSNYComm.CampTypeID)) ON jctblLegCamp.CampID = tblCampaign.CampID) INNER JOIN jctblLegtoLegDist ON jctblLegCamp.LegID = jctblLegtoLegDist.LegID) INNER JOIN (tblMSSNYDisttoCounties INNER JOIN jctblLegDisttoCounties ON tblMSSNYDisttoCounties.CntyID = jctblLegDisttoCounties.CntyID) ON jctblLegtoLegDist.LegDistID = jctblLegDisttoCounties.LegDistID) ON (tblDoctors.DrMSSNYDist = tblMSSNYDistrict.MSSNYDistrict) AND (tblMSSNYDistrict.MSSNYDistrict = tblMSSNYDisttoCounties.MSSNYDist)) ON qrytblEvent.CampID = tblCampaign.CampID) INNER JOIN tblEventDetails ON qrytblEvent.EventID = tblEventDetails.EventID
WHERE (((tblEventDetails.ProposedAmt)>500) AND ((tblCampType.CampType)=”State” Or (tblCampType.CampType)=”Federal”) AND ((tblMSSNYComm.MSSNYComm)=”SCES” Or (tblMSSNYComm.MSSNYComm)=”FCES”) AND ((jctblDrtoMSSNYComm.DrCommTitle)”Alternate”));qryAppendApprovals =
INSERT INTO tblApprovals ( EventID, DrID )
SELECT qryUnionApprovalsNoDups.EventID, qryUnionApprovalsNoDups.DrID
FROM qryUnionApprovalsNoDups;qryAppendEventIDtotempAprvl=
INSERT INTO tempAprvl ( EventID )
SELECT qryUnionApprovalsNoDups.EventID
FROM qryUnionApprovalsNoDups
GROUP BY qryUnionApprovalsNoDups.EventID;qryupdatetblEvent=
UPDATE tempAprvl INNER JOIN tblEvent ON tempAprvl.EventID = tblEvent.EventID SET tblEvent.AprvlConst = Yes;Private Sub cmdgetapprovals_Click()
DoCmd.RunSQL “DELETE * FROM tempAprvl”
DoCmd.OpenQuery “qryAppendApprovals”, acViewNormal, acAdd
DoCmd.OpenQuery “qryAppendEventIDtotempAprvl”, acViewNormal, acAdd
DoCmd.OpenQuery “qryupdatetblEvent”, acViewNormal, acAdd
MsgBox “Approvals Are Ready To Send!”If there was an easier way to do this… wait til tuesday to tell me!
-
WBell
AskWoody_MVPJanuary 25, 2003 at 12:28 pm #647809Glad it seems to be working – I only see one problem with what you posted, and I suspect something simply got dropped from the post as this SQL syntax shouldn’t ever work
qryUnionApprovalsNoDups =
JOIN tblEventDetails ON qrytblEvent.EventID = tblEventDetails.EventID
WHERE (((tblEventDetails.ProposedAmt)>500) AND ((tblMSSNYComm.MSSNYComm)=”PACExec”) AND ((jctblDrtoMSSNYComm.DrCommTitle)=”Chair” Or (jctblDrtoMSSNYComm.DrCommTitle)=”EVP”)) OR
. . . .
as there isn’t a SELECT clause in that piece of the UNION query. I suspect one line got dropped when you created the post. Have a great weekend.
-
-
-
-
Viewing 0 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
44 minutes ago -
Mail from certain domains not delivered to my outlook.com address
by
pumphouse
3 hours, 31 minutes ago -
Is data that is in OneDrive also taking up space on my computer?
by
WShollis1818
4 hours, 39 minutes ago -
Nvidia just fixed an AMD Linux bug
by
Alex5723
22 hours, 52 minutes ago -
50 years and counting
by
Susan Bradley
6 hours, 47 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
5 hours, 37 minutes ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
1 day, 9 hours ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
1 day, 10 hours ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
1 day, 10 hours ago -
OneNote and MS Word 365
by
CWBillow
1 day, 11 hours ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
1 day, 12 hours ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
1 day, 12 hours ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
1 day, 12 hours ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
1 day, 23 hours ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
2 days ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
2 days, 8 hours ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
1 day, 20 hours ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
21 hours, 47 minutes ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
2 days, 17 hours ago -
Apple backports fixes
by
Susan Bradley
2 days ago -
Win 11 24H2 will not install
by
Michael1950
22 hours, 1 minute ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
1 hour, 28 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
1 day, 6 hours ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
6 hours, 47 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
3 days, 8 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
2 days ago -
simple general stupid question
by
WSaltamirano
3 days, 6 hours ago -
April 2025 Office non-Security updates
by
PKCano
3 days, 23 hours ago -
Microsoft wants to hear from you
by
Will Fastie
1 day, 14 hours ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
4 days, 3 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.