Skip to main content

SHOW PROVIDERS

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime 11.3 LTS and above check marked yes Unity Catalog only

Lists the Delta Sharing providers that match an optionally supplied regular expression pattern. If no pattern is supplied, then the command lists all the providers visible to you.

To see a provider, you must either be the owner or a metastore administrator.

Syntax

SHOW PROVIDERS [ [ LIKE ] regex_pattern ]

Parameters

  • regex_pattern

    A regular expression pattern that is used to filter the results of the statement.

    • Except for * and | character, the pattern works like a regular expression.
    • * alone matches 0 or more characters and | is used to separate multiple different regular expressions, any of which can match.
    • The leading and trailing blanks are trimmed in the input pattern before processing. The pattern match is case-insensitive.

Examples

SQL
> SHOW PROVIDERS;
name created_at created_by authentication_type comment
----------- ---------------------------- -------------------------- ------------------- ---------
other_org 2022-01-01T00:00:00.000+0000 alwaysworks@databricks.com DATABRICKS other.org
better_corp 2022-01-01T00:00:01.000+0000 alwaysworks@databricks.com DATABRICKS better.com
some_pov 2022-05-03T12:13:14.000+0000 neverworks@databricks.com TOKEN better.com

> SHOW PROVIDERS LIKE 'other_org';
name created_at created_by authentication_type comment
----------- ---------------------------- -------------------------- ------------------- ---------
other_org 2022-01-01T00:00:00.000+0000 alwaysworks@databricks.com DATABRICKS other.org