A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Running & Setting Up Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Append ODBC tables into Access Table



 
 
Thread Tools Display Modes
  #1  
Old December 29th, 2009, 03:41 PM posted to microsoft.public.access.queries
Ross
external usenet poster
 
Posts: 297
Default Append ODBC tables into Access Table

To All,
I am ODBC connected to a Teradata table having about 10 fields and 300,000
records.

I want to append these records into my Access table and am having speed
problems, not being able to get this append under 4 minutes.

When I used a passthru query with an Access Append query on top of it, I got
the best, 4 min performance, but I would like to get this under 60 secs if
possible.

My question is, in general, what is the fastest way to load access tables
with data from a non-Access external database source?


Thank you



  #2  
Old December 29th, 2009, 04:23 PM posted to microsoft.public.access.queries
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Append ODBC tables into Access Table

I think you might have the best solution short of possibly using SSIS in SQL
Server. I would try remove all constraints and indexes from the target table
to see if that makes a difference.

--
Duane Hookom
Microsoft Access MVP


"Ross" wrote:

To All,
I am ODBC connected to a Teradata table having about 10 fields and 300,000
records.

I want to append these records into my Access table and am having speed
problems, not being able to get this append under 4 minutes.

When I used a passthru query with an Access Append query on top of it, I got
the best, 4 min performance, but I would like to get this under 60 secs if
possible.

My question is, in general, what is the fastest way to load access tables
with data from a non-Access external database source?


Thank you



  #3  
Old December 29th, 2009, 04:32 PM posted to microsoft.public.access.queries
Jeff Boyce
external usenet poster
 
Posts: 8,621
Default Append ODBC tables into Access Table

Ross

Your 'given' is that the data has to be downloaded to your Access table (and
appended).

Why?

What will having a copy of the Teradata table in Access allow you to do that
you couldn't do if you simply connected to the Teradata table?

I ask in case the need you are trying to solve this way may also be solved
some other way...

Good luck!

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Ross" wrote in message
...
To All,
I am ODBC connected to a Teradata table having about 10 fields and 300,000
records.

I want to append these records into my Access table and am having speed
problems, not being able to get this append under 4 minutes.

When I used a passthru query with an Access Append query on top of it, I
got
the best, 4 min performance, but I would like to get this under 60 secs if
possible.

My question is, in general, what is the fastest way to load access tables
with data from a non-Access external database source?


Thank you





  #4  
Old December 29th, 2009, 04:43 PM posted to microsoft.public.access.queries
Ross
external usenet poster
 
Posts: 297
Default Append ODBC tables into Access Table

Duane,
No Luck with indexes and restraints. Performance was approximately the same.

Ross

"Duane Hookom" wrote:

I think you might have the best solution short of possibly using SSIS in SQL
Server. I would try remove all constraints and indexes from the target table
to see if that makes a difference.

--
Duane Hookom
Microsoft Access MVP


"Ross" wrote:

To All,
I am ODBC connected to a Teradata table having about 10 fields and 300,000
records.

I want to append these records into my Access table and am having speed
problems, not being able to get this append under 4 minutes.

When I used a passthru query with an Access Append query on top of it, I got
the best, 4 min performance, but I would like to get this under 60 secs if
possible.

My question is, in general, what is the fastest way to load access tables
with data from a non-Access external database source?


Thank you



  #5  
Old December 29th, 2009, 05:48 PM posted to microsoft.public.access.queries
Ross
external usenet poster
 
Posts: 297
Default Append ODBC tables into Access Table

Jeff,

I Need to have this data in an access table mainly for performance purposes.
The table in question will be used for many lookups by multiple users, all
day. The ODBC connection is tooooo doggy, particularly if the Access Db is
on put out on the network.

You are right and I agree, I would prefer not to bring it in but feel that I
have too.

Thank you

Ross



"Jeff Boyce" wrote:

Ross

Your 'given' is that the data has to be downloaded to your Access table (and
appended).

Why?

What will having a copy of the Teradata table in Access allow you to do that
you couldn't do if you simply connected to the Teradata table?

I ask in case the need you are trying to solve this way may also be solved
some other way...

Good luck!

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Ross" wrote in message
...
To All,
I am ODBC connected to a Teradata table having about 10 fields and 300,000
records.

I want to append these records into my Access table and am having speed
problems, not being able to get this append under 4 minutes.

When I used a passthru query with an Access Append query on top of it, I
got
the best, 4 min performance, but I would like to get this under 60 secs if
possible.

My question is, in general, what is the fastest way to load access tables
with data from a non-Access external database source?


Thank you





.

  #6  
Old December 29th, 2009, 08:25 PM posted to microsoft.public.access.queries
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Append ODBC tables into Access Table

I recently had to perform something similar and it took too long. I added a
last updated field to the SQL table so I could filter out records that hadn't
been added or changed.

--
Duane Hookom
Microsoft Access MVP


"Ross" wrote:

Jeff,

I Need to have this data in an access table mainly for performance purposes.
The table in question will be used for many lookups by multiple users, all
day. The ODBC connection is tooooo doggy, particularly if the Access Db is
on put out on the network.

You are right and I agree, I would prefer not to bring it in but feel that I
have too.

Thank you

Ross



"Jeff Boyce" wrote:

Ross

Your 'given' is that the data has to be downloaded to your Access table (and
appended).

Why?

What will having a copy of the Teradata table in Access allow you to do that
you couldn't do if you simply connected to the Teradata table?

I ask in case the need you are trying to solve this way may also be solved
some other way...

Good luck!

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Ross" wrote in message
...
To All,
I am ODBC connected to a Teradata table having about 10 fields and 300,000
records.

I want to append these records into my Access table and am having speed
problems, not being able to get this append under 4 minutes.

When I used a passthru query with an Access Append query on top of it, I
got
the best, 4 min performance, but I would like to get this under 60 secs if
possible.

My question is, in general, what is the fastest way to load access tables
with data from a non-Access external database source?


Thank you





.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:46 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.