From 9d4cf89494359013603cdd50e57375095f2ace41 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 18 Jul 2008 17:33:40 +0000 Subject: [PATCH] Properly document archive/restore command examples on Windows. ITAGAKI Takahiro --- doc/src/sgml/backup.sgml | 2 +- doc/src/sgml/config.sgml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 4cfe31c36a..c3fe9e76f2 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1122,7 +1122,7 @@ restore_command = 'cp /mnt/server/archivedir/%f %p' when so asked. Examples: restore_command = 'cp /mnt/server/archivedir/%f "%p"' -restore_command = 'copy /mnt/server/archivedir/%f "%p"' # Windows +restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index fd672e2cf1..7acea74eb1 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1698,7 +1698,7 @@ SET ENABLE_SEQSCAN TO OFF; and only if it succeeds. Examples: archive_command = 'cp "%p" /mnt/server/archivedir/"%f"' -archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Windows +archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows -- 2.39.5