SHOW USERS

Lists users in the catalog, optionally filtered by a LIKE pattern.

Category: securityPrivilege: ManageUsersDeltaForge extension

Syntax

SHOW USERS [LIKE '<pattern>']

Description

## Overview SHOW USERS returns a row per user. The result includes the user's name, default role, disabled flag, and creation timestamp. ## Output | Column | Description | |--------|-------------| | name | User name | | default_role | Default role activated at sign-in | | disabled | Whether the user is disabled | | created_at | ISO 8601 timestamp | ## Access Control Requires the `ManageUsers` privilege. ## Compatibility DeltaForge extension.

Parameters

NameTypeDescription
patternOptional LIKE pattern. SQL wildcards `%` and `_` are honored.

Examples

SHOW USERS;
SHOW USERS LIKE 'a%';

See Also

Open in interactive docs →   DeltaForge home →