Ad
Unrecognised Argument Error When Trying To Run Dbt With No Version Check
I am new to dbt and I am trying to run dbt freshness test but I seem to be getting errors.
the below code has been working successfully
dbt run --no-version-check
But when I try to run this
dbt source freshness --no-version-check
I get the following error
usage: dbt [-h] [--version] [-r RECORD_TIMING_INFO] [-d] [--log-format {text,json,default}] [--no-write-json]
[--use-colors | --no-use-colors] [--printer-width PRINTER_WIDTH] [--warn-error] [--no-version-check]
[--partial-parse | --no-partial-parse] [--use-experimental-parser] [--no-static-parser]
[--profiles-dir PROFILES_DIR] [--no-anonymous-usage-stats] [-x] [--event-buffer-size EVENT_BUFFER_SIZE]
{docs,source,init,clean,debug,deps,list,ls,build,snapshot,run,compile,parse,test,seed,run-operation}
...
dbt: error: unrecognized arguments: --no-version-check
Ad
Answer
Try
dbt --no-version-check source freshness
Ad
source: stackoverflow.com
Related Questions
- → Do item lookup /mapping in underscore template
- → Can't Find File Created By OUTFILE
- → Do I have to use mysql_real_escape_string if I bind parameters?
- → Change href of modal based on button click
- → How to replace an exact word match in Python
- → Failed Laravel dependency injection in controller method
- → Replacing String with Apostrophe in MySQL When running a find and replace query
- → is setInterval slowing down my site
- → vue code can't send value to my parameter.what's wrong?
- → TYPO3 9 LTS type casting error on mysql time field for TCA type input / dbType time saving empty field
- → I can not send the text to firebase when Button is click with redux
- → How to select min and max in laravel
- → Android Studio Sqllite autoincrement reset
Ad