
Ultimate access to all questions.
The stakeholders.customers table contains 15 columns and 3,000 rows. The following command is executed:
CREATE OR REPLACE VIEW stakeholders.eur_customers AS
SELECT *
FROM stakeholders.customers
WHERE region = 'EU';
CREATE OR REPLACE VIEW stakeholders.eur_customers AS
SELECT *
FROM stakeholders.customers
WHERE region = 'EU';
After running SELECT * FROM stakeholders.eur_customers, 15 rows are returned. After the command completes, the user logs out of Databricks. Upon logging back in two days later, what is the status of the stakeholders.eur_customers view?_

A
The view remains available and SELECT * FROM stakeholders.eur_customers will execute correctly.*_
B
The view has been dropped.
C
The view is not available in the metastore, but the underlying data can be accessed with SELECT * FROM delta. stakeholders.eur_customers.*_
D
The view remains available but attempting to SELECT from it results in an empty result set because data in views are automatically deleted after logging out.
E
The view has been converted into a table.