| From: | PG Doc comments form <noreply(at)postgresql(dot)org> |
|---|---|
| To: | pgsql-docs(at)lists(dot)postgresql(dot)org |
| Cc: | peter(at)ter(dot)dk |
| Subject: | pg_dump: regular expression notation for tables |
| Date: | 2022-09-06 08:15:14 |
| Message-ID: | 166245211430.648.12974823935987673461@wrigleys.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-docs |
The following documentation comment has been logged on the website:
Page: https://www.postgresql.org/docs/14/app-pgdump.html
Description:
Hi,
The pg_dump page mentions:
https://www.postgresql.org/docs/current/app-pgdump.html#PG-DUMP-EXAMPLES
==
To dump all schemas whose names start with east or west and end in gsm,
excluding any schemas whose names contain the word test:
$ pg_dump -n 'east*gsm' -n 'west*gsm' -N '*test*' mydb > db.sql
The same, using regular expression notation to consolidate the switches:
$ pg_dump -n '(east|west)*gsm' -N '*test*' mydb > db.sql
==
However the manual doesn't mention anything about regular expressions
otherwise.
If it is possible to use regular expressions then the examples would have
issues:
east*gsm would match easgsm, eastgsm, eastttttgsm, but not east.gsm or
east_tower.gsm
(east|west)*gsm would match gsm, eastgsm, eastwesteastgsm, but not east.gsm
or east_tower.gsm
Perhaps regular expressions are not supported, but simply some sort of glob
expression?
- Peter Brodersen
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2022-09-06 19:28:25 | Re: DocBook 5.2 |
| Previous Message | Jürgen Purtz | 2022-09-05 14:40:33 | Re: DocBook 5.2 |