LIST USERS

Syntax

{ LIST | SHOW } USERS;

Description

This command provides a list of Users that are part of the current Organization.

Users can only be listed if the current Role has USAGE privileges on the Organization.

Examples

List current User without an Organization

<no-organization># LIST USERS;
+-------------+--------------+-------------+------------------------------------------+------------+
|  Given Name |  Family Name |  Is Current |  Email                                   |  Locale    |
+=============+==============+=============+==========================================+============+
| user1       | fam1         | true        | useremail00b4-0e18-4edd@deltastream.io   | en         |
+-------------+--------------+-------------+------------------------------------------+------------+

List Users in an Organization

<no-organization># USE ORGANIZATION my_org;
<no-db>/<no-store># LIST USERS;
+-------------+--------------+-------------+------------------------------------------+------------+
|  Given Name |  Family Name |  Is Current |  Email                                   |  Locale    |
+=============+==============+=============+==========================================+============+
| user1       | fam1         | true        | useremail00b4-0e18-4edd@deltastream.io   | en         |
+-------------+--------------+-------------+------------------------------------------+------------+
| user2       | fam2         | false       | useremail224b-e672-498d@deltastream.io   | en         |
+-------------+--------------+-------------+------------------------------------------+------------+

Last updated