Re: pg_dump -t '"Table"' for cmd.exe

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Mike Toews <mwtoews(at)gmail(dot)com>
Cc: pgsql-docs(at)postgresql(dot)org
Subject: Re: pg_dump -t '"Table"' for cmd.exe
Date: 2013-07-01 18:53:41
Message-ID: 20130701185341.GF16348@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

On Tue, Nov 13, 2012 at 02:45:05PM +1300, Mike Toews wrote:
> I'm not sure if this is worth documenting, but pg_dumping mixed-case tables
> with the '-t table' option appears to not be accurately documented for cmd.exe.
> Here are my four attempts, with only the last as success:
>
> Intuitive (supplying "My Table" like "My Database"), but not correct:
> C:\>"C:\Program Files\PostgreSQL\9.1\bin\pg_dump.exe" -U postgres -t "My Table"
> "My Database"
> pg_dump: No matching tables were found
>
> As documented in last example at http://www.postgresql.org/docs/9.1/static/
> app-pgdump.html
> C:\>"C:\Program Files\PostgreSQL\9.1\bin\pg_dump.exe" -U postgres -t '"My
> Table"' "My Database"
> pg_dump: No matching tables were found
>
> Escaping quotes, but using single quotes:
> C:\>"C:\Program Files\PostgreSQL\9.1\bin\pg_dump.exe" -U postgres -t '\"My
> Table\"' "My Database"
> pg_dump: too many command-line arguments (first is "My Database")
>
> Escaping quotes, but using double quotes:
> C:\>"C:\Program Files\PostgreSQL\9.1\bin\pg_dump.exe" -U postgres -t "\"My
> Table\"" "My Database"
>
> works!

Good point. Docs updated with attached patch, and patched to 9.3 beta
as well.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ It's impossible for everything to be true. +

Attachment Content-Type Size
quote.diff text/x-diff 596 bytes

In response to

Browse pgsql-docs by date

  From Date Subject
Next Message Bruce Momjian 2013-07-02 19:56:10 Re: [HACKERS] Add contrib module functions to docs' function index
Previous Message Bruce Momjian 2013-06-29 03:16:11 Re: [BUGS] BUG #7652: Documentation index lacks functions from "Additional Supplied Modules"