forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitd1cffe2
committed
Add --encoding to pg_dump.
The Problem: Occassionally a DBA needs to dump a database to a newencoding. In instances where the current encoding, (or lack of anencoding, like SQL_ASCII) is poorly supported on the target databaseserver, it can be useful to dump into a particular encoding. But,currently the only way to set the encoding of a pg_dump file is tochange client_encoding in postgresql.conf and restart postmaster.This is more than a little awkward for production systems.Magnus Hagander1 parent0793108 commitd1cffe2
2 files changed
+31
-3
lines changedLines changed: 13 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 |
| - | |
| 2 | + | |
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
| |||
194 | 194 |
| |
195 | 195 |
| |
196 | 196 |
| |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
197 | 209 |
| |
198 | 210 |
| |
199 | 211 |
| |
|
Lines changed: 18 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
| 15 | + | |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
| |||
185 | 185 |
| |
186 | 186 |
| |
187 | 187 |
| |
| 188 | + | |
188 | 189 |
| |
189 | 190 |
| |
190 | 191 |
| |
| |||
231 | 232 |
| |
232 | 233 |
| |
233 | 234 |
| |
| 235 | + | |
234 | 236 |
| |
235 | 237 |
| |
236 | 238 |
| |
| |||
276 | 278 |
| |
277 | 279 |
| |
278 | 280 |
| |
279 |
| - | |
| 281 | + | |
280 | 282 |
| |
281 | 283 |
| |
282 | 284 |
| |
| |||
308 | 310 |
| |
309 | 311 |
| |
310 | 312 |
| |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
311 | 317 |
| |
312 | 318 |
| |
313 | 319 |
| |
| |||
515 | 521 |
| |
516 | 522 |
| |
517 | 523 |
| |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
518 | 533 |
| |
519 | 534 |
| |
520 | 535 |
| |
| |||
662 | 677 |
| |
663 | 678 |
| |
664 | 679 |
| |
| 680 | + | |
665 | 681 |
| |
666 | 682 |
| |
667 | 683 |
| |
|
0 commit comments
Comments
(0)