Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What is dbt and why do we use it?
dbt stands for data build tool. It helps transform raw data into clean, organized data models using simple SQL. We use it to make data analysis easier and more reliable.
Click to reveal answer
beginner
What command installs dbt using pip?
You install dbt by running pip install dbt-core or for specific adapters like Postgres, pip install dbt-postgres.
Click to reveal answer
beginner
What does the command dbt init my_project do?
It creates a new folder called my_project with all the files and folders needed to start a dbt project.
Click to reveal answer
intermediate
Why do you need to configure the profiles.yml file in dbt?
The profiles.yml file tells dbt how to connect to your database by providing details like username, password, host, and database name.
Click to reveal answer
beginner
What is the purpose of the models folder in a dbt project?
The models folder holds SQL files where you write your data transformation logic. dbt runs these to build tables or views in your database.
Click to reveal answer
Which command initializes a new dbt project?
Adbt start project
Bdbt init my_project
Cdbt create project
Ddbt new
✗ Incorrect
The correct command to start a new dbt project is dbt init my_project.
What file must you edit to connect dbt to your database?
Aprofiles.yml
Bdbt_project.yml
Cconnection.sql
Dsettings.json
✗ Incorrect
The profiles.yml file contains database connection details for dbt.
Which Python package installs the core dbt functionality?
Adbt-sql
Bdbt-utils
Cdbt-core
Ddbt-runner
✗ Incorrect
The package dbt-core installs the main dbt tool.
Where do you write SQL models in a dbt project?
Ascripts folder
Bdata folder
Csql folder
Dmodels folder
✗ Incorrect
SQL models are placed inside the models folder.
What does dbt primarily help you do?
ABuild and run data transformations
BStore raw data
CVisualize data
DCreate dashboards
✗ Incorrect
dbt helps build and run data transformations using SQL.
Explain the steps to install and initialize a new dbt project from scratch.
Think about commands and configuration files needed.
You got /4 concepts.
Describe the role of the profiles.yml file in a dbt project.
It is about connecting dbt to your data source.
You got /4 concepts.
Practice
(1/5)
1. What is the main purpose of running dbt init when starting a new dbt project?
easy
A. To create a new project folder with starter files and configurations
B. To install dbt on your computer
C. To run all data transformations immediately
D. To connect dbt to a database automatically
Solution
Step 1: Understand the role of dbt init
This command sets up a new project by creating folders and starter files needed to organize your work.
Step 2: Differentiate from other commands
Installing dbt is done separately, and running transformations or connecting to databases require other steps.
Final Answer:
To create a new project folder with starter files and configurations -> Option A
Quick Check:
dbt init creates project structure = D [OK]
Hint: Remember: init means start a new project folder [OK]
Common Mistakes:
Confusing installation with initialization
Thinking dbt init runs transformations
Assuming it connects to databases automatically
2. Which command correctly installs dbt using pip in your terminal?
easy
A. install dbt pip
B. dbt install
C. pip dbt install
D. pip install dbt
Solution
Step 1: Recall pip installation syntax
The correct syntax to install a Python package is pip install package_name.
Step 2: Match the command to dbt
So, to install dbt, the command is pip install dbt.
Final Answer:
pip install dbt -> Option D
Quick Check:
pip install dbt = A [OK]
Hint: pip install + package name installs it [OK]
Common Mistakes:
Swapping command order like 'dbt install'
Using invalid syntax like 'pip dbt install'
Omitting 'install' keyword
3. After running dbt init my_project, which folder will be created in your current directory?
medium
A. A folder named dbt with all installed packages
B. A folder named models only
C. A folder named my_project with starter files
D. No folder is created, only files in current directory
Solution
Step 1: Understand dbt init with project name
When you run dbt init my_project, dbt creates a new folder named my_project in your current directory.
Step 2: Contents of the folder
This folder contains starter files and subfolders like models to organize your project.
Final Answer:
A folder named my_project with starter files -> Option C
Quick Check:
dbt init my_project creates my_project folder = B [OK]
Hint: Project name becomes folder name after init [OK]
Common Mistakes:
Expecting a generic 'dbt' folder
Thinking only models folder is created
Assuming files appear without a folder
4. You ran dbt init but got an error saying 'command not found'. What is the most likely cause?
medium
A. dbt is not installed or not added to your system PATH
B. You forgot to create a project folder first
C. You need to run dbt start instead
D. Your database connection is missing
Solution
Step 1: Understand 'command not found' error
This error means the system cannot find the dbt command, usually because dbt is not installed or not in the PATH.
Step 2: Check other options
Creating a project folder or database connection is unrelated to this error, and dbt start is not a valid command.
Final Answer:
dbt is not installed or not added to your system PATH -> Option A
Quick Check:
'command not found' means missing install or PATH = C [OK]
Hint: Command not found means dbt missing or PATH issue [OK]
Common Mistakes:
Assuming project folder must exist before init
Thinking dbt start is a valid command
Blaming database connection for command errors
5. You want to start a new dbt project named sales_analysis inside a folder projects. Which sequence of commands correctly installs dbt, creates the project in the right place, and verifies the project folder?
hard
A. dbt init sales_analysis; pip install dbt; cd projects; ls sales_analysis
B. pip install dbt; cd projects; dbt init sales_analysis; ls sales_analysis
C. cd projects; dbt init sales_analysis; pip install dbt; ls sales_analysis
D. pip install dbt; dbt init sales_analysis; cd projects; ls sales_analysis
Solution
Step 1: Install dbt first
You must install dbt before running any dbt commands, so pip install dbt comes first.
Step 2: Navigate to the target folder and initialize project
Change directory to projects with cd projects, then run dbt init sales_analysis to create the project folder inside projects.
Step 3: Verify the project folder
Use ls sales_analysis to check the new folder and its contents.
Final Answer:
pip install dbt; cd projects; dbt init sales_analysis; ls sales_analysis -> Option B
Quick Check:
Install -> cd folder -> init project -> list folder = A [OK]
Hint: Install first, then cd, then init project, then check folder [OK]