Importing access data from an OBDC data source

G

Guest

I need to import data from an OBDC data source. The table from which the
data is taken is very large (many columns). The import fails because the
record is to big. How can I restrict the import to the columns that I need?
 
G

Guest

Try using a SQL statement to limit the amount of data being queried into the
recordset (example SELECT columnlist
FROM tablename
[WHERE condition(s)];
w3schools.com may have a list of SQL statements
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top