473,396 Members | 1,738 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

duplicates query help & strategy for update queries with SetWarnings = False

ARC
Hello all,

So I'm knee deep in this import utility program, and am coming up with all
sorts of "gotcha's!".

1st off. On a "Find Duplicates Query", does anyone have a good solution for
renaming the duplicate records? My thinking was to take the results of the
duplicate query, and somehow have it number each line where there is a
duplicate (tried a groups query, but "count" won't work), then do an update
query to change the duplicate to include the occurence #. For example, in a
pay types table, if "Discover" is duplicated (and you can't get rid of one
due to it potentially being in use), then I'd like to run an update query
that would update the 2nd one to: Discover (2). (Yes, I know you should just
set the pay type description to NOT allow duplicates, but the original db
did allow it, and the import db will not allow dup's...)

2nd problem, and this is a biggie, maybe a showstopper for my import
utility: When running a series of update queries to update data from one
database to another, I use a docmd.setwarnings false statement before
running each update or append query.

The problem is, if a query fails due to data validation rules, other misc.
table rules, etc., the "setwarnings = false" command is suppressing the one
warning that you actually do want to see, and it's blowing right by that
with no messages. If you don't put the setwarnings=false, then the user
get's 2 dialogs for every update query, which is not at all desirable since
we're talking 50 or so append queries. Does anyone have an alternative?
Here's the exact code I use:

'Begin data importing******************************
'1st, Append all static/dropdown list tables
'
Call SetMessage("Appending Business Source Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qAppendBusSource"
'
Call SetMessage("Appending Customer Type Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qryAppendCustType"

And this goes on for about 50 queries or so. So the trick here is that the
user can never be warned about the 2 standard messages: Running a query that
will change data, and Confirming the appending of records. But...I have to
know if a query fails to append any data due to key viloations, or any other
reasons.

Any strategy here would be helpful. I don't even think you can trap an error
code, because if any data fails to append, it doesn't trigger the On Error
events. Any ideas?

Thanks!

Andy

Sep 21 '07 #1
16 3443
The best way do do imports might be to sort out the problems before the data
appended to the real table. You create a table with all *Text* fields (so
you get no data mismatch errors), no validation rules, no relationships to
other tables, and an AutoNumber primary key field last in the table (so the
data gets appended into the preceding fields.)

Next you build a from to perform the import. The first button deletes any
data in the temp table (from previous imports), and performs the
TransferText into the temp table. Your code then runs a series of tests for
everything that could go wrong: zero-length text fields, wrong data type,
bad dates, values that don't match anything in foreign key fields, and so
on. You flag these records and load them into a list box or the form itself
(typically in Continuous view), so the user can fix up these situations.

Once the user has handled all the problems, you enable the final command
button at the bottom of the form, which executes an append query to add the
data to the real table(s). If any error occurs during this step (typically
something you forgot to check for), you can trap this error by running using
the Execute method with dbFailOnError. If that's new, see:
Action queries: suppressing dialogs, while knowing results
at:
http://allenbrowne.com/ser-60.html

A failed Execute can still leave you with partial records in the final
table, so you probably want to wrap that operation in a transaction so you
can roll the whole thing back. For an example of using a transaction, see:
Archive: Move records to another table - copy + delete in a transaction
at:
http://allenbrowne.com/ser-37.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <ac********@hotmail.comwrote in message
news:8c******************@newssvr12.news.prodigy.n et...
Hello all,

So I'm knee deep in this import utility program, and am coming up with all
sorts of "gotcha's!".

1st off. On a "Find Duplicates Query", does anyone have a good solution
for renaming the duplicate records? My thinking was to take the results of
the duplicate query, and somehow have it number each line where there is a
duplicate (tried a groups query, but "count" won't work), then do an
update query to change the duplicate to include the occurence #. For
example, in a pay types table, if "Discover" is duplicated (and you can't
get rid of one due to it potentially being in use), then I'd like to run
an update query that would update the 2nd one to: Discover (2). (Yes, I
know you should just set the pay type description to NOT allow duplicates,
but the original db did allow it, and the import db will not allow
dup's...)

2nd problem, and this is a biggie, maybe a showstopper for my import
utility: When running a series of update queries to update data from one
database to another, I use a docmd.setwarnings false statement before
running each update or append query.

The problem is, if a query fails due to data validation rules, other misc.
table rules, etc., the "setwarnings = false" command is suppressing the
one warning that you actually do want to see, and it's blowing right by
that with no messages. If you don't put the setwarnings=false, then the
user get's 2 dialogs for every update query, which is not at all desirable
since we're talking 50 or so append queries. Does anyone have an
alternative? Here's the exact code I use:

'Begin data importing******************************
'1st, Append all static/dropdown list tables
'
Call SetMessage("Appending Business Source Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qAppendBusSource"
'
Call SetMessage("Appending Customer Type Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qryAppendCustType"

And this goes on for about 50 queries or so. So the trick here is that the
user can never be warned about the 2 standard messages: Running a query
that will change data, and Confirming the appending of records. But...I
have to know if a query fails to append any data due to key viloations, or
any other reasons.

Any strategy here would be helpful. I don't even think you can trap an
error code, because if any data fails to append, it doesn't trigger the On
Error events. Any ideas?

Thanks!

Andy
Sep 21 '07 #2
ARC
Allen,

That's perfect! Exactly what I was looking for, to be able to trap errors on
the append, and not warn with the other 2 boxes!

I dont' have to worry much about a transaction. I'm having the user select
the source and destination, and if the destination is present and contains
data, I'm giving an overwrite / backup dialog. So each time they try,
they'll get a blank database guaranteed.

I've done pretty much what you've said. I have many many queries that check
for orpaned data (for example, if there's a billing record with no matching
custID in the customer table, I'm putting up a form with the unmatched data,
and a quick way to update all unmatched to one archive type customer, etc.
Or if a part category is missing in the parts table, I'm creating a category
callled "Un-categorized", and setting any parts missing cat's to this
category. Or if the data is line-items that link to parts, if the partID
isn't there, I again put up a form so they can quickly replace missing data.
For things like customer call logs, or customer reminders, I'm doing a join
with the customer table, so it will only bring in the matched data. For
critical financial items, I'm putting up forms so they can fix unmatched
data.

For mainly static tables such as business source, customer type, etc., since
I'm not allowing blanks anymore, I'm just doing an IIF(isnull(..., etc.
where I'll set the description to "Not entered" if it's blank.

I was surprised to see duplicate entries in some of the static tables for
dropdown selections, so I have to solve this one now. Any ideas on the other
part of my question? If there's a duplicate, I want to rename the
description with a occurence number after the description. Such as "Federal
Express (1)" and "Federal Express (2)", etc.

Thanks!

Andy
"Allen Browne" <Al*********@SeeSig.Invalidwrote in message
news:46***********************@per-qv1-newsreader-01.iinet.net.au...
The best way do do imports might be to sort out the problems before the
data appended to the real table. You create a table with all *Text* fields
(so you get no data mismatch errors), no validation rules, no
relationships to other tables, and an AutoNumber primary key field last in
the table (so the data gets appended into the preceding fields.)

Next you build a from to perform the import. The first button deletes any
data in the temp table (from previous imports), and performs the
TransferText into the temp table. Your code then runs a series of tests
for everything that could go wrong: zero-length text fields, wrong data
type, bad dates, values that don't match anything in foreign key fields,
and so on. You flag these records and load them into a list box or the
form itself (typically in Continuous view), so the user can fix up these
situations.

Once the user has handled all the problems, you enable the final command
button at the bottom of the form, which executes an append query to add
the data to the real table(s). If any error occurs during this step
(typically something you forgot to check for), you can trap this error by
running using the Execute method with dbFailOnError. If that's new, see:
Action queries: suppressing dialogs, while knowing results
at:
http://allenbrowne.com/ser-60.html

A failed Execute can still leave you with partial records in the final
table, so you probably want to wrap that operation in a transaction so you
can roll the whole thing back. For an example of using a transaction, see:
Archive: Move records to another table - copy + delete in a transaction
at:
http://allenbrowne.com/ser-37.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <ac********@hotmail.comwrote in message
news:8c******************@newssvr12.news.prodigy.n et...
>Hello all,

So I'm knee deep in this import utility program, and am coming up with
all sorts of "gotcha's!".

1st off. On a "Find Duplicates Query", does anyone have a good solution
for renaming the duplicate records? My thinking was to take the results
of the duplicate query, and somehow have it number each line where there
is a duplicate (tried a groups query, but "count" won't work), then do an
update query to change the duplicate to include the occurence #. For
example, in a pay types table, if "Discover" is duplicated (and you can't
get rid of one due to it potentially being in use), then I'd like to run
an update query that would update the 2nd one to: Discover (2). (Yes, I
know you should just set the pay type description to NOT allow
duplicates, but the original db did allow it, and the import db will not
allow dup's...)

2nd problem, and this is a biggie, maybe a showstopper for my import
utility: When running a series of update queries to update data from one
database to another, I use a docmd.setwarnings false statement before
running each update or append query.

The problem is, if a query fails due to data validation rules, other
misc. table rules, etc., the "setwarnings = false" command is suppressing
the one warning that you actually do want to see, and it's blowing right
by that with no messages. If you don't put the setwarnings=false, then
the user get's 2 dialogs for every update query, which is not at all
desirable since we're talking 50 or so append queries. Does anyone have
an alternative? Here's the exact code I use:

'Begin data importing******************************
'1st, Append all static/dropdown list tables
'
Call SetMessage("Appending Business Source Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qAppendBusSource"
'
Call SetMessage("Appending Customer Type Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qryAppendCustType"

And this goes on for about 50 queries or so. So the trick here is that
the user can never be warned about the 2 standard messages: Running a
query that will change data, and Confirming the appending of records.
But...I have to know if a query fails to append any data due to key
viloations, or any other reasons.

Any strategy here would be helpful. I don't even think you can trap an
error code, because if any data fails to append, it doesn't trigger the
On Error events. Any ideas?

Thanks!

Andy
Sep 21 '07 #3
ARC
Hi Allen,

This question may have been lost in the shuffle:

I was surprised to see duplicate entries in some of the static tables for
dropdown selections, so I have to solve this one now. Any ideas on the other
part of my question? If there's a duplicate, I want to rename the
description with a occurence number after the description. Such as "Federal
Express (1)" and "Federal Express (2)", etc.

P.S. I used the query wizard to create a "find duplicates" query, now I need
to adjust the results of that query to add an occurence counter/number, and
I'd be set. Just not quite sure how to do that.

Thanks!

Andy
"ARC" <ac********@hotmail.comwrote in message
news:_n*****************@newssvr13.news.prodigy.ne t...
Allen,

That's perfect! Exactly what I was looking for, to be able to trap errors
on the append, and not warn with the other 2 boxes!

I dont' have to worry much about a transaction. I'm having the user select
the source and destination, and if the destination is present and contains
data, I'm giving an overwrite / backup dialog. So each time they try,
they'll get a blank database guaranteed.

I've done pretty much what you've said. I have many many queries that
check for orpaned data (for example, if there's a billing record with no
matching custID in the customer table, I'm putting up a form with the
unmatched data, and a quick way to update all unmatched to one archive
type customer, etc. Or if a part category is missing in the parts table,
I'm creating a category callled "Un-categorized", and setting any parts
missing cat's to this category. Or if the data is line-items that link to
parts, if the partID isn't there, I again put up a form so they can
quickly replace missing data. For things like customer call logs, or
customer reminders, I'm doing a join with the customer table, so it will
only bring in the matched data. For critical financial items, I'm putting
up forms so they can fix unmatched data.

For mainly static tables such as business source, customer type, etc.,
since I'm not allowing blanks anymore, I'm just doing an IIF(isnull(...,
etc. where I'll set the description to "Not entered" if it's blank.

I was surprised to see duplicate entries in some of the static tables for
dropdown selections, so I have to solve this one now. Any ideas on the
other part of my question? If there's a duplicate, I want to rename the
description with a occurence number after the description. Such as
"Federal Express (1)" and "Federal Express (2)", etc.

Thanks!

Andy
"Allen Browne" <Al*********@SeeSig.Invalidwrote in message
news:46***********************@per-qv1-newsreader-01.iinet.net.au...
>The best way do do imports might be to sort out the problems before the
data appended to the real table. You create a table with all *Text*
fields (so you get no data mismatch errors), no validation rules, no
relationships to other tables, and an AutoNumber primary key field last
in the table (so the data gets appended into the preceding fields.)

Next you build a from to perform the import. The first button deletes any
data in the temp table (from previous imports), and performs the
TransferText into the temp table. Your code then runs a series of tests
for everything that could go wrong: zero-length text fields, wrong data
type, bad dates, values that don't match anything in foreign key fields,
and so on. You flag these records and load them into a list box or the
form itself (typically in Continuous view), so the user can fix up these
situations.

Once the user has handled all the problems, you enable the final command
button at the bottom of the form, which executes an append query to add
the data to the real table(s). If any error occurs during this step
(typically something you forgot to check for), you can trap this error by
running using the Execute method with dbFailOnError. If that's new, see:
Action queries: suppressing dialogs, while knowing results
at:
http://allenbrowne.com/ser-60.html

A failed Execute can still leave you with partial records in the final
table, so you probably want to wrap that operation in a transaction so
you can roll the whole thing back. For an example of using a transaction,
see:
Archive: Move records to another table - copy + delete in a
transaction
at:
http://allenbrowne.com/ser-37.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <ac********@hotmail.comwrote in message
news:8c******************@newssvr12.news.prodigy. net...
>>Hello all,

So I'm knee deep in this import utility program, and am coming up with
all sorts of "gotcha's!".

1st off. On a "Find Duplicates Query", does anyone have a good solution
for renaming the duplicate records? My thinking was to take the results
of the duplicate query, and somehow have it number each line where there
is a duplicate (tried a groups query, but "count" won't work), then do
an update query to change the duplicate to include the occurence #. For
example, in a pay types table, if "Discover" is duplicated (and you
can't get rid of one due to it potentially being in use), then I'd like
to run an update query that would update the 2nd one to: Discover (2).
(Yes, I know you should just set the pay type description to NOT allow
duplicates, but the original db did allow it, and the import db will not
allow dup's...)

2nd problem, and this is a biggie, maybe a showstopper for my import
utility: When running a series of update queries to update data from one
database to another, I use a docmd.setwarnings false statement before
running each update or append query.

The problem is, if a query fails due to data validation rules, other
misc. table rules, etc., the "setwarnings = false" command is
suppressing the one warning that you actually do want to see, and it's
blowing right by that with no messages. If you don't put the
setwarnings=false, then the user get's 2 dialogs for every update query,
which is not at all desirable since we're talking 50 or so append
queries. Does anyone have an alternative? Here's the exact code I use:

'Begin data importing******************************
'1st, Append all static/dropdown list tables
'
Call SetMessage("Appending Business Source Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qAppendBusSource"
'
Call SetMessage("Appending Customer Type Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qryAppendCustType"

And this goes on for about 50 queries or so. So the trick here is that
the user can never be warned about the 2 standard messages: Running a
query that will change data, and Confirming the appending of records.
But...I have to know if a query fails to append any data due to key
viloations, or any other reasons.

Any strategy here would be helpful. I don't even think you can trap an
error code, because if any data fails to append, it doesn't trigger the
On Error events. Any ideas?

Thanks!

Andy
Sep 21 '07 #4
ARC
Nevermind, I think I've got it. I'm calling a function that will set the
occurence number.

Thanks!

Andy
"ARC" <ac********@hotmail.comwrote in message
news:UV******************@newssvr13.news.prodigy.n et...
Hi Allen,

This question may have been lost in the shuffle:

I was surprised to see duplicate entries in some of the static tables for
dropdown selections, so I have to solve this one now. Any ideas on the
other
part of my question? If there's a duplicate, I want to rename the
description with a occurence number after the description. Such as
"Federal
Express (1)" and "Federal Express (2)", etc.

P.S. I used the query wizard to create a "find duplicates" query, now I
need to adjust the results of that query to add an occurence
counter/number, and I'd be set. Just not quite sure how to do that.

Thanks!

Andy
"ARC" <ac********@hotmail.comwrote in message
news:_n*****************@newssvr13.news.prodigy.ne t...
>Allen,

That's perfect! Exactly what I was looking for, to be able to trap errors
on the append, and not warn with the other 2 boxes!

I dont' have to worry much about a transaction. I'm having the user
select the source and destination, and if the destination is present and
contains data, I'm giving an overwrite / backup dialog. So each time they
try, they'll get a blank database guaranteed.

I've done pretty much what you've said. I have many many queries that
check for orpaned data (for example, if there's a billing record with no
matching custID in the customer table, I'm putting up a form with the
unmatched data, and a quick way to update all unmatched to one archive
type customer, etc. Or if a part category is missing in the parts table,
I'm creating a category callled "Un-categorized", and setting any parts
missing cat's to this category. Or if the data is line-items that link to
parts, if the partID isn't there, I again put up a form so they can
quickly replace missing data. For things like customer call logs, or
customer reminders, I'm doing a join with the customer table, so it will
only bring in the matched data. For critical financial items, I'm putting
up forms so they can fix unmatched data.

For mainly static tables such as business source, customer type, etc.,
since I'm not allowing blanks anymore, I'm just doing an IIF(isnull(...,
etc. where I'll set the description to "Not entered" if it's blank.

I was surprised to see duplicate entries in some of the static tables for
dropdown selections, so I have to solve this one now. Any ideas on the
other part of my question? If there's a duplicate, I want to rename the
description with a occurence number after the description. Such as
"Federal Express (1)" and "Federal Express (2)", etc.

Thanks!

Andy
"Allen Browne" <Al*********@SeeSig.Invalidwrote in message
news:46***********************@per-qv1-newsreader-01.iinet.net.au...
>>The best way do do imports might be to sort out the problems before the
data appended to the real table. You create a table with all *Text*
fields (so you get no data mismatch errors), no validation rules, no
relationships to other tables, and an AutoNumber primary key field last
in the table (so the data gets appended into the preceding fields.)

Next you build a from to perform the import. The first button deletes
any data in the temp table (from previous imports), and performs the
TransferText into the temp table. Your code then runs a series of tests
for everything that could go wrong: zero-length text fields, wrong data
type, bad dates, values that don't match anything in foreign key fields,
and so on. You flag these records and load them into a list box or the
form itself (typically in Continuous view), so the user can fix up these
situations.

Once the user has handled all the problems, you enable the final command
button at the bottom of the form, which executes an append query to add
the data to the real table(s). If any error occurs during this step
(typically something you forgot to check for), you can trap this error
by running using the Execute method with dbFailOnError. If that's new,
see:
Action queries: suppressing dialogs, while knowing results
at:
http://allenbrowne.com/ser-60.html

A failed Execute can still leave you with partial records in the final
table, so you probably want to wrap that operation in a transaction so
you can roll the whole thing back. For an example of using a
transaction, see:
Archive: Move records to another table - copy + delete in a
transaction
at:
http://allenbrowne.com/ser-37.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <ac********@hotmail.comwrote in message
news:8c******************@newssvr12.news.prodigy .net...
Hello all,

So I'm knee deep in this import utility program, and am coming up with
all sorts of "gotcha's!".

1st off. On a "Find Duplicates Query", does anyone have a good solution
for renaming the duplicate records? My thinking was to take the results
of the duplicate query, and somehow have it number each line where
there is a duplicate (tried a groups query, but "count" won't work),
then do an update query to change the duplicate to include the
occurence #. For example, in a pay types table, if "Discover" is
duplicated (and you can't get rid of one due to it potentially being in
use), then I'd like to run an update query that would update the 2nd
one to: Discover (2). (Yes, I know you should just set the pay type
description to NOT allow duplicates, but the original db did allow it,
and the import db will not allow dup's...)

2nd problem, and this is a biggie, maybe a showstopper for my import
utility: When running a series of update queries to update data from
one database to another, I use a docmd.setwarnings false statement
before running each update or append query.

The problem is, if a query fails due to data validation rules, other
misc. table rules, etc., the "setwarnings = false" command is
suppressing the one warning that you actually do want to see, and it's
blowing right by that with no messages. If you don't put the
setwarnings=false, then the user get's 2 dialogs for every update
query, which is not at all desirable since we're talking 50 or so
append queries. Does anyone have an alternative? Here's the exact code
I use:

'Begin data importing******************************
'1st, Append all static/dropdown list tables
'
Call SetMessage("Appending Business Source Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qAppendBusSource"
'
Call SetMessage("Appending Customer Type Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qryAppendCustType"

And this goes on for about 50 queries or so. So the trick here is that
the user can never be warned about the 2 standard messages: Running a
query that will change data, and Confirming the appending of records.
But...I have to know if a query fails to append any data due to key
viloations, or any other reasons.

Any strategy here would be helpful. I don't even think you can trap an
error code, because if any data fails to append, it doesn't trigger the
On Error events. Any ideas?

Thanks!

Andy
Sep 21 '07 #5
ARC
As the English would say "Sod that!!" After playing around with duplicates,
and a funtion to generate an occurence number, it looked like you would need
a handful of queries per table!!

So in 15 min's or so, I came up with a function that will take care of dup's
and nulls in one pass. I'll post the code in a new post for those searching
for such things, as it works quite nicely.

Andy
"Allen Browne" <Al*********@SeeSig.Invalidwrote in message
news:46***********************@per-qv1-newsreader-01.iinet.net.au...
The best way do do imports might be to sort out the problems before the
data appended to the real table. You create a table with all *Text* fields
(so you get no data mismatch errors), no validation rules, no
relationships to other tables, and an AutoNumber primary key field last in
the table (so the data gets appended into the preceding fields.)

Next you build a from to perform the import. The first button deletes any
data in the temp table (from previous imports), and performs the
TransferText into the temp table. Your code then runs a series of tests
for everything that could go wrong: zero-length text fields, wrong data
type, bad dates, values that don't match anything in foreign key fields,
and so on. You flag these records and load them into a list box or the
form itself (typically in Continuous view), so the user can fix up these
situations.

Once the user has handled all the problems, you enable the final command
button at the bottom of the form, which executes an append query to add
the data to the real table(s). If any error occurs during this step
(typically something you forgot to check for), you can trap this error by
running using the Execute method with dbFailOnError. If that's new, see:
Action queries: suppressing dialogs, while knowing results
at:
http://allenbrowne.com/ser-60.html

A failed Execute can still leave you with partial records in the final
table, so you probably want to wrap that operation in a transaction so you
can roll the whole thing back. For an example of using a transaction, see:
Archive: Move records to another table - copy + delete in a transaction
at:
http://allenbrowne.com/ser-37.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <ac********@hotmail.comwrote in message
news:8c******************@newssvr12.news.prodigy.n et...
>Hello all,

So I'm knee deep in this import utility program, and am coming up with
all sorts of "gotcha's!".

1st off. On a "Find Duplicates Query", does anyone have a good solution
for renaming the duplicate records? My thinking was to take the results
of the duplicate query, and somehow have it number each line where there
is a duplicate (tried a groups query, but "count" won't work), then do an
update query to change the duplicate to include the occurence #. For
example, in a pay types table, if "Discover" is duplicated (and you can't
get rid of one due to it potentially being in use), then I'd like to run
an update query that would update the 2nd one to: Discover (2). (Yes, I
know you should just set the pay type description to NOT allow
duplicates, but the original db did allow it, and the import db will not
allow dup's...)

2nd problem, and this is a biggie, maybe a showstopper for my import
utility: When running a series of update queries to update data from one
database to another, I use a docmd.setwarnings false statement before
running each update or append query.

The problem is, if a query fails due to data validation rules, other
misc. table rules, etc., the "setwarnings = false" command is suppressing
the one warning that you actually do want to see, and it's blowing right
by that with no messages. If you don't put the setwarnings=false, then
the user get's 2 dialogs for every update query, which is not at all
desirable since we're talking 50 or so append queries. Does anyone have
an alternative? Here's the exact code I use:

'Begin data importing******************************
'1st, Append all static/dropdown list tables
'
Call SetMessage("Appending Business Source Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qAppendBusSource"
'
Call SetMessage("Appending Customer Type Records ...")
DoCmd.SetWarnings warnyn
DoCmd.OpenQuery "qryAppendCustType"

And this goes on for about 50 queries or so. So the trick here is that
the user can never be warned about the 2 standard messages: Running a
query that will change data, and Confirming the appending of records.
But...I have to know if a query fails to append any data due to key
viloations, or any other reasons.

Any strategy here would be helpful. I don't even think you can trap an
error code, because if any data fails to append, it doesn't trigger the
On Error events. Any ideas?

Thanks!

Andy
Sep 21 '07 #6
ARC
Hi Allen,

Quick question for you. In regards to checking for empty strings, in your
experience, should I be checking just the memo fields?

In query design for the append queries, I'm using something like this for
memos:

xNotes: IIf([customers1].[Notes]="",Null,[customers1.[Notes])
appendto: Notes

Andy
Sep 21 '07 #7
Andy, the best solution for this is to disallow zero-length strings (ZLS) in
table design.

There's a property there for each Text and Memo field, or you can use the
code in this link to set the property for all the Text, Memo, and Hyperlink
fields in your database:
http://allenbrowne.com/bug-09.html

There are rare cases where a ZLS is useful (e.g. for temporary import
tables), but in general all they contribute to your database is:
- inefficiency (querying for both types),
- bugs (where you forgot to query for both types), and
- confusion (where a user can't tell the difference.)

So save yourself the frustration and block them at the engine level.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <PC*****@PCESoft.invalidwrote in message
news:_N******************@newssvr13.news.prodigy.n et...
Hi Allen,

Quick question for you. In regards to checking for empty strings, in your
experience, should I be checking just the memo fields?

In query design for the append queries, I'm using something like this for
memos:

xNotes: IIf([customers1].[Notes]="",Null,[customers1.[Notes])
appendto: Notes

Andy
Sep 21 '07 #8
ARC
This is for the import routine for an old/existing db where it was not
blocked...

Thanks!

Sep 21 '07 #9
In that case, you will need to test for both null and zls.

Criteria:
Is Null Or ""

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"ARC" <PC*****@PCESoft.invalidwrote in message
news:zZ******************@newssvr13.news.prodigy.n et...
This is for the import routine for an old/existing db where it was not
blocked...

Thanks!
Sep 21 '07 #10
ARC
In just the memo fields? Many Thanks!
Sep 21 '07 #11
ARC
Allen,

Thanks again for the link! I just had my very first successful test of my
import utility, after having to code for just about everything! So thanks
again... Just ran into the problem your link mentioned about expecting
parameters. I'm using the new access 2007 tempvars, and it's treating that
like a parameter, so off for more changes...

Andy

Sep 21 '07 #12
"Allen Browne" <Al*********@SeeSig.Invalidwrote in
news:46***********************@per-qv1-newsreader-01.iinet.net.au:
A failed Execute can still leave you with partial records in the
final table, so you probably want to wrap that operation in a
transaction so you can roll the whole thing back.
Er, doesn't dbFailOnError roll the whole thing back?

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Sep 22 '07 #13
No, dbFailOnError does not rollback, David.

It used to before Access 97. The A97 help file wrongly states that it rolls
back. You had to read the ReadMe installed with A97 to discover that MS had
changed this. So now dbFailOnError quits when an error occurs, so leaves you
with partial updates - probably the worst possible result for many
situations.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"David W. Fenton" <XX*******@dfenton.com.invalidwrote in message
news:Xn**********************************@216.196. 97.142...
"Allen Browne" <Al*********@SeeSig.Invalidwrote in
news:46***********************@per-qv1-newsreader-01.iinet.net.au:
>A failed Execute can still leave you with partial records in the
final table, so you probably want to wrap that operation in a
transaction so you can roll the whole thing back.

Er, doesn't dbFailOnError roll the whole thing back?

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Sep 22 '07 #14
Allen Browne wrote:
No, dbFailOnError does not rollback, David.

It used to before Access 97. The A97 help file wrongly states that it
rolls back. You had to read the ReadMe installed with A97 to discover
that MS had changed this. So now dbFailOnError quits when an error
occurs, so leaves you with partial updates - probably the worst
possible result for many situations.
Hmm, in a simple test I just did dbFailOnError did roll back the entire
transaction. I tried an Append query of ten rows where the first two rows being
inserted are valid and all others produce duplicate key errors.

When I run the code and get the Duplicate Key error nothing is inserted. When
I removed dbFailOnError then the valid rows were inserted and the duplicate rows
were not (no error of course).

This was Access 97 SR2.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Sep 22 '07 #15
"Allen Browne" <Al*********@SeeSig.Invalidwrote in
news:46***********************@per-qv1-newsreader-01.iinet.net.au:
No, dbFailOnError does not rollback, David.

It used to before Access 97. The A97 help file wrongly states that
it rolls back. You had to read the ReadMe installed with A97 to
discover that MS had changed this. So now dbFailOnError quits when
an error occurs, so leaves you with partial updates - probably the
worst possible result for many situations.
Geez. How could I have missed that?

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Sep 22 '07 #16
"Allen Browne" <Al*********@SeeSig.Invalidwrote in
news:46***********************@per-qv1-newsreader-01.iinet.net.au:
The Access 2003 help on Execute (DAO) states:
<quote>
In a Microsoft Jet workspace, if you provide a syntactically
correct SQL statement and have the appropriate permissions, the
Execute method won't fail - even if not a single row can be
modified or deleted. Therefore, always use the dbFailOnError
option when using the Execute method to run an update or delete
query. This option generates a run-time error and rolls back all
successful changes if any of the records affected are locked and
can't be updated or deleted.

In earlier versions of the Microsoft Jet Database Engine, SQL
statements were automatically embedded in implicit transactions.
If part of a statement executed with dbFailOnError failed, the
entire statement would be rolled back. To improve performance,
these implicit transactions were removed starting with version
3.5. If you are updating older DAO code, be sure to consider using
explicit transactions around Execute statements.
</quote>
That's pretty ambiguous. It seems to imply that the updates won't be
posted, but it happens in some magical way not involving an implicit
transaction.

Gad, I've got a lot of code to review.

Obviously, it's time to write a replacement for db.Execute.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Sep 22 '07 #17

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

Similar topics

3
by: Clive Moss | last post by:
Anyone able to help? I want to update a specified number of records that match a criteria. If I use an update query it alters all the records that match - I need to alter only a variable number....
5
by: deko | last post by:
How to run action query against linked table? I have an Access 2003 mdb with an Excel 2003 Workbook as a linked table. When I attempt to run an action query against the linked table I get this...
5
by: Brandon Mackie | last post by:
I am incredibly new to access and trying to learn as I go. I have set up a few queries one of which is executed by a docmd.runsql in visual basic. Because it is an update query it asks for...
6
by: Marlene | last post by:
Hi All I have the following scenario, where I have found all the duplicates in a table, based on an order number and a part number (item).I might have something like this: Order PODate Rec...
7
by: rednexgfx_k | last post by:
All, Problem Summary: I've running about 30 make table queries via VBA in Access 2000, and my database goes from 14,000k to over 2,000,000k. In addition, the longer the procedure runs, the...
3
by: Nathan Bloomfield | last post by:
Hi there, I am having difficulty with a piece of code which would work wonders for my application if only the error trapping worked properly. Basically, it works as follows: - adds records...
2
by: HydroPnik | last post by:
Hello all. Access 2003/Windows XP. I have set up a command button where three queries are run. The first and last queries are select and the second is an update. I only want to display the...
1
by: Starke | last post by:
I have some code written and it works fine, except the lines that update the form text box. I want to update the text box to let the user know what qry is executing. If I take out the ...
4
by: Mike D | last post by:
OS: Windows XP Professional Microsoft Access 2003 I am trying to update a table in my DB from a tempory table. I need to ensure that if records in the main table match records in the temp...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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...
0
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
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,...

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.