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
I think in many cases users only have one writable schema tied to their users. To get this to work in my case I removed cdm_measurement_aux schema and replaced with {scratch_schema}. I then added the scratch_schema to the config file:
scratch_schema = `my_user_name`
Then when formatting the sql file I add this variable. I think this is more in line with situations where users can't create their own schemas but have a fixed one they can write to.
The text was updated successfully, but these errors were encountered:
The commit above places all measurement-related tables that are created within the schema specified by measurement_aux_schema in config.py. I think it should work the same way as the scratch_schema you specified.
I think in many cases users only have one writable schema tied to their users. To get this to work in my case I removed
cdm_measurement_aux
schema and replaced with{scratch_schema}
. I then added thescratch_schema
to the config file:scratch_schema = `my_user_name`
Then when formatting the sql file I add this variable. I think this is more in line with situations where users can't create their own schemas but have a fixed one they can write to.
The text was updated successfully, but these errors were encountered: