I'm trying to write a pass through query (first time) using access 2003.
I need to store the ODBC password within my query so when it run my autoexec macro it does not prompt for a password.
I'm having two issues:
#1 - my pass through query is referring referring to a table per below but it is giving me an ODBC error.
#2 - I don't know the language of how to store the password. (In some cases, I have two passwords for two different systems that I am grabbing data from)
HELP!
Thanks!
Table Name - LENOX_VIEW_BRANDS_SHIP_REC
I want all fields from this table to be dumped into this table - Shippingdetail
This is my sql: (that is not working)
SELECT LENOX_VIEW_BRANDS_SHIP_REC.* INTO Shippingdetail
FROM LENOX_VIEW_BRANDS_SHIP_REC;
I need to store the ODBC password within my query so when it run my autoexec macro it does not prompt for a password.
I'm having two issues:
#1 - my pass through query is referring referring to a table per below but it is giving me an ODBC error.
#2 - I don't know the language of how to store the password. (In some cases, I have two passwords for two different systems that I am grabbing data from)
HELP!
Thanks!
Table Name - LENOX_VIEW_BRANDS_SHIP_REC
I want all fields from this table to be dumped into this table - Shippingdetail
This is my sql: (that is not working)
SELECT LENOX_VIEW_BRANDS_SHIP_REC.* INTO Shippingdetail
FROM LENOX_VIEW_BRANDS_SHIP_REC;