Friday, 17 February 2023

POSTGRSQL - DROP TRIGGERS

SELECT 

'DROP TRIGGER abc.' || trigger_name || ' ON ' || event_object_table || ';'

FROM information_schema.triggers

WHERE trigger_schema = 'abc';

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 ...