* Some documentation for the ddlutils script
This commit is contained in:
parent
7c8eb551ae
commit
665f4a8f08
|
@ -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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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.
|
||||
|
|
@ -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)
|
Loading…
Reference in New Issue