Be Good. Do Good.
SELECT
*
FROM
information_schema.triggers
WHERE
trigger_schema = 'abc'
CONCAT('DROP TRIGGER IF EXISTS ',trigger_name,' ON ',trigger_schema,'.',event_object_table,';') AS sql
Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...