Closed natej-eb closed 7 months ago
@natej-eb , I tested it locally using Jaffle shop project. Please see the following screenshot. I tried the same steps you mentioned, and I can see that the tables are dropped from logs folder. I did dbt seed & dbt seed --full-refresh
with and without following in dbt_project.yml file.
seeds: jaffle_shop: +full_refresh: true
Screenshot of dbt logs from jaffle_shop project.
@natej-eb , I could not repro this error. Could you please repro and let me know?
When using the
dbt seed --full-refresh
command or having+full_refresh: true
indbt_project.yml
, the seed table doesn't get dropped first throwing this error:[Microsoft][ODBC Driver 18 for SQL Server][SQL Server]There is already an object named '<seed_name>' in the database.
Thecreate table
command tries to run when the table already exists.