Replies: 1 comment
-
I have vague memories about some settings in DLT which makes it to use schema object suffixes instead of creating new schemas. Something like: Creating too many disposable schemas causes a lot of mess. Snowflake permission model is fundamentally not good for this. Alternatively, you may create database with As far as I know, mixing it together is not possible in Snowflake due to the way how OWNERSHIP and FUTURE GRANTS work. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We experiment with data ingestion using dlt with SCD2 strategy.
Using that strategy dlt creates extra schemas in target database like
<target_schema>_staging
and<target_schema>_20250731023950
.We want the database to have permission model with
schema_owner
rule set because we want to ingest data from different instances into the same DB but different schemas.The problem is that dlt user has no permissions to create schemas in the database.
I thought about using technical role like
But I'm not sure if it will work.
Beta Was this translation helpful? Give feedback.
All reactions