# RDBMS

Dolt can be used as a Relational Database Management System or RDBMS. Dolt ships with [a MySQL compatible server](/concepts/dolt/rdbms/server.md) built in, accessed via the [`dolt sql-server` command](/cli-reference/cli.md#dolt-sql-server).

Dolt supports [backups](/concepts/dolt/rdbms/backups.md). There are two options for backups: [remotes](/concepts/dolt/git/remotes.md) or [backups](/concepts/dolt/rdbms/backups.md). Pushing to a remote only backs up committed changes. Using `dolt backup` backs up uncommitted changes as well. Backups are accessed via the [`dolt backup` command](/cli-reference/cli.md#dolt-backup) or [dolt\_backup() procedure](/sql-reference/version-control/dolt-sql-procedures.md#doltbackup).

Dolt leverages Git-style [remotes](/concepts/dolt/git/remotes.md) to facilitate replication. The master and replicas configure the same remote. On the master, you configure "push on write" and on the replicas you configure "pull on read".


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.dolthub.com/concepts/dolt/rdbms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
