SHOW ORGANIZATION PROFILESΒΆ
Lists the organization profiles for which you have access privileges.
- See also:
ALTER ORGANIZATION PROFILE, CREATE ORGANIZATION PROFILE, DESCRIBE AVAILABLE ORGANIZATION PROFILE, DESCRIBE ORGANIZATION PROFILE, DROP ORGANIZATION PROFILE, SHOW AVAILABLE ORGANIZATION PROFILES, SHOW VERSIONS IN ORGANIZATION PROFILE
SyntaxΒΆ
SHOW ORGANIZATION PROFILES
OutputΒΆ
The output of the command includes the following columns, which describe the properties and metadata of the object:
Column |
Description |
---|---|
|
The date and time when the organization profile was created. |
|
The organization profile name. |
|
Indicates the organization profile is system generated and canβt be dropped. One of |
|
The organization profile state. One of ACTIVE or DRAFT. |
|
The name of the organization associated with the organization profile. |
|
The title of the organization profile. |
|
The description of the organization profile. |
|
The contact email of the owner of the organization profile. |
|
The contact email of the access approver of the organization profile. |
|
The owner role of the organization profile. |
Access control requirementsΒΆ
A role used to execute this SQL command must have either of the following privileges at a minimum:
Privilege |
Object |
Notes |
---|---|---|
OWNERSHIP or MODIFY or a privileged role, such as ACCOUNTADMIN or SECURITYADMIN |
Organization profile |
To create a custom role with a specified set of privileges, see Creating custom roles.
For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.
ExamplesΒΆ
The following example lists the organization profiles that you have privileges to access:
SHOW ORGANIZATION PROFILES;
+-------------------------+-----------------+---------------------+---------------------+---------------------+---------------------------+----------------------------------+---------------------+---------------------+---------------------+
|created_on |name |system_generated |state |organization_name |title |description |owner_contact |approver_contact |owner |
+-------------------------+-----------------+---------------------+---------------------+---------------------+---------------------------+----------------------------------+---------------------+---------------------+---------------------+
| 2025-01-01 01:01:01.000 |ORGPROFILE |FALSE |ACTIVE |TESTORG |My Organization Profile |Organization profile description |test@test.com |test@test.com |ACCOUNTADMIN |
+-------------------------+-----------------+---------------------+---------------------+---------------------+---------------------------+----------------------------------+---------------------+---------------------+---------------------+