Wednesday, 18 January 2023

List views in postgresql

SELECT 

table_name 

FROM INFORMATION_SCHEMA.views 

WHERE 

table_schema = ANY (current_schemas(false)) 

ORDER BY 1

DBT - Models

Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...