Page History
...
Tips for Optimizing i2b2 query speed
Postgres
- Do not use '%' in any concept code. In Postgres, this is known to prevent the database from using indexes.
- In Postgres, consider using table partitioning
MSSQL
- Use clustered columnstore indexes for the fact table.
All platforms
- If your fact table is extremely large, consider splitting it into multiple fact tables.
- ... more to come...