ALTER STORAGE CREDENTIAL

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

Renames a storage credential.

Syntax

ALTER STORAGE CREDENTIAL credential_name
  { RENAME TO to_credential_name |
    [ SET ] OWNER TO principal }

Parameters

  • credential_name

    Identifies the storage credential being altered.

  • RENAME TO to_credential_name

    Renames the credential a new name. The name must be unique among all credentials in the metastore.

  • [ SET ] OWNER TO principal

    Transfers ownership of the storage credential to principal.

    Applies to: check marked yes Databricks SQL SQL warehouse version 2022.35 or higher check marked yes Databricks Runtime 11.2 and above

    SET is allowed as an optional keyword.

Examples

> ALTER STORAGE CREDENTIAL street_cred RENAME TO good_cred;

> ALTER STORAGE CREDENTIAL street_cred OWNER TO `alf@melmak.et`