Security is no problem, I am the DBA here so am dbo on everything. It is
more of an experience thing. Are you saying I need to set up the connection
within a stored proc, rather than have it show up as a visual icon on the
table screen within adp? If so, I sure could use an example, as I have not
done that sort of connection.
Am I getting this confused with linked servers? If so, how would the adp
project know about the tables from that Oracle link?
Sorry for all the questions.
I never used a linked table from ADP, so I cannot tell you what appareance
it will take. However, when I right-click on the database window inside the
Access 2003 Project, I clearly see the "Link tables..." option; so I don't
know why you don't see it. I also see in the File --> Get External Data
menu.
However, even if this option in the Access 2003 ADP File menu or context
menu, the linked table process will be done on the SQL-Server, with the same
result as if you had make a call to the sp_addlinkedserver procedure on the
SQL-Server. This process will not take place on the ADP file. Furthermore,
from ADP, you cannot make a connection to the Oracle server and use it
locally in your VBA code because ADP cannot connect directly to an Oracle
server (or to any other ODBC link); only SQL-Server can.
Your ODBC or OLEDB informations must also be set up on the SQL-Server
machine, not on your local machine.
See
http://www.microsoft.com/sql/techinfo/tips/administration/addingoracle.asp
for more information on setting a linked Oracle server on SQL-Server.

Signature
Sylvain Lafontaine, ing.
MVP - Technologies Virtual-PC
> Security is no problem, I am the DBA here so am dbo on everything. It is
> more of an experience thing. Are you saying I need to set up the
[quoted text clipped - 8 lines]
>
> Sorry for all the questions.