> For the complete documentation index, see [llms.txt](https://docs.create-magento-app.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.create-magento-app.com/usage-guide/importing-database.md).

# Importing database

To import the database use the [import-db](/getting-started/available-commands/import-db.md) command.

{% hint style="warning" %}

### **Heads up!**

If you are running a version older than **magento-scripts\@1.6.0**, you will need to start project manually using [start command](/getting-started/available-commands/start.md)!
{% endhint %}

{% tabs %}
{% tab title="Yarn" %}

```bash
yarn import-db <dump file path>
```

{% endtab %}

{% tab title="NPM" %}

```bash
npm run import-db <dump file path>
```

{% endtab %}
{% endtabs %}

When the command is called, multiple steps are executed to ensure the success of the import. These steps are as follows:

* A connection established with MySQL
* Theme configurations will be dumped and restored after the dump is imported
* The dump will be imported into MySQL from the specified file
* It will be ensured that dump will work with CMA set up by setting necessary configuration values
* And Magento setup will be running to finish the configuration.

To import database from remote ssh server, use the following guide:

{% content-ref url="/pages/-Mchm5W0CLqGRl1Y1PU1" %}
[Importing remote database](/usage-guide/importing-database/importing-remote-database.md)
{% endcontent-ref %}
