Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2021 04:37 PM
Hi Jay,
I would suggest to start with creating managed delta table. please run a simple command
CREATE TABLE events(id long) USING DELTA
This will create a managed delta table called "events"
Then perform
%sql describe extended events
The above command will show "location", where the data will be stored. This will be going to a default DBFS location.
This will give you an idea on how to create managed delta table and will tell you where the data is stored.
Thanks
Mathan