I cannot find the account in organization usage but the account is already created and enabled orgadmin
when i select the query, select * from snowflake.organization_usage.accounts where account = ‘xxxx’; results 0.
when i check the accounts under admin, account is visible.
Use ACCOUNT_NAME column in the filter
https://docs.snowflake.com/en/sql-reference/organization-usage/accounts#columns
select * from snowflake.organization_usage.accounts where ACCOUNT_NAME = 'XXXX';
or
select * from snowflake.organization_usage.accounts where ACCOUNT_NAME ilike 'XXXX%';
1