Cleanup "Restoring a database from backup" in README

This commit is contained in:
Erik Nordström 2017-05-24 14:54:20 +02:00 committed by Erik Nordström
parent 2bc60c79e3
commit a3502b286c

View File

@ -263,10 +263,10 @@ actively working to resolve:
- `drop_chunks()` (see our [API Reference](docs/API.md)) is currently only
supported for hypertables that are not partitioned by space.
### Restoring a database from backup.
### Restoring a database from backup
A database with the timescaledb extension can be backed up using normal backup
procedures (e.g. `pg\_dump`). However, when restoring the database the following
procedures (e.g., `pg_dump`). However, when restoring the database the following
procedure must be used.
```sql
@ -282,7 +282,7 @@ SELECT restore_timescaledb();
ALTER DATABASE single SET timescaledb.restoring='off';
```
Note: You must use pg_dump and pg_restore versions 9.6.2 and above.
Note: You must use `pg_dump` and `pg_restore` versions 9.6.2 and above.
### More APIs
For more information on TimescaleDB's APIs, check out our