From 4c5c241d974544a0ba68a985ee64a725aac8e00b Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Thu, 24 Nov 2016 16:27:17 -0800 Subject: [PATCH] Update RESTORE_FROM_SQLITE.md --- doc/RESTORE_FROM_SQLITE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/RESTORE_FROM_SQLITE.md b/doc/RESTORE_FROM_SQLITE.md index 766e124b..c5bb3859 100644 --- a/doc/RESTORE_FROM_SQLITE.md +++ b/doc/RESTORE_FROM_SQLITE.md @@ -1,6 +1,6 @@ # Restoring from a SQLite dump file -rqlite supports loading a node directly from a SQLite dump file. This is a fast and efficient manner to bootstrap a system from an existing SQLite database, or to restore from an existing [node backup](https://github.com/rqlite/rqlite/blob/master/doc/BACKUPS.md). An example restore is shown below. +rqlite supports loading a node directly from a SQLite dump file. This is a fast and efficient manner to initialize a system from an existing SQLite database, or to restore from an existing [node backup](https://github.com/rqlite/rqlite/blob/master/doc/BACKUPS.md). An example restore is shown below. ## Example The following example shows a trivial database being generated by `sqlite3`, dumped to a file, and then loaded into a rqlite node listening on localhost. @@ -26,4 +26,4 @@ $ rqlite +----+-------+ ``` -The behavior of the restore operation when data already exists on the node is undefined. Also, please note that SQLite dump files normally contain a command to disable Foreign Key constraints. If you wish to re-enable Foreign Key constraints after the load operation completes, check out [this documentation](https://github.com/rqlite/rqlite/blob/master/doc/FOREIGN_KEY_CONSTRAINTS.md). \ No newline at end of file +The behavior of the restore operation when data already exists on the node is undefined. Also, please note that SQLite dump files normally contain a command to disable Foreign Key constraints. If you wish to re-enable Foreign Key constraints after the load operation completes, check out [this documentation](https://github.com/rqlite/rqlite/blob/master/doc/FOREIGN_KEY_CONSTRAINTS.md).