Bruce Momjian <[EMAIL PROTECTED]> writes: > Does anyone know why 'pg_restore -d' doesn't display the commands being > executed, like you see when you don't use '-d':
> pg_restore < /tmp/test.db > pg_restore -d test < /tmp/test.db The first sends a script to stdout (effectively equivalent to pg_dump plain style). The second sends the commands to a backend. I would have expected there to be a --verbose option that would also echo the commands to stderr, but it doesn't look like there's any support for that in the code. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org