[
https://jira.jboss.org/browse/TEIIDDES-721?page=com.atlassian.jira.plugin...
]
Van Halbert commented on TEIIDDES-721:
--------------------------------------
some Postgres differences from MySQL:
Differences:
1. Creating primary key:
example:
postres: POLICYUID NUMERIC(10) NOT NULL CONSTRAINT PK_AUTHPOLICIES UNIQUE
where: PK_AUTHPOLICIES is a user assigned name
mysql: POLICYUID NUMERIC(10) NOT NULL PRIMARY KEY
2. Foreign key reference
example:
postgres: POLICYUID NUMERIC(10) NOT NULL CONSTRAINT FK_ATHPLCY_PLCYUID
REFERENCES AUTHPOLICIES (POLICYUID) ,
where: FK_ATHPLCY_PLCYUID is a user assigned name
mysql: POLICYUID NUMERIC(10) NOT NULL REFERENCES AUTHPOLICIES (POLICYUID) ,
3. Setting a default
example:
posgres: MULTI_SOURCED CHAR(1) DEFAULT ('0') NULL,
mysql: MULTI_SOURCED CHAR(1) DEFAULT '0',
But depending on everything that the xslt is trying to support, there are probably
others.
See:
http://www.postgresql.org/docs/current/interactive/sql-createtable.html
Several supported databases missing in Teiid designer export menu
------------------------------------------------------------------
Key: TEIIDDES-721
URL:
https://jira.jboss.org/browse/TEIIDDES-721
Project: Teiid Designer
Issue Type: Bug
Components: Import/Export
Affects Versions: 7.1
Reporter: Boris Belovic
Priority: Blocker
With external materialization user / customer generates DDL files for creating
materialized tables. These files contain SQL statements which will create tables with all
necessary columns. Teiid designer misses support for several DB engines, which are
supported with SOA-P 5.1. This causes that appropriate DDL files can't be generated
for these databases.
Missing databases are:
PostgreSQL 8.2 and 8.3
DB2 - 9.7
Oracle 10g and Oracle 11g
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira