- 7563 Views
- 7 replies
- 5 kudos
Hi All,I'm working on a databricks delta live table(DLT) pipe line where we receive daily fully sanshot csv files in azure cloud storage .These files contain HR data (eg.employee file) and i'm using autoloader to ingest them into bronze layer DLT tab...
- 7563 Views
- 7 replies
- 5 kudos
Latest Reply
Hi @Ranga_naik1180,
There is no need to create an intermediate view in SQL. You can directly read the change data feed from silver into the gold table. You can use the code something like below:
CREATE STREAMING LIVE TABLE gold_table
AS SELECT *
FRO...
6 More Replies
by
oneill
• New Contributor II
- 976 Views
- 3 replies
- 0 kudos
Hello,Let say we have an empty table S that represents the schema we want to keepABCDEWe have another table T partionned by column A with a schema that depends on the file we have load into. Say :ABCF1b1c1f12b2c2f2Now to make T having the same schema...
- 976 Views
- 3 replies
- 0 kudos
Latest Reply
Hi, thanks for the reply. I've already looked at the documentation on this point, which actually states that dynamic overwrite doesn't work with schema overwrite, while the instructions described above seem to indicate the opposite.
2 More Replies