This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: Configure cardinality for foreign temporary tableshawkins Sep 29, 2015 9:05 AM (in response to gadeyne.bram)Ideally you would use the alter table statement: alter table g1 options (set cardinality 100) But that is currently only for load time DDL - an issue could be logged to make it applicable to runtime as well. Alternatively there is the system procedure setTableStats: call SYSADMIN.setTableStats('fqn', 100) System Procedures - Teiid 8.12 (draft) - Project Documentation Editor 
- 
        2. Re: Configure cardinality for foreign temporary tablegadeyne.bram Nov 30, 2015 11:06 AM (in response to shawkins)Thank you Steven for the reply but I guess this will not work for foreign temporary tables? 
- 
        3. Re: Configure cardinality for foreign temporary tableshawkins Nov 30, 2015 5:34 PM (in response to gadeyne.bram)Yes Bram you are correct, the procedure only works for non-temporary tables. I should have remembered that you can add the cardinality as an option in the create: create foreign temporary table x ... options (cardinality 1000, updatable true) ... 
 
    