- 12559 Views
- 1 replies
- 0 kudos
On the Data tab in the workspace I have the "Create Table" button which gives me the option to upload a local file as a data source. Can I upload an Excel file here? Not sure what kind of files work for this.
- 12559 Views
- 1 replies
- 0 kudos
Latest Reply
Currently the file types supported there are CSV, JSON and Avro. You could, however upload the excel file to the dbfs path under FileStore and write code in a notebook to parse it and persist it to a table
- 3623 Views
- 1 replies
- 0 kudos
Basically wondering what happens to the clone when updates are made to the original Delta table. Will the changes apply to the cloned table as well?
- 3623 Views
- 1 replies
- 0 kudos
Latest Reply
The clone is not a replica and so updates made to the original delta table wouldn't be applies to the clone. However, shallow clones reference data files in the source directory. If you run vacuum on the source table, clients will no longer be able t...