Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Accessing MS Access tables from Oracle ?
Rastko wrote:
>
> Thanks to all.
> I agree that's very bad idea to link an mdb file to Oracle
> but the people are still using the mdb applications and I need this for
> one very special case.
>
> Generic Connectivity is included also in 8i.
Access makes a nice front end / report writer for Oracle.
Sounds like a possible solution (temporarily) is to transfer the appropriate Access tables to Oracle for whatever task you need to perform.
You can do this from Access. Create a matching table structure in Oracle and link to it from Access and copy the records forward.
In Access:
DoCmd.TransferDatabase acLink, "ODBC Database", _
"ODBC;DRIVER={Microsoft ODBC for Oracle};SERVER=ORA8;UID=SCOTT;PWD=TIGER;", _ acTable, "oracleTable", "accessTable"
-- '------------------------------- ' John Mishefske '-------------------------------Received on Sun Mar 17 2002 - 19:03:24 CST
![]() |
![]() |