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

# Data Sources overview

> Manage database connections that supply data to Reporter, with reusable connection profiles for every report you generate.

Data Sources are connections to external databases that the Reporter uses to fetch the data needed for report generation. In this section, you'll learn how to manage Data Sources via the [Lerian Console](/en/platform/lerian-console/about-lerian-console).

## What is a Data Source?

***

A Data Source represents a configured connection between the Reporter and a database. To generate reports, the Reporter needs to access data stored in your environment's databases — and Data Sources are the mechanism to configure and manage those connections.

Each Data Source includes:

* **Connection name** — a human-readable identifier for easy management.
* **Database type** — the database engine being used (PostgreSQL, MySQL, MongoDB, Oracle, or SQL Server).
* **Access configuration** — host, port, database name, credentials, and optionally SSL configuration.
* **Schemas** — for databases that support schemas (PostgreSQL, Oracle, SQL Server), you can specify which schemas to access.
* **Metadata** — additional key-value fields for organization.

## Supported databases

***

| Database   | Default port | Schema support |
| ---------- | :----------: | :------------: |
| PostgreSQL |     5432     |        ✅       |
| MySQL      |     3306     |        ❌       |
| MongoDB    |     27017    |        ❌       |
| Oracle     |     1521     |        ✅       |
| SQL Server |     1433     |        ✅       |

## Accessing the Data Sources page

***

To open the **Data Sources** page, click **Data Sources** from the left-side menu on the **Reporter** page.

The page displays all configured connections, each in a card showing:

* Connection name and database type.
* Connection status (**Connected**, **Disconnected**, or **Connecting**).
* Configured schemas (if any).
* Latency from the last check.
* Host, database, and user details.

You can expand each card to view the database schema, including available tables and columns.

### Available actions

From the Data Sources page, you can:

<Columns cols={2}>
  <Card title="Add a Data Source" icon="plus" horizontal href="/en/platform/lerian-console/reporter-console/adding-a-data-source" />

  <Card title="Edit a Data Source" icon="pen" horizontal href="/en/platform/lerian-console/reporter-console/editing-a-data-source" />

  <Card title="Test connection" icon="plug" horizontal href="/en/platform/lerian-console/reporter-console/testing-a-data-source" />

  <Card title="Delete a Data Source" icon="trash" horizontal href="/en/platform/lerian-console/reporter-console/deleting-a-data-source" />
</Columns>
