I am having data in parquet format in ADLS gen2. I want to implement dalta layers in my project. So I kept all the data from on-prem in ADLS Gen2 via ADF in a separate container called landing zone.
Now i created a separated container called Bronze where I want to keep delta table. For this I have did like below. I have created a database in databricks. And I have created a delta table in data bricks using below SQL code.
create table if not exists externaltables.actv_snap_view(
id String,
mbr_id String,
typ_id String,
strt_dttm String,
otcome_typ_id String,
cdc String
)
using delta
location '/mnt/Storage/Bronze/actv_snap_view'
Now my table is not having any data.
- How can I add data which is in data lake landing zone into delta table which I created.
- My database is in databricks after data is added to the table where will be the underlined data will be stored.
your adls locationyour adls location should be enclosed within backticks