Wednesday, 18 January 2023

CRONTAB

 To edit the crontab

    crontab -e


To view the crontab

    crontab -l


After change, for save

    ctrl+c, :wq!


After change, not to save (wrongly given, back to original)

    ctrl+c, :q!

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