-
1. Re: error about the vdb.xml
rareddy Jun 22, 2017 7:29 AM (in response to uuliver)1 of 1 people found this helpfulEdit the vdb.xml file and redeploy the file. You have to undeploy the previous one first.
-
2. Re: error about the vdb.xml
uuliver Jun 22, 2017 8:15 AM (in response to rareddy)what means undeploy the previous one first,and how to edit vdb.xml,i can't find error in the file.
-
3. Re: error about the vdb.xml
rareddy Jun 22, 2017 9:09 AM (in response to uuliver)The error is saying that there is an error in your DDL that you defined in the VDB. Then you need to fix that. for complete DDL syntax see [1]. I think you are missing keyword "FOREIGN" in your table definition.
CREATE FOREIGN TABLE A1_GEOL_DESIGN_FILE(
LOGIC_ID VARCHAR2,
DESIGN_ID VARCHAR2,
CREATE_DATE DATE
);
And make sure you have the "A1_GEOL_DESIGN_FILE" in the Oracle database defined.
-
4. Re: error about the vdb.xml
uuliver Jun 22, 2017 9:32 PM (in response to rareddy)my sql is run in oracle is ok,but in teiid has error
is the DDL syntax is common,or is only for teiid
-
5. Re: error about the vdb.xml
rareddy Jun 23, 2017 7:18 AM (in response to uuliver)Teiid DDL is little different from standard DDL, since it deals with multiple stores Teiid uses SQL-MED based DDL with few custom extensions.