What model configurations exist?
You can also configure:
- tags to support easy categorization and graph selection
- custom schemas to split your models across multiple schemas
- aliases if your viewA view (as opposed to a table) is a defined passthrough SQL query that can be run against a database (or data warehouse)./tableIn simplest terms, a table is the direct storage of data in rows and columns. Think excel sheet with raw values in each of the cells. name should differ from the filename
- Snippets of SQL to run at the start or end of a model, known as hooks
- Warehouse-specific configurations for performance (e.g.
sort
anddist
keys on Redshift,partitions
on BigQuery)
Check out the docs on model configurations to learn more.
0