I
I
ince2019-04-23 09:59:19
Oracle
ince, 2019-04-23 09:59:19

How to transfer a table from Oracle to MS Access?

How to transfer a table from Oracle to MS Access?
More interested in structure than data.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Smithson, 2019-04-23
@ince

In general, the question is from the series "how to transfer from a car to a scooter", but ...
An ODBC driver is needed. Put it on the win where access. The access help describes how to connect to ms sql and oracle. Connect.

Dim wrkODBC As Workspace
Dim Dbs As Database
Dim Rs As Recordset

Set wrkODBC = CreateWorkspace('', 'Login', '', dbUseODBC)
Set Dbs = wrkODBC.OpenConnection('', , , 'ODBC;UID=Login;PWD=PasswordSN=OracleDSN')
strSQL = 'SELECT .... '
Set Rs = Dbs.OpenRecordset(strSQL, dbOpenDynaset)

Further request drag the data from oracle in object access. I won’t give the code here, I myself have never done such horror, I can screw it up.

D
d-stream, 2019-04-23
@d-stream

Does the table have more than 1000 fields? If not, then it will take less than 15 minutes by hand.

K
Konstantin Tsvetkov, 2019-04-23
@tsklab

Import a table from another database .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question