You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sql<-SqlRender::render("IF OBJECT_ID('@scratchDatabaseSchema@schemaDelim@scratchTable', 'U') IS NOT NULL DROP TABLE @scratchDatabaseSchema@schemaDelim@scratchTable;",
I just ran ACHILLES on Snowflake in single-threaded mode and it failed to drop the scratch tables with this sort of error for every scratch table: 2024-12-19 07:13:39 [Main thread] ERROR Achilles 3 Drop Achilles Scratch Table -- ERROR ([1m[33mError[39m in .createErrorReport():[22m [33m![39m Error executing SQL: net.snowflake.client.jdbc.SnowflakeSQLException: Cannot perform DROP. This session does not have a current schema. Call 'USE SCHEMA', or use a qualified name.
Indeed, I can see in the linked code above and the SQL error report that the tempDatabaseSchema is not being appended (after scratchDatabaseSchema is hardcoded to "#"): DROP TABLE IF EXISTS lxw8zrjfs_tmpach_dist_2106
I have not experienced this issue when running in multi-threaded mode. I'm on v1.7.2 of ACHILLES.
The text was updated successfully, but these errors were encountered:
Achilles/R/Achilles.R
Lines 796 to 803 in 247b86d
Achilles/R/Achilles.R
Lines 826 to 830 in 247b86d
I just ran ACHILLES on Snowflake in single-threaded mode and it failed to drop the scratch tables with this sort of error for every scratch table:
2024-12-19 07:13:39 [Main thread] ERROR Achilles 3 Drop Achilles Scratch Table -- ERROR ([1m[33mError[39m in
.createErrorReport():[22m [33m![39m Error executing SQL: net.snowflake.client.jdbc.SnowflakeSQLException: Cannot perform DROP. This session does not have a current schema. Call 'USE SCHEMA', or use a qualified name.
Indeed, I can see in the linked code above and the SQL error report that the tempDatabaseSchema is not being appended (after scratchDatabaseSchema is hardcoded to "#"):
DROP TABLE IF EXISTS lxw8zrjfs_tmpach_dist_2106
I have not experienced this issue when running in multi-threaded mode. I'm on v1.7.2 of ACHILLES.
The text was updated successfully, but these errors were encountered: