# RDBMS

Doltgres can be used as a Relational Database Management System or RDBMS. Doltgres ships with [a\
Postgres compatible server](/concepts/rdbms/server.md) built in, accessed via the `doltgres`\
command.

Doltgres supports [backups](/concepts/rdbms/backups.md). There are two options for backups:[remotes](/concepts/git/remotes.md) or [backups](/concepts/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() function](/reference/version-control/dolt-sql-functions.md#doltbackup).

Doltgres leverages Git-style [remotes](/concepts/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.doltgres.com/concepts/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.
