* Some documentation for the ddlutils script

This commit is contained in:
Heng Sin Low 2006-12-17 16:20:53 +00:00
parent 7c8eb551ae
commit 665f4a8f08
4 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,4 @@
1. Installed ant
2. Update build.properties and jdbc.properties.fyracle to suit your environment
3. 'ant create' to create the adempiere seed database for fyracle.

View File

@ -0,0 +1,4 @@
1. Installed ant
2. Update build.properties and jdbc.properties.oracle to suit your environment
3. 'ant create' to create the adempiere seed database for oracle.

View File

@ -0,0 +1,4 @@
1. Installed ant
2. Update build.properties and jdbc.properties.postgresql to suit your environment
3. 'ant create' to create the adempiere seed database for postgresql.

17
db/ddlutils/readme.txt Normal file
View File

@ -0,0 +1,17 @@
1. adempiere-model.xml
- DB independent adempiere schema
2. adempiere-data.jar
- DB independent adempiere seed data
Changes from existing schema
* Use SQL standard varchar instead of Oracle proprietary nvarchar datatype.
* Use Integer datatype for _ID field instead of Number(10)
Issue
* Global Temporary Table is different between Oracle and PostgreSQL
* Integer datatype size is different between Oracle and Postgresql
- 4 byte in PostgreSQL, Number(38) in Oracle
* Fyracle script need to be tested by someone with access to the developer kit.
* Integer datatype for primary key is too small in Java(sqlj) and PostgreSQL
- 32 bit signed, probably should use bigint in PostgreSQL and long in Java (sqlj)