> ## 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.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/information-schema/account_info",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> 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":"github-light","dark":"github-dark"}}
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":"github-light","dark":"github-dark"}}
name TEXT,value TEXT,data_type TEXT

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