Lists all storage credentials, optionally filtered by a LIKE pattern.
SHOW STORAGE CREDENTIALS [LIKE '<pattern>']
## Overview SHOW STORAGE CREDENTIALS returns a row per registered credential. The result shows metadata only; secret material is never returned. ## Output Columns include the credential name, type, owner (if set), comment, and creation/update timestamps. Sensitive option values such as keys, secrets, or tokens are not part of the output. ## Access Control Requires the admin role. ## Compatibility DeltaForge extension.
| Name | Type | Description |
|---|---|---|
pattern | Optional LIKE pattern. SQL wildcards `%` and `_` are honored. Match is case-insensitive. |
SHOW STORAGE CREDENTIALS;
SHOW STORAGE CREDENTIALS LIKE 'prod_%';