From 679ec1935d9a1dc7d017dc4a80c0eb03db21bc7d Mon Sep 17 00:00:00 2001 From: Meng Li <34143965+Meng6@users.noreply.github.com> Date: Tue, 31 Mar 2020 14:00:12 -0400 Subject: [PATCH] Add "table XXX doesn't exist" error to faq.rst --- docs/usage/faq.rst | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/usage/faq.rst b/docs/usage/faq.rst index 03a4ca98..7bf9df2d 100644 --- a/docs/usage/faq.rst +++ b/docs/usage/faq.rst @@ -41,9 +41,21 @@ This is expected behavior. The advantage of using ``snakemake`` under the hood i **Error:** :: - SyntaxError in line 19 of /Users/caomz/rapids/Snakefile: + SyntaxError in line 19 of /Users/rapids/Snakefile: Unexpected keyword expand in rule definition (Snakefile, line 19) **Solution:** Please make sure there are no extra whitespaces in Snakefile. + +5. Got an error like "Table XXX doesn't exist" while running the download_dataset rule. +--------------------------------------------------------------------------------------- +:: + + Error in .local(conn, statement, ...) : + could not run statement: Table 'db_name.table_name' doesn't exist + Calls: colnames ... .local -> dbSendQuery -> dbSendQuery -> .local -> .Call + Execution halted + +**Solution:** +Please make sure your database do have table with the same name of SENSORS list in config.yaml file.