1 Reply Latest reply on Jan 15, 2014 11:02 AM by shawkins

    Materialized Views problem

    rakeshsagar

      Hi all,

       

      I have a materialized view which we have created in Teiid8.1 and when I try to use the same materialized view in Teiid 8.5 I get an error related to constraint.

       

      The sample view that was working in Teiid 8.1 is:

      CREATE VIEW MAT_TESTVIEW (

        column1 integer,

        column2 integer

        constraint index(column1), index(column1)

        ) OPTIONS (MATERIALIZED 'true') AS /*+ cache(ttl:30000) */

        SELECT column1, column2   FROM table

       

      If I change the view to include the constraint name it works fine.

       

      Is there a way by which we can run the same materialized view in Teiid 8.5 without providing the constraint name?