[JBoss JIRA] (TEIIDDES-2733) Add the ability to associate different colors to different object types
by Van Halbert (JIRA)
Van Halbert created TEIIDDES-2733:
-------------------------------------
Summary: Add the ability to associate different colors to different object types
Key: TEIIDDES-2733
URL: https://issues.jboss.org/browse/TEIIDDES-2733
Project: Teiid Designer
Issue Type: Feature Request
Components: Diagrams
Affects Versions: 9.0.3
Reporter: Van Halbert
Add the ability to associate different colors to different object types (e.g., table, data source, etc.).
This would be beneficial when the dependency analysis is done to visualize based on the colors.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (TEIIDDES-2728) Connection to remote DV server doesn't work
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2728?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2728:
-----------------------------------
Fix Version/s: 9.0.4
9.2.1
10.1
> Connection to remote DV server doesn't work
> -------------------------------------------
>
> Key: TEIIDDES-2728
> URL: https://issues.jboss.org/browse/TEIIDDES-2728
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 9.0.4
> Environment: MAC OS X
> Reporter: Matus Makovy
> Priority: Blocker
> Fix For: 9.0.4, 9.2.1, 10.1
>
> Attachments: Screen Shot 2015-11-16 at 16.40.27.png
>
>
> I am not able to connect to remote DV server.
> I get this exception:
> ava.lang.IllegalArgumentException: admin
> at org.teiid.core.util.ArgCheck.isNotNull(ArgCheck.java:302)
> at org.teiid.runtime.client.admin.ExecutionAdmin.<init>(ExecutionAdmin.java:124)
> at org.teiid.runtime.client.admin.ExecutionAdminFactory.createExecutionAdmin(ExecutionAdminFactory.java:53)
> at org.teiid.designer.runtime.registry.TeiidRuntimeRegistry.getExecutionAdmin(TeiidRuntimeRegistry.java:90)
> at org.teiid.designer.runtime.TeiidServer.connect(TeiidServer.java:224)
> at org.teiid.designer.runtime.TeiidServer.reconnect(TeiidServer.java:274)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.tryConnecting(TeiidParentServerListener.java:242)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.run(TeiidParentServerListener.java:184)
> at java.lang.Thread.run(Thread.java:745)
> Discovered this issue on MAC OS with build TD 9.0.4.Final-v20151111... . I'll try to test this on Fedora.
> This worked without problems with previous build.
> Since this doesn't have a workaround I am marking it as a blocker.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (TEIIDDES-2728) Connection to remote DV server doesn't work
by Andrej Šmigala (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2728?page=com.atlassian.jira.plu... ]
Andrej Šmigala commented on TEIIDDES-2728:
------------------------------------------
[~blafond] we also noticed that when we define a remote server and set the JDBC password on the Teiid Instance tab, the password disappears after saving. This does not happen with a local server, neither does it happen in CR2 with remote server. Could this hint at the underlying issue? It looks like the server config is not saved/loaded.
> Connection to remote DV server doesn't work
> -------------------------------------------
>
> Key: TEIIDDES-2728
> URL: https://issues.jboss.org/browse/TEIIDDES-2728
> Project: Teiid Designer
> Issue Type: Bug
> Affects Versions: 9.0.4
> Environment: MAC OS X
> Reporter: Matus Makovy
> Priority: Blocker
> Attachments: Screen Shot 2015-11-16 at 16.40.27.png
>
>
> I am not able to connect to remote DV server.
> I get this exception:
> ava.lang.IllegalArgumentException: admin
> at org.teiid.core.util.ArgCheck.isNotNull(ArgCheck.java:302)
> at org.teiid.runtime.client.admin.ExecutionAdmin.<init>(ExecutionAdmin.java:124)
> at org.teiid.runtime.client.admin.ExecutionAdminFactory.createExecutionAdmin(ExecutionAdminFactory.java:53)
> at org.teiid.designer.runtime.registry.TeiidRuntimeRegistry.getExecutionAdmin(TeiidRuntimeRegistry.java:90)
> at org.teiid.designer.runtime.TeiidServer.connect(TeiidServer.java:224)
> at org.teiid.designer.runtime.TeiidServer.reconnect(TeiidServer.java:274)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.tryConnecting(TeiidParentServerListener.java:242)
> at org.teiid.designer.runtime.TeiidParentServerListener$1.run(TeiidParentServerListener.java:184)
> at java.lang.Thread.run(Thread.java:745)
> Discovered this issue on MAC OS with build TD 9.0.4.Final-v20151111... . I'll try to test this on Fedora.
> This worked without problems with previous build.
> Since this doesn't have a workaround I am marking it as a blocker.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (TEIIDDES-2732) Issues with Dynamic VDB to Models - FOREIGN KEY REFERENCING MULTIPLE COLUMNS
by Debbie Steigner (JIRA)
Debbie Steigner created TEIIDDES-2732:
-----------------------------------------
Summary: Issues with Dynamic VDB to Models - FOREIGN KEY REFERENCING MULTIPLE COLUMNS
Key: TEIIDDES-2732
URL: https://issues.jboss.org/browse/TEIIDDES-2732
Project: Teiid Designer
Issue Type: Bug
Components: Import/Export
Affects Versions: 9.2
Reporter: Debbie Steigner
Attachments: TestcaseforImport.zip
AFTER IMPORTING FROM XML INTO TEIID: FOREIGN KEY REFERENCING MULTIPLE COLUMNS POINTS TO WRONG COLUMNS IN SOURCE MODEL
Test case : Foreign key relation on Unique constraints, spanning two columns: CatalogItem(CatalogSecondID, CatalogThirdID) Catalog(SecondID, ThirdID)
XML INPUT fragment for Source model, table CatalogItem:
CONSTRAINT FKI_CATALOG_ID FOREIGN KEY(CatalogID) REFERENCES Catalog(ID),
CONSTRAINT FKI_SECOND_THIRD_ID FOREIGN KEY(CatalogSecondID, CatalogThirdID) REFERENCES Catalog(SecondID, ThirdID)
Expected in Teiid:
CatalogItem(CatalogSecondID, CatalogThirdID) Catalog(SecondID, ThirdID)
Actual:
CatalogItem(CatalogSecondID, CatalogThirdID) Catalog(ID)
3. AFTER IMPORTING FROM XML INTO TEIID: FOREIGN KEY REFERENCING MULTIPLE COLUMNS IS MISSING IN VIEW MODEL.
Test case : Foreign key relation on Unique constraints, spanning two columns: CatalogItem(CatalogSecondID, CatalogThirdID) Catalog(SecondID, ThirdID)
XML INPUT fragment for View model, table CatalogItem:
CONSTRAINT FKI_CATALOG_ID FOREIGN KEY(CatalogID) REFERENCES Catalog(ID),
CONSTRAINT FKI_SECOND_THIRD_ID FOREIGN KEY(CatalogSecondID, CatalogThirdID) REFERENCES Catalog(SecondID, ThirdID)
Expected in Teiid:
CatalogItem(CatalogSecondID, CatalogThirdID) Catalog(SecondID, ThirdID)
Actual:
Not Foreign key reference at all.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (TEIIDDES-2731) VDB exported to Dynamic VDB XML, the foreign key relations have erroneous references in the resulting SQL.
by Debbie Steigner (JIRA)
Debbie Steigner created TEIIDDES-2731:
-----------------------------------------
Summary: VDB exported to Dynamic VDB XML, the foreign key relations have erroneous references in the resulting SQL.
Key: TEIIDDES-2731
URL: https://issues.jboss.org/browse/TEIIDDES-2731
Project: Teiid Designer
Issue Type: Bug
Components: Import/Export
Affects Versions: 9.2
Reporter: Debbie Steigner
Attachments: TestcaseforExport.zip
Model:
• Catalog (ID, SecondID, ThirdID). Primary key: (ID). Unique constraint: (SecondID, ThirdID)
• CatalogItem(ID,CatalogID, CatalogSecondID, CatalogThirdID)
Foreign key relation on Unique constraints, spanning two columns: CatalogItem(CatalogSecondID, CatalogThirdID) Catalog(SecondID, ThirdID)
Expected in metadata DLL for CatalogItem:
CONSTRAINT FKI_SECOND_THIRD_ID FOREIGN KEY(CatalogSecondID, CatalogThirdID) REFERENCES Catalog(SecondID, ThirdID)
Actual:
CONSTRAINT FKI_SECOND_THIRD_ID FOREIGN KEY(CatalogSecondID, CatalogThirdID) REFERENCES Catalog(ID)
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (TEIIDDES-2730) Teiid DDL sequencer doesn't support GLOBAL or LOCAL TEMP TABLE options
by Barry LaFond (JIRA)
Barry LaFond created TEIIDDES-2730:
--------------------------------------
Summary: Teiid DDL sequencer doesn't support GLOBAL or LOCAL TEMP TABLE options
Key: TEIIDDES-2730
URL: https://issues.jboss.org/browse/TEIIDDES-2730
Project: Teiid Designer
Issue Type: Bug
Components: Import/Export, Patch Release
Reporter: Barry LaFond
Assignee: Barry LaFond
Fix For: 9.2.1
Trying to import the following DDL into a View model (see: TEIIDDES-1794) the resulting Table has the Global Temp Table value set to *false*.
I don't think the TeiidDdlImporter is handling these particular cases.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months
[JBoss JIRA] (TEIIDDES-2610) Add some default values to importer properties in Teiid Connection Importer
by Barry LaFond (JIRA)
[ https://issues.jboss.org/browse/TEIIDDES-2610?page=com.atlassian.jira.plu... ]
Barry LaFond updated TEIIDDES-2610:
-----------------------------------
Component/s: Patch Release
> Add some default values to importer properties in Teiid Connection Importer
> ---------------------------------------------------------------------------
>
> Key: TEIIDDES-2610
> URL: https://issues.jboss.org/browse/TEIIDDES-2610
> Project: Teiid Designer
> Issue Type: Enhancement
> Components: Import/Export, Patch Release
> Affects Versions: 9.1
> Reporter: Barry LaFond
> Assignee: Barry LaFond
> Fix For: 9.2.1
>
> Attachments: SelectTranslatorPage.patch, TeiidPropertyDefinition.patch
>
>
> Importing JDBC sources via Teiid Connection importer can be streamlined by providing/setting certain default import property values.
> 2 such properties are:
> *Table Types* > *TABLE*
> *use Qualified Name* > *false*
> This will help in the most common use-case to reduce the number of steps to importer and improve the experience of first-time users.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 11 months