> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

> Use this reference to learn about account-level settings and flags available through the information schema.

# Account info

You can use the `information_schema.account_info` view to return information about
account-level settings and flags (for example, `ALLOW_AMAZON_BEDROCK`).

You can use a `SELECT` query to return all settings, as shown below.

```sql theme={"theme":{"light":"css-variables","dark":"css-variables"}}
SELECT
  *
FROM
  information_schema.account_info
ORDER BY
  name;
```

<Note>
  For general account metadata (such as account name, region, and owner), see [information\_schema.accounts](/reference-sql/information-schema/accounts).
</Note>

## Columns in information\_schema.account\_info

Each row has the following columns with information about an account setting.

| Column Name | Data Type | Description                                                  |
| :---------- | :-------- | :----------------------------------------------------------- |
| name        | TEXT      | The setting name.                                            |
| value       | TEXT      | The current value serialized as text.                        |
| data\_type  | TEXT      | The data type of the setting value (for example, `BOOLEAN`). |

### Sample results

```text theme={"theme":{"light":"css-variables","dark":"css-variables"}}
name TEXT,value TEXT,data_type TEXT

'ALLOW_AMAZON_BEDROCK','true','BOOLEAN'
'ALLOW_DATABRICKS_AI','true','BOOLEAN'
```
