DBConvert reads the Oracle schema you select through the
configured Oracle client. Client, NLS, and authentication
issues should be solved before the export run.
Access files are capped at 2 GB. Filter large Oracle tables,
export only the reporting subset, or split the output before
the target file becomes too large.
Oracle numbers, Unicode text, LOB columns, binary payloads,
dates, timestamps, and XML values need Access-compatible
storage decisions before the file is written.
Oracle schemas and quoted identifiers do not map one-to-one to
an Access file. Review names, primary keys, and relationships
before users open the exported database.
Compare row counts, inspect nullable columns, sample CLOB/BLOB
values, and verify date/time precision in the Access file
before distributing it.
DBConvert migrates tables, supported views, and foreign keys.
Oracle packages, procedures, triggers, jobs, users, and
application SQL are not rewritten into Access objects.
Type mapping checkpoints
Oracle source type
Access target type
Migration note
NUMBER(p,s)
Number, Decimal, Currency
Review precision and scale before reporting calculations rely on the file.
VARCHAR2, NVARCHAR2
Short Text / Long Text
Long values may need Access Long Text storage.
CLOB, NCLOB
Long Text
Sample large text rows after export.
BLOB, RAW
OLE Object / binary storage policy
Access is not always a good long-term store for large binary payloads.
DATE, TIMESTAMP
Date/Time
Confirm timezone and fractional-second expectations.
CHAR(1) flags, numeric booleans
Yes/No or Number policy
Pick the representation expected by Access forms and reports.
PL/SQL objects and Oracle security - out of scope
DBConvert's migration covers tables (with their fields, types, defaults, and indexes),
views, and foreign keys. PL/SQL packages, procedures, triggers, Oracle security, and
application workflows stay in the source - Access has no server-side execution layer, so
that logic is reimplemented as Access queries and VBA, or left running against Oracle.