mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-16 21:59:03 +00:00
Add note about truncating a database from the inside
This commit is contained in:
parent
af7cf4a0a0
commit
b9cac95249
1 changed files with 22 additions and 0 deletions
22
notes/psql/truncate-database.md
Normal file
22
notes/psql/truncate-database.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: Truncate a database from the inside
|
||||
tags:
|
||||
- PostgreSQL
|
||||
emoji: 🐘
|
||||
---
|
||||
|
||||
How to delete database from the inside, with only access to that database.
|
||||
|
||||
The primary way this works is by using `pg_dump`'s ability to drop a schema before recreating it.
|
||||
|
||||
This creates a dump of the database without any data, and with a fresh schema (drop then rebuild). This output is then `grep`'d to only contain the drops.
|
||||
|
||||
```sh
|
||||
pg_dump -cs "postgres://<database url>" | grep DROP > drops.psql.sql
|
||||
```
|
||||
|
||||
Now run the drops. These drops are specifically designed for this schema so should be complete and in the correct order.
|
||||
|
||||
```sh
|
||||
psql "postgres://<database url>" < drops.psql.sql
|
||||
```
|
Loading…
Reference in a new issue