# Delete a database

## Unload a database using Epsilla Docker

You can use this command to unload a database from memory. The database files are still retained on disk.

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

```python
status_code, response = db.unload_db(db_name="myDB")
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
await db.unloadDB('MyDB');
```

{% endtab %}
{% endtabs %}

## Delete a database on Epsilla Cloud

For now, you can delete vector databases via Cloud GUI.

<figure><img src="https://2532879721-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FM0ZX7fId7ifK45ldHWEp%2Fuploads%2Fgit-blob-a537462c78550150173e3b543ca4fd9fc3193aaa%2FScreenshot%202023-11-22%20at%2010.38.29%20AM.png?alt=media" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
We will support deleting databases via Python/JavaScript client in the near future.
{% endhint %}
