Complete the code to define a seed file in dbt.
version: 2 [1]: countries: path: data/countries.csv
The seeds key is used to define seed files in dbt's schema.yml.
Complete the code to load a seed file in dbt.
dbt [1] --select countriesThe dbt seed command loads CSV files defined as seeds into the data warehouse.
Fix the error in the seed configuration to disable header loading.
seeds:
my_project:
countries:
[1]: falseThe correct config key to disable header loading in dbt seeds is header.
Fill all three blanks to create a dictionary comprehension filtering countries with names longer than 5 letters.
filtered = {country: data[country] [1] [2] len(country) [3] 5}The dictionary comprehension syntax is: {key: value for key in iterable if condition}.
Fill all three blanks to create a seed config that sets file path, header usage, and delimiter.
seeds:
my_project:
countries:
[1]: data/countries.csv
[2]: true
[3]: ','Seed config keys include path for file location, header to specify if the first row is header, and delimiter for the CSV separator.