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

# Take Full and Incremental Backups

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

Because CockroachDB is designed with high fault tolerance, backups are primarily needed for <InternalLink path="disaster-recovery-planning">disaster recovery</InternalLink> (i.e., if your cluster loses a majority of its nodes). Isolated issues (such as small-scale node outages) do not require any intervention. However, as an operational best practice, **we recommend taking regular backups of your data**.

There are two main types of backups:

* [Full backups](#full-backups)
* [Incremental backups](#incremental-backups)

You can use the <InternalLink path="backup">`BACKUP`</InternalLink> statement to efficiently back up your cluster's schemas and data to popular cloud services such as AWS S3, Google Cloud Storage, or NFS, and the <InternalLink path="restore">`RESTORE`</InternalLink> statement to efficiently restore schema and data as necessary. For more information, see <InternalLink path="use-cloud-storage">Use Cloud Storage</InternalLink>.

<Danger>
  The `BACKUP ... TO` and `RESTORE ... FROM {storage_uri}` syntax has been removed from CockroachDB v24.3 and later.

  For details on the syntax to run `BACKUP` and `RESTORE`, refer to the  [backup](#examples)  <InternalLink path="backup#examples">backup</InternalLink>  and  [restore](#examples)  <InternalLink path="restore#examples">restore</InternalLink>  examples.
</Danger>

<Tip>
  We recommend using scheduled backups to automate daily backups of your cluster.
</Tip>

## Supported products

The feature described on this page is available in **CockroachDB Basic**, **CockroachDB Standard**, **CockroachDB Advanced**, and **CockroachDB self-hosted** clusters when you are running <InternalLink version="cockroachcloud" path="take-and-restore-self-managed-backups">self-managed backups</InternalLink>. For a full list of features, refer to <InternalLink path="backup-and-restore-overview#backup-and-restore-support">Backup and restore product support</InternalLink>.

## Backup collections

A *backup collection* defines a set of backups and their metadata. The collection can contain multiple full backups and their subsequent [incremental backups](#incremental-backups). The path to a backup is created using a date-based naming scheme and stored at the <InternalLink path="backup">collection URI</InternalLink> passed with the `BACKUP` statement.

There are some specific cases where part of the collection data is stored at a different URI:

* A <InternalLink path="take-and-restore-locality-aware-backups">locality-aware backup</InternalLink>. The backup collection will be stored according to the URIs passed with the `BACKUP` statement: `BACKUP INTO LATEST IN {collectionURI}, {localityURI}, {localityURI}`. Here, the `collectionURI` represents the default locality.
* As of v22.1, it is possible to store incremental backups at a [different URI](#incremental-backups-with-explicitly-specified-destinations) to the related full backup. This means that one or multiple storage locations can hold one backup collection.

By default, full backups are stored at the root of the collection's URI in a date-based path, and incremental backups are stored in the `/incrementals` directory. The following example shows a backup collection created using these default values, where all backups reside in one storage bucket:

```
Collection URI:
|—— 2022
  |—— 02
    |—— 09-155340.13/
      |—— Full backup files
[...]
|—— incrementals
  |—— 2022
  |—— 02
    |—— 25-172907.21/
      |—— 20220325
        |—— 17921.23
          |—— incremental backup files
```

<InternalLink path="show-backup#view-a-list-of-the-available-full-backup-subdirectories">`SHOW BACKUPS IN {collectionURI}`</InternalLink> will display a list of the full backup subdirectories at the collection's URI.

<a id="incremental-location-structure" /> Alternately, the following directories also constitute a backup collection. There are multiple backups in two separate URIs. Each individual backup is a full backup and its related incremental backup(s). Despite using the [`incremental_location`](#incremental-backups-with-explicitly-specified-destinations) option to store the incremental backup in an alternative location, that incremental backup is still part of this backup collection as it depends on the full backup in the first cloud storage bucket:

```
Collection URI
|—— 2022
  |—— 02
    |—— 09-155340.13/
      |—— Full backup files
      |—— 20220210/
        |—— 155530.50/
        |—— 16-143018.72/
          |—— Full backup files
|—— incrementals
  |—— 2022
  |—— 02
    |—— 25-172907.21/
      |—— 20220325
        |—— 17921.23
          |—— incremental backup files
```

```
Explicit Incrementals URI
|—— 2022
  |—— 02
    |—— 25-172907.21/
      |—— 20220325
        |—— 17921.23
          |—— incremental_location backup files
```

In the examples on this page, <code>{'{collectionURI}'}</code> is a placeholder for the storage location that will contain the example backup.

You will encounter an error if you run multiple <InternalLink path="take-full-and-incremental-backups#backup-collections">backup collections</InternalLink> to the same storage URI. Each collection's URI must be unique.

For example, if you have a backup schedule running backups for the database `users` the full backup and incremental backup should have the same storage URI for the full and incremental schedule. (`CREATE SCHEDULE FOR BACKUP` will automatically create two schedules for the full and incremental backup to the same storage URI.) If there is another backup schedule, for the database `accounts`, the full and incremental backups for `accounts` should have the same storage URI. However, the storage URI for the `accounts` backup collection should be different to the storage URI for the `users` backup collection.

## Full backups

Full backups contain an un-replicated copy of your data and can always be used to restore your cluster. These files are roughly the size of your data and require greater resources to produce than incremental backups. You can take full backups as of a given timestamp. Optionally, you can include the available <InternalLink path="take-backups-with-revision-history-and-restore-from-a-point-in-time">revision history</InternalLink> in the backup.

In most cases, **it's recommended to take nightly full backups of your cluster**. A cluster backup allows you to do the following:

* Restore table(s) from the cluster
* Restore database(s) from the cluster
* Restore a full cluster

<InternalLink path="backup#back-up-a-cluster">Full cluster backups</InternalLink> include <InternalLink path="licensing-faqs#set-a-license">Enterprise license keys</InternalLink>. When you <InternalLink path="restore">restore</InternalLink> a full cluster backup that includes Enterprise license, the Enterprise license is also restored.

<Note>
  To set a target for the amount of backup data written to each backup file, use the `bulkio.backup.file_size` <InternalLink path="cluster-settings">cluster setting</InternalLink>.

  See the <InternalLink path="set-cluster-setting">`SET CLUSTER SETTING`</InternalLink> page for more details on using cluster settings.
</Note>

### Take a full backup

To perform a full cluster backup, use the <InternalLink path="backup">`BACKUP`</InternalLink> statement:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
BACKUP INTO '{collectionURI}';
```

To restore a backup, use the <InternalLink path="restore">`RESTORE`</InternalLink> statement, specifying what you want to restore as well as the [collection's](#backup-collections) URI:

* To restore the latest backup of a table:

  ```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
  RESTORE TABLE bank.customers FROM LATEST IN '{collectionURI}';
  ```

* To restore the latest backup of a database:

  ```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
  RESTORE DATABASE bank FROM LATEST IN '{collectionURI}';
  ```

* To restore the latest backup of your full cluster:

  ```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
  RESTORE FROM LATEST IN '{collectionURI}';
  ```

<Note>
  A full cluster restore can only be run on a destination cluster that has **never** had user-created databases or tables.
</Note>

* To restore a backup from a specific subdirectory:

  ```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
  RESTORE DATABASE bank FROM {subdirectory} IN '{collectionURI}';
  ```

To view the available backup subdirectories, use <InternalLink path="show-backup">`SHOW BACKUPS`</InternalLink>.

## Incremental backups

If your cluster grows too large for daily [full backups](#full-backups), you can take less frequent full backups (e.g., weekly) with daily incremental backups. Incremental backups are storage efficient and faster than full backups for larger clusters.

If you are taking backups on a regular cadence, we recommend <InternalLink path="create-schedule-for-backup">creating a schedule</InternalLink> for your backups.

### Recommendations for incremental backup frequency

Incremental backups form chains between full backups. Each incremental backup contains only the data that has changed since a base set of backups. This base set of backups must include one full backup and can include multiple incremental backups, which are typically smaller and faster to run than full backups. You can take incremental backups either as of a given timestamp or with full <InternalLink path="take-backups-with-revision-history-and-restore-from-a-point-in-time">revision history</InternalLink>. Cockroach Labs supports up to 48 incremental backups between full backups. Taking more than 48 incremental backups between full backups increases the risk of performance issues due to the size of the backup chain. The maximum supported frequency for incremental backups is every five minutes.

### Garbage collection and backups

Incremental backups with <InternalLink path="take-backups-with-revision-history-and-restore-from-a-point-in-time#create-a-backup-with-revision-history">revision history</InternalLink> are created by finding what data has been created, deleted, or modified since the timestamp of the last backup in the chain of backups. For the first incremental backup in a chain, this timestamp corresponds to the timestamp of the base [(full) backup](#full-backups). For subsequent incremental backups, this timestamp is the timestamp of the previous incremental backup in the chain.

<InternalLink path="architecture/storage-layer#garbage-collection">Garbage collection Time to Live (GC TTL)</InternalLink> determines the period for which CockroachDB retains revisions of a key. If the GC TTL of the <InternalLink path="backup#targets">backup's target</InternalLink> is shorter than the frequency at which you take incremental backups with revision history, then the revisions become susceptible to garbage collection before you have backed them up. This will cause the incremental backup with revision history to fail.

We recommend configuring the garbage collection period to be at least the frequency of incremental backups and ideally with a buffer to account for slowdowns. You can configure garbage collection periods using the `ttlseconds` <InternalLink path="configure-replication-zones">replication zone setting</InternalLink>.

If an incremental backup is created outside of the garbage collection period, you will receive a `protected ts verification error…`. To resolve this issue, see the <InternalLink path="common-errors#protected-ts-verification-error">Common Errors</InternalLink> page.

<Note>
  If you are creating incremental backups as part of a <InternalLink path="create-schedule-for-backup">backup schedule</InternalLink>, <InternalLink path="architecture/storage-layer#protected-timestamps">protected timestamps</InternalLink> will ensure the backup revision data is not garbage collected, which allows you to lower the GC TTL. See <InternalLink path="create-schedule-for-backup#protected-timestamps-and-scheduled-backups">Protected timestamps and scheduled backups</InternalLink> for more detail.
</Note>

### Take an incremental backup

Periodically run the [`BACKUP`][backup] command to take a full backup of your cluster:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
> BACKUP INTO '{collectionURI}';
```

Then, create nightly incremental backups based off of the full backups you've already created. To append an incremental backup to the most recent full backup created at the [collection's](#backup-collections) URI, use the `LATEST` syntax:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
> BACKUP INTO LATEST IN '{collectionURI}';
```

This will add the incremental backup to the default `/incrementals` directory at the root of the backup collection's directory. With incremental backups in the `/incrementals` directory, you can apply different lifecycle/retention policies from cloud storage providers to the `/incrementals` directory as needed.

<Note>
  In v21.2 and earlier, incremental backups were stored in the same directory as their full backup (i.e., `collectionURI/subdirectory`). If an incremental backup command points to a subdirectory with incremental backups created in v21.2 and earlier, v22.1 and later will write the incremental backup to the v21.2 default location. To use the v21.2 behavior on a backup that does not already contain incremental backups in the full backup subdirectory, use the `incremental_location` option, as shown in this [example](#backup-earlier-behavior).
</Note>

If it's ever necessary, you can then use the [`RESTORE`][restore] statement to restore your cluster, database(s), and/or table(s). Restoring from incremental backups requires previous full and incremental backups.

To restore from the latest backup in the collection, stored in the default `/incrementals` collection subdirectory, run:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
RESTORE FROM LATEST IN '{collectionURI}';
```

To restore from a specific backup in the collection:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
RESTORE FROM '{subdirectory}' IN '{collectionURI}';
```

For example:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
RESTORE FROM '2023/03/23-213101.37' IN 's3://bucket/path?AUTH=implicit';
```

When you restore from an incremental backup, you're restoring the **entire** table, database, or cluster. CockroachDB uses both the latest (or a <InternalLink path="restore#restore-a-specific-full-or-incremental-backup">specific</InternalLink>) incremental backup and the full backup during this process. You cannot restore an incremental backup without a full backup. Furthermore, it is not possible to restore over a <InternalLink path="restore#tables">table</InternalLink>, <InternalLink path="restore#databases">database</InternalLink>, or <InternalLink path="restore#full-cluster">cluster</InternalLink> with existing data. Refer to <InternalLink path="restore#restore-types">Restore types</InternalLink> for detail on the types of backups you can restore.

<Note>
  `RESTORE` will re-validate <InternalLink path="indexes">indexes</InternalLink> when <InternalLink path="take-full-and-incremental-backups">incremental backups</InternalLink> are created from an older version (v20.2.2 and earlier or v20.1.4 and earlier), but restored by a newer version (v21.1.0+). These earlier releases may have included incomplete data for indexes that were in the process of being created.
</Note>

### Incremental backups with explicitly specified destinations

<Danger>
  **Removed in v26.2**: The `incremental_location` option has been removed in v26.2, following its prior <InternalLink version="releases" path="v25.4">deprecation</InternalLink>. Existing backups taken with this option cannot be restored in v26.2 or later. If you have backups that use `incremental_location`, you can only restore them using a cluster running v26.1 or earlier.
</Danger>

To explicitly control where your incremental backups go, use the <InternalLink path="backup#options">`incremental_location`</InternalLink> option. By default, incremental backups are stored in the `/incrementals` subdirectory at the root of the collection. However, there are some advanced cases where you may want to store incremental backups in a different storage location.

In the following examples, the <code>{'{collectionURI}'}</code> specifies the storage location containing the full backup. The <code>{'{explicit_incrementalsURI}'}</code> is the alternative location that you can store an incremental backup:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
BACKUP INTO LATEST IN '{collectionURI}' AS OF SYSTEM TIME '-10s' WITH incremental_location = '{explicit_incrementalsURI}';
```

Although the incremental backup will be in a different storage location, it is still part of the logical [backup collection](#backup-collections).

A full backup must be present in the <code>{'{collectionURI}'}</code> in order to take an incremental backup to the alternative <code>{'{explicit_incrementalsURI}'}</code>. If there isn't a full backup present in <code>{'{collectionURI}'}</code> when taking an incremental backup with `incremental_location`, the error `path does not contain a completed latest backup` will be returned.

For details on the backup directory structure when taking incremental backups with `incremental_location`, see this [incremental location directory structure](#incremental-location-structure) example.

<a id="backup-earlier-behavior" /> To take incremental backups that are stored in the same way as v21.2 and earlier, you can use the `incremental_location` option. You can specify the same `collectionURI` with `incremental_location` and the backup will place the incremental backups in a date-based path under the full backup, rather than in the default `/incrementals` directory:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
BACKUP INTO LATEST IN '{collectionURI}' AS OF SYSTEM TIME '-10s' WITH incremental_location = '{collectionURI}';
```

When you append incrementals to this backup, they will continue to be stored in a date-based path under the full backup.

To restore an incremental backup that was taken using the <InternalLink path="restore">`incremental_location` option</InternalLink>, you must run `RESTORE` with the full backup's location and the `incremental_location` option referencing the location passed in the original `BACKUP` statement:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
RESTORE TABLE movr.users FROM LATEST IN '{collectionURI}' WITH incremental_location = '{explicit_incrementalsURI}';
```

For details on cloud storage URLs, see <InternalLink path="use-cloud-storage">Use Cloud Storage</InternalLink>.

## Examples

The examples in this section use one of the following storage URIs:

* External connections, which allow you to represent an external storage or sink URI. You can then specify the external connection's name in statements rather than the provider-specific URI. For detail on using external connections, see the <InternalLink path="create-external-connection">`CREATE EXTERNAL CONNECTION`</InternalLink> page.
* Amazon S3 connection strings with the **default** `AUTH=specified` parameter. For guidance on using `AUTH=implicit` authentication with Amazon S3 buckets instead, read <InternalLink path="cloud-storage-authentication">Cloud Storage Authentication</InternalLink>.

For guidance on connecting to other storage options or using other authentication parameters instead, read <InternalLink path="use-cloud-storage#example-file-urls">Use Cloud Storage</InternalLink>.

### Scheduled backups

You can use <InternalLink path="create-schedule-for-backup">`CREATE SCHEDULE FOR BACKUP`</InternalLink> to set a recurring schedule for full and incremental backups.

Include the `FULL BACKUP ALWAYS` clause for a schedule to take only full backups. For example, to create a schedule for taking full cluster backups:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
CREATE SCHEDULE core_schedule_label
    FOR BACKUP INTO 's3://{BUCKET NAME}/{PATH}?AWS_ACCESS_KEY_ID={KEY ID}&AWS_SECRET_ACCESS_KEY={SECRET ACCESS KEY}'
    RECURRING '@daily'
    FULL BACKUP ALWAYS
    WITH SCHEDULE OPTIONS first_run = 'now';
```

```
     schedule_id     |        name         | status |         first_run         | schedule |                                                                                       backup_stmt
---------------------+---------------------+--------+---------------------------+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  588799238330220545 | core_schedule_label | ACTIVE | 2020-09-11 00:00:00+00:00 | @daily   | BACKUP INTO 's3://{BUCKET NAME}/{PATH}?AWS_ACCESS_KEY_ID={KEY ID}&AWS_SECRET_ACCESS_KEY={SECRET ACCESS KEY}' WITH detached
(1 row)
```

For more examples on how to schedule backups that take full and incremental backups, refer to <InternalLink path="create-schedule-for-backup">`CREATE SCHEDULE FOR BACKUP`</InternalLink>.

### Exclude a table's data from backups

In some situations, you may want to exclude a table's row data from a <InternalLink path="backup">backup</InternalLink>. For example, you have a table that contains high-churn data that you would like to <InternalLink path="architecture/storage-layer#garbage-collection">garbage collect</InternalLink> more quickly than the [incremental backup](#incremental-backups) schedule for the database or cluster holding the table. You can use the `exclude_data_from_backup = true` parameter with a <InternalLink path="create-table#create-a-table-with-data-excluded-from-backup">`CREATE TABLE`</InternalLink> or <InternalLink path="alter-table">`ALTER TABLE`</InternalLink> statement to mark a table's row data for exclusion from a backup.

It is important to note that the backup produced contains an empty table with the data excluded. The backup process does not attempt to contact the <InternalLink path="architecture/storage-layer">KV storage layer</InternalLink> ranges to retrieve data when `exclude_data_from_backup = true`. Thus, backups will continue to succeed even when some ranges or regions are unavailable, if and only if, the unavailable ranges are in tables excluded from the backups.

Setting this parameter prevents the cluster or database backup from delaying <InternalLink path="configure-replication-zones">GC TTL</InternalLink> on the key span for this table, and it also respects the configured GC TTL. This is useful when you want to set a shorter garbage collection window for tables containing high-churn data to avoid an accumulation of unnecessary data and improves the reliability in partially unavailable clusters.

Using the `movr` database as an example:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
SHOW TABLES;
```

```
schema_name |         table_name         | type  | owner | estimated_row_count | locality
--------------+----------------------------+-------+-------+---------------------+-----------
public      | promo_codes                | table | root  |                1021 | NULL
public      | rides                      | table | root  |                 730 | NULL
public      | user_promo_codes           | table | root  |                  58 | NULL
public      | users                      | table | root  |                 211 | NULL
public      | vehicle_location_histories | table | root  |               10722 | NULL
public      | vehicles                   | table | root  |                  69 | NULL
```

If the `user_promo_codes` table's data does not need to be included in future backups, you can run the following to exclude the table's row data:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
ALTER TABLE movr.user_promo_codes SET (exclude_data_from_backup = true);
```

Then back up the `movr` database:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
BACKUP DATABASE movr INTO 's3://{BUCKET NAME}/{PATH}?AWS_ACCESS_KEY_ID={KEY ID}&AWS_SECRET_ACCESS_KEY={SECRET ACCESS KEY}' AS OF SYSTEM TIME '-10s';
```

Restore the database with a <InternalLink path="restore">new name</InternalLink>:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
RESTORE DATABASE movr FROM LATEST IN 's3://{BUCKET NAME}/{PATH}?AWS_ACCESS_KEY_ID={KEY ID}&AWS_SECRET_ACCESS_KEY={SECRET ACCESS KEY}' WITH new_db_name = new_movr;
```

Move to the new database:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
USE new_movr;
```

You'll find that the table schema is restored:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
SHOW CREATE user_promo_codes;
```

```
table_name    |                                                create_statement
-------------------+------------------------------------------------------------------------------------------------------------------
user_promo_codes | CREATE TABLE public.user_promo_codes (
              |     city VARCHAR NOT NULL,
              |     user_id UUID NOT NULL,
              |     code VARCHAR NOT NULL,
              |     "timestamp" TIMESTAMP NULL,
              |     usage_count INT8 NULL,
              |     CONSTRAINT user_promo_codes_pkey PRIMARY KEY (city ASC, user_id ASC, code ASC),
              |     CONSTRAINT user_promo_codes_city_user_id_fkey FOREIGN KEY (city, user_id) REFERENCES public.users(city, id)
              | ) WITH (exclude_data_from_backup = true)
```

However, the `user_promo_codes` table has no row data:

```sql theme={"theme":{"light":"catppuccin-mocha","dark":"catppuccin-mocha"}}
SELECT * FROM user_promo_codes;
```

```
city | user_id | code | timestamp | usage_count
-----+---------+------+-----------+--------------
(0 rows)
```

To create a table with `exclude_data_from_backup`, see <InternalLink path="create-table#create-a-table-with-data-excluded-from-backup">Create a table with data excluded from backup</InternalLink>.

### Advanced examples

For examples of advanced `BACKUP` and `RESTORE` use cases, see:

* <InternalLink path="take-full-and-incremental-backups#incremental-backups-with-explicitly-specified-destinations">Incremental backups with a specified destination</InternalLink>
* <InternalLink path="take-backups-with-revision-history-and-restore-from-a-point-in-time">Backup with revision history and point-in-time restore</InternalLink>
* <InternalLink path="take-and-restore-locality-aware-backups">Locality-aware backup and restore</InternalLink>
* <InternalLink path="take-and-restore-encrypted-backups">Encrypted backup and restore</InternalLink>
* <InternalLink path="restore#restore-tables-into-a-different-database">Restore into a different database</InternalLink>
* <InternalLink path="restore#remove-the-foreign-key-before-restore">Remove the foreign key before restore</InternalLink>
* <InternalLink path="restore#restoring-users-from-system-users-backup">Restoring users from `system.users` backup</InternalLink>
* <InternalLink path="show-backup#show-a-backup-taken-with-the-incremental-location-option">Show an incremental backup at a different location</InternalLink>
* <InternalLink path="take-full-and-incremental-backups">Exclude a table's data from backups</InternalLink>

## See also

* [`BACKUP`][backup]
* [`RESTORE`][restore]
* <InternalLink path="take-and-restore-encrypted-backups">Take and Restore Encrypted Backups</InternalLink>
* <InternalLink path="take-and-restore-locality-aware-backups">Take and Restore Locality-aware Backups</InternalLink>
* <InternalLink path="take-backups-with-revision-history-and-restore-from-a-point-in-time">Take Backups with Revision History and Restore from a Point-in-time</InternalLink>
* <InternalLink path="cockroach-sql">Use the Built-in SQL Client</InternalLink>
* <InternalLink path="cockroach-commands">`cockroach` Commands Overview</InternalLink>
* <InternalLink path="expire-past-backups">Expire Past Backups</InternalLink>

[backup]: /docs/v25.3/backup

[restore]: /docs/v25.3/restore
