diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-06-23 02:56:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-06-23 02:56:23 +0000 |
commit | 2e2d17ed51a478dce46400cd23dfa0889c57b592 (patch) | |
tree | 69e12810997f3d0142376c0d7b3f3e4b70f8a535 /contrib/oracle/TODO | |
parent | a0c12d5e905fdea19cf529af4f2d76e74412abc8 (diff) |
Here the latest version and first working release of Ora2Pg a tool to export
Oracle database to PostgreSQL.
It currently dump the database schema (tables, views, sequences,
indexes, grants), with primary, unique and foreign keys into PostgreSQL
syntax without editing the SQL code generated. You can dump only a
particular schema from the Oracle database.
Functions, procedures and triggers with SQL or PLSQL code generated must
be reviewed to match the PostgreSQL syntax. Some usefull recommandation
on porting Oracle to PostgreSQL can be found at
http://techdocs.postgresql.org/
under the "Converting from other Databases to PostgreSQL" Oracle part. I
just
notice one thing more is that the trunc() function in Oracle is the same for
number
or date so be carefull when porting to PostgreSQL to use trunc() for number
and
date_trunc() for date.
I will add more precision in type NUMBER conversion based on length to match
as closest as possible all rich PostgreSQL numerics type. But it seems not to be
urgent as it seems that Oracle DBAs only create number with length 22 (default)
Space seems not to be their problem...
Gilles DAROLD
Diffstat (limited to 'contrib/oracle/TODO')
-rw-r--r-- | contrib/oracle/TODO | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/contrib/oracle/TODO b/contrib/oracle/TODO index 3aae0f1cf1a..8f9455aa22d 100644 --- a/contrib/oracle/TODO +++ b/contrib/oracle/TODO @@ -1,6 +1,13 @@ -- Extract sequences on tables. Seem to be difficult, can't find the way to link - a sequence with one or more column. So problably just dump and edit manually -- More precision in type conversion based on length (I've no good DB to do that) -- Extract triggers and internal function. -- Extract datas. -- SQL queries converter. +Here are some more thing to do : + + - More precision in type conversion based on length + (I've no good DB to do that) + +This will be done as soon as possible + +The following need your help : + + - Extracting/converting datas. + - SQL queries converter. + - PL/SQL code converter. + |