Re: Mapping Oracle types to PostgreSQL types - Mailing list pgsql-hackers

From Shridhar Daithankar
Subject Re: Mapping Oracle types to PostgreSQL types
Date
Msg-id 3F8FF11A.2040602@persistent.co.in
Whole thread Raw
In response to Mapping Oracle types to PostgreSQL types  (Jean-Michel POURE <jm@poure.com>)
Responses Re: Mapping Oracle types to PostgreSQL types
List pgsql-hackers
Jean-Michel POURE wrote:

> Dear friends,
> 
> I would like to port Compiere CRM from Oracle to PostgreSQL (and release it 
> for free).
> 
> At first I would like to convert the data schema. This is not difficult as 
> Compiere is written using portable types like NUMBER (i,d) which can be 
> replaced by NUMERIC (i,d), etc... A series of Search/Replace is sufficiant. 
> There are other solutions in Contrib to connect to Oracle and export the data 
> (Bruce). Don't blame me to search in another (silly) direction...

Rather than declaring numeric, create them as integer/float of appropriate size 
and add appropriate constraints. Numeric can be slower for large data load w.r.t 
native integers.

> 
> The point here is that I would like to use the CREATE TYPE or CREATE DOMAIN 
> syntax to map Oracle types to PostgreSQL types. Therefore I can say "Guys, 
> Oracle is now mostly compatible with PostreSQL".

You can create some sql scripts which can natively migrate from oracle to 
postgresql. Contrib could host them or gborg.

So what postgresql would say is, create a database and run the scripts and many 
of the oracle migration gotchas will be automatically taken care of.

Including such features in core postgresql is rather hard sell to postgresql 
developers. Especially when there is a rather simple workaround.
 HTH
 Shridhar



pgsql-hackers by date:

Previous
From: Shridhar Daithankar
Date:
Subject: Re: Some thoughts about i/o priorities and throttling vacuum
Next
From: Andreas Pflug
Date:
Subject: Re: Mapping Oracle types to PostgreSQL types