I am trying to import an Oracle table,
believe it is version 8.1, into MS Access 2000.
What I want to do is let the user import this table
at anytime by clicking a button. I do not what to
make it more complex to them than that.
Any suggestions?
If the system isn't up then how will they have access to the table to import it?
You could link to the table and then run a make table query to import it to the current database.
Something like this would work.
strsql="SELECT YourTableName.* INTO NewTableName FROM YourTable;"
docmd.runsql strsql
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.