โ06-24-2021 08:16 AM
I need to delete from a temp view in databricks, but it looks like i can do only merge, select and insert. Maybe i missed something but I did not find any documentation on this.
โ09-02-2021 01:01 PM
You cant delete data from a view, but you can create or replace temp view with the same name with the data you want deleted filtered out.
For example, if you have a view myview, that you want to delete the record with id=2, do the following:
CREATE OR REPLACE TEMP VIEW myview
as
select * from myview where id = 2;
โ09-09-2021 06:46 AM
Franco is right, in case you use an ordinary parquet file underneath.
With Delta Lake it is possible to delete data. So basically the data you read (and want to delete from) has to come from Delta lake. Then you can create a view on it and use the DELETE command.
โ09-09-2021 10:05 AM
You can't delete a temp view because it's only a view.
โ09-09-2021 11:50 AM
This is incorrect, see reply below.
If you meant, dropping a temp view does NOT delete the underlying data.
Then that statement is correct.
โ09-09-2021 11:48 AM
A temp view is a pointer.
The information for a temp view is stored in the spark catalog
You can drop a temp view with
spark.catalog.dropTempView("view_name")
You could also drop a temp view in a sql cell with
DROP TABLE "temp_view_name"
Here is some code to demonstrate
df = spark.sql("select 1 id") # creates a dataframe
df.createOrReplaceTempView("temp_test") # registers it as a temp view
spark.catalog.listTables() # Shows all tables including temp views
spark.catalog.dropTempView("temp_test") # drops the temp view
Note that the dataframe still exists, display(df) to verify. The tempview is merely a pointer to the dataframe.
If you are using sql the sample code would look something like this.
CREATE TEMPORARY VIEW temp_test as select 1; --Creates the view
Drop table temp_test; --drops the view
โ08-22-2022 12:33 AM
What about
%sql
DROP TABLE IF EXISTS xxxxx
Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโt want to miss the chance to attend and share knowledge.
If there isnโt a group near you, start one and help create a community that brings people together.
Request a New Group