Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime 11.3 LTS and above
Unity Catalog only
Drops a Delta Sharing provider. An exception is thrown if the provider does not exist in the system.
To execute this statement you must own the provider or be metastore administrator.
DROP PROVIDER [ IF EXISTS ] provider_name
IF EXISTS
If specified, no exception is thrown when the recipient does not exist.
-
The name of an existing provider in the system. If the name does not exist, an exception is thrown.
-- Drop the provider
> DROP PROVIDER other_corp;
-- Drop the provider using IF EXISTS.
> DROP PROVIDER IF EXISTS other_corp;