core-jgi/db/ddlutils
teo_sarca 85901de374 BF [ 1689825 ] Views with casts are not working [oracle]
http://sourceforge.net/tracker/index.php?func=detail&aid=1689825&group_id=176962&atid=879332
2007-03-31 09:58:52 +00:00
..
data BugFix http://sourceforge.net/tracker/index.php?func=detail&aid=1644616&group_id=176962&atid=879332 2007-03-06 20:39:51 +00:00
fyracle
model * [ 1685581 ] the foreign keys create via ddlutils is incorrect 2007-03-21 23:56:13 +00:00
oracle BF [ 1689825 ] Views with casts are not working [oracle] 2007-03-31 09:58:52 +00:00
postgresql BF [ 1674906 ] RV_Storage - ORA-01476: divisor is equal to zero 2007-03-07 08:06:31 +00:00
sequences
adempiere-data.xml
readme.txt

readme.txt

XML File
* model/*.xml
- Adempiere database schema
* data/*.xml
- Adempiere seed data

Datatype difference between Oracle and PostgreSQL
* ID Field map to Integer in postgreSQL and Number(10) in Oracle.
* Integer field map to Integer in postgreSQL, Number(10) in Oracle
  ( Oracle's Integer datatype map to number(38) which is not standard)
* PostgreSQL have no native support for CLOB and BLOB, BYTEA is use instead.
* Timestamp field map to Timestamp in PostgreSQL, DATE in Oracle.
* String field map to varchar in PostgreSQL, nvarchar2 in Oracle

Issue
* Fyracle script need to be tested by someone with access to the developer kit.
* XML model and data file to be separated by table to ease maintenance.

Note
* Integer instead of BigInt will be use as datatype for ID field to maintain compatibility
with existing schema.
* The script for Oracle create plsql functions instead of sqlj functions to support Oracle XE. 
* The script is not compatible with the original ddlutils library.