How do I run AS400 query through access

G

Guest

I am trying to set up an automation process to have my queries on AS400 to
run automatically on the date selected. I was told it can be done but no one
in my area knows how.

Deb
 
R

Ron Hinds

Well the first step is to link the tables in your AS/400 database to Access.
You do this by creating a DSN (Data Source Name) in the ODBC Administrator
in Control Panel (if you are using Windows 2000 or later then it is under
Administrator Tools in Control Panel). To do this you qill need ODBC drivers
for the AS/400 database (is it DB2?). Next you'll want to setup the Task
Scheduler to automatically run Access on the schedule you want.

"C:\Program Files\Microsoft Office\Office\msaccess.exe"
"path_and_filename_of_your_mdb_or_mde"

Next, in the Open event of your main form, run your SQL statements

Private Sub Form_Open(Cancel As Integer)
'Run your SQL - add as many statements as necessary
CurrentDb.Execute "sql_statement_or_query_goes_here"
...
'Now quit Access
Application.Quit acQuitSaveNone
End Sub
 

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