General EXTERNAL table like Oracle doesn't allow Insert/Update operation. But Databricks EXTERNAL Delta Table enables Update/Insert operation. This way I can see a flaw, or is there anyway to stop that? Example -
CREATE TABLE employee
USING DELTA
LOCATION '/mnt/ADLS/employee'
PARTITIONED BY (date)
This will create an External table of employee
loading data from /mnt/ADLS/employee
. Now if I again create another External table say employee_new
and do an INSERT
it will get reflected to actual employee
table. Is there anyway to stop this?