SHOW ORGANIZATION ACCOUNTS¶
Lists the organization account of the organization.
Important
Previously, this command was used to list all accounts in the organization, but has been repurposed to list the organization account. If you want to list all accounts in the organization, use SHOW ACCOUNTS.
Syntax¶
SHOW ORGANIZATION ACCOUNTS [ LIKE '<pattern>' ]
Parameters¶
LIKE 'pattern'
Optionally filters the command output by object name. The filter uses case-insensitive pattern matching, with support for SQL wildcard characters (
%
and_
).For example, the following patterns return the same results:
... LIKE '%testing%' ...
... LIKE '%TESTING%' ...
. Default: No value (no filtering is applied to the output).
Usage notes¶
Only users with the GLOBALORGADMIN role can run this command, which means it can only be run from the organization account.
Output¶
The command output provides global account properties and metadata in the following columns:
Column |
Description |
---|---|
|
Name of the organization. |
|
User-defined name that identifies an account within the organization. |
|
Region group where the account is located. Note: This column is only displayed for organizations that span multiple region groups. |
|
Snowflake Region where the account is located. A Snowflake Region is a distinct location within a cloud platform region that is isolated from other Snowflake Regions. A Snowflake Region can be either multi-tenant or single-tenant (for a Virtual Private Snowflake account). |
|
Snowflake Edition of the account. |
|
Preferred Snowflake account URL that includes the values of organization_name and account_name. |
|
Date and time when the account was created. |
|
Comment for the account. |
|
System-assigned identifier of the acccount. |
|
Legacy Snowflake account URL syntax that includes the region_name and account_locator. |
|
Indicates how many managed accounts have been created by the account. |
|
Name of the consumption billing entity. |
|
Name of the marketplace consumer billing entity. |
|
Name of the marketplace provider billing entity. |
|
If the original account URL was saved when the account was renamed, provides the original URL. If the original account URL was dropped, the value is NULL even if the account was renamed. |
|
Indicates whether the ORGADMIN role is enabled in an account. If TRUE, the role is enabled. |
|
If the original account URL was saved when the account was renamed, provides the date and time when the original account URL was saved. |
|
If the original account URL was saved when the account was renamed, indicates the last time the account was accessed using the original URL. |
|
If the account’s organization was changed in a way that created a new account URL and the original account URL was saved, provides the original account URL. If the original account URL was dropped, the value is NULL even if the organization changed. |
|
If the account’s organization was changed in a way that created a new account URL and the original account URL was saved, provides the date and time when the original account URL was saved. |
|
If the account’s organization was changed in a way that created a new account URL and the original account URL was saved, indicates the last time the account was accessed using the original account URL. |
|
Indicates whether an account is an events account. For more information, see Configure logging and event tracing for an app. |
Examples¶
Show information about the organization account:
SHOW ORGANIZATION ACCOUNTS;