1 /*-------------------------------------------------------------------------
4 * pg_restore is an utility extracting postgres database definitions
5 * from a backup archive created by pg_dump using the archiver
8 * pg_restore will read the backup archive and
9 * dump out a script that reproduces
10 * the schema of the database in terms of
12 * user-defined functions
19 * the output script is SQL that is understood by PostgreSQL
21 * Basic process in a restore operation is:
23 * Open the Archive and read the TOC.
24 * Set flags in TOC entries, and *maybe* reorder them.
25 * Generate script to stdout
28 * Copyright (c) 2000, Philip Warner
29 * Rights are granted to use this software in any way so long
30 * as this notice is not removed.
32 * The author is not responsible for loss or damages that may
33 * result from its use.
39 *-------------------------------------------------------------------------
42 #include "pg_backup_archiver.h"
52 #include "getopt_long.h"
54 #ifndef HAVE_INT_OPTRESET
63 static void usage(const char *progname
);
65 typedef struct option optType
;
68 main(int argc
, char **argv
)
77 static int disable_triggers
= 0;
78 static int no_data_for_failed_tables
= 0;
79 static int outputNoTablespaces
= 0;
80 static int use_setsessauth
= 0;
82 struct option cmdopts
[] = {
83 {"clean", 0, NULL
, 'c'},
84 {"create", 0, NULL
, 'C'},
85 {"data-only", 0, NULL
, 'a'},
86 {"dbname", 1, NULL
, 'd'},
87 {"exit-on-error", 0, NULL
, 'e'},
88 {"file", 1, NULL
, 'f'},
89 {"format", 1, NULL
, 'F'},
90 {"function", 1, NULL
, 'P'},
91 {"host", 1, NULL
, 'h'},
92 {"ignore-version", 0, NULL
, 'i'},
93 {"index", 1, NULL
, 'I'},
94 {"list", 0, NULL
, 'l'},
95 {"no-privileges", 0, NULL
, 'x'},
96 {"no-acl", 0, NULL
, 'x'},
97 {"no-owner", 0, NULL
, 'O'},
98 {"no-reconnect", 0, NULL
, 'R'},
99 {"port", 1, NULL
, 'p'},
100 {"password", 0, NULL
, 'W'},
101 {"schema", 1, NULL
, 'n'},
102 {"schema-only", 0, NULL
, 's'},
103 {"superuser", 1, NULL
, 'S'},
104 {"table", 1, NULL
, 't'},
105 {"trigger", 1, NULL
, 'T'},
106 {"use-list", 1, NULL
, 'L'},
107 {"username", 1, NULL
, 'U'},
108 {"verbose", 0, NULL
, 'v'},
109 {"single-transaction", 0, NULL
, '1'},
112 * the following options don't have an equivalent short option letter
114 {"disable-triggers", no_argument
, &disable_triggers
, 1},
115 {"no-data-for-failed-tables", no_argument
, &no_data_for_failed_tables
, 1},
116 {"no-tablespaces", no_argument
, &outputNoTablespaces
, 1},
117 {"use-set-session-authorization", no_argument
, &use_setsessauth
, 1},
122 set_pglocale_pgservice(argv
[0], "pg_dump");
124 opts
= NewRestoreOptions();
126 progname
= get_progname(argv
[0]);
130 if (strcmp(argv
[1], "--help") == 0 || strcmp(argv
[1], "-?") == 0)
135 if (strcmp(argv
[1], "--version") == 0 || strcmp(argv
[1], "-V") == 0)
137 puts("pg_restore (PostgreSQL) " PG_VERSION
);
142 while ((c
= getopt_long(argc
, argv
, "acCd:ef:F:h:iI:lL:n:Op:P:RsS:t:T:U:vWxX:1",
143 cmdopts
, NULL
)) != -1)
147 case 'a': /* Dump data only */
150 case 'c': /* clean (i.e., drop) schema prior to create */
151 opts
->dropSchema
= 1;
157 opts
->dbname
= strdup(optarg
);
160 opts
->exit_on_error
= true;
162 case 'f': /* output file name */
163 opts
->filename
= strdup(optarg
);
166 if (strlen(optarg
) != 0)
167 opts
->formatName
= strdup(optarg
);
170 if (strlen(optarg
) != 0)
171 opts
->pghost
= strdup(optarg
);
174 /* ignored, deprecated option */
177 case 'l': /* Dump the TOC summary */
178 opts
->tocSummary
= 1;
181 case 'L': /* input TOC summary file name */
182 opts
->tocFile
= strdup(optarg
);
185 case 'n': /* Dump data for this schema only */
186 opts
->schemaNames
= strdup(optarg
);
194 if (strlen(optarg
) != 0)
195 opts
->pgport
= strdup(optarg
);
198 /* no-op, still accepted for backwards compatibility */
200 case 'P': /* Function */
202 opts
->selFunction
= 1;
203 opts
->functionNames
= strdup(optarg
);
205 case 'I': /* Index */
208 opts
->indexNames
= strdup(optarg
);
210 case 'T': /* Trigger */
212 opts
->selTrigger
= 1;
213 opts
->triggerNames
= strdup(optarg
);
215 case 's': /* dump schema only */
216 opts
->schemaOnly
= 1;
218 case 'S': /* Superuser username */
219 if (strlen(optarg
) != 0)
220 opts
->superuser
= strdup(optarg
);
222 case 't': /* Dump data for this table only */
225 opts
->tableNames
= strdup(optarg
);
229 opts
->username
= optarg
;
232 case 'v': /* verbose */
237 opts
->requirePassword
= true;
240 case 'x': /* skip ACL dump */
245 /* -X is a deprecated alternative to long options */
246 if (strcmp(optarg
, "disable-triggers") == 0)
247 disable_triggers
= 1;
248 else if (strcmp(optarg
, "no-data-for-failed-tables") == 0)
249 no_data_for_failed_tables
= 1;
250 else if (strcmp(optarg
, "no-tablespaces") == 0)
251 outputNoTablespaces
= 1;
252 else if (strcmp(optarg
, "use-set-session-authorization") == 0)
257 _("%s: invalid -X option -- %s\n"),
259 fprintf(stderr
, _("Try \"%s --help\" for more information.\n"), progname
);
265 /* This covers the long options equivalent to -X xxx. */
268 case '1': /* Restore data in a single transaction */
269 opts
->single_txn
= true;
270 opts
->exit_on_error
= true;
274 fprintf(stderr
, _("Try \"%s --help\" for more information.\n"), progname
);
280 inputFileSpec
= argv
[optind
];
282 inputFileSpec
= NULL
;
284 /* Should get at most one of -d and -f, else user is confused */
289 fprintf(stderr
, _("%s: cannot specify both -d and -f output\n"),
291 fprintf(stderr
, _("Try \"%s --help\" for more information.\n"),
298 opts
->disable_triggers
= disable_triggers
;
299 opts
->noDataForFailedTables
= no_data_for_failed_tables
;
300 opts
->noTablespace
= outputNoTablespaces
;
301 opts
->use_setsessauth
= use_setsessauth
;
303 if (opts
->formatName
)
306 switch (opts
->formatName
[0])
311 opts
->format
= archCustom
;
316 opts
->format
= archFiles
;
321 opts
->format
= archTar
;
325 write_msg(NULL
, "unrecognized archive format \"%s\"; please specify \"c\" or \"t\"\n",
331 AH
= OpenArchive(inputFileSpec
, opts
->format
);
333 /* Let the archiver know how noisy to be */
334 AH
->verbose
= opts
->verbose
;
337 * Whether to keep submitting sql commands as "pg_restore ... | psql ... "
339 AH
->exit_on_error
= opts
->exit_on_error
;
342 SortTocFromFile(AH
, opts
);
343 else if (opts
->noDataForFailedTables
)
346 * we implement this option by clearing idWanted entries, so must
347 * create a dummy idWanted array if there wasn't a tocFile
349 InitDummyWantedList(AH
, opts
);
352 if (opts
->tocSummary
)
353 PrintTOCSummary(AH
, opts
);
355 RestoreArchive(AH
, opts
);
357 /* done, print a summary of ignored errors */
359 fprintf(stderr
, _("WARNING: errors ignored on restore: %d\n"),
362 /* AH may be freed in CloseArchive? */
363 exit_code
= AH
->n_errors
? 1 : 0;
371 usage(const char *progname
)
373 printf(_("%s restores a PostgreSQL database from an archive created by pg_dump.\n\n"), progname
);
374 printf(_("Usage:\n"));
375 printf(_(" %s [OPTION]... [FILE]\n"), progname
);
377 printf(_("\nGeneral options:\n"));
378 printf(_(" -d, --dbname=NAME connect to database name\n"));
379 printf(_(" -f, --file=FILENAME output file name\n"));
380 printf(_(" -F, --format=c|t specify backup file format\n"));
381 printf(_(" -l, --list print summarized TOC of the archive\n"));
382 printf(_(" -v, --verbose verbose mode\n"));
383 printf(_(" --help show this help, then exit\n"));
384 printf(_(" --version output version information, then exit\n"));
386 printf(_("\nOptions controlling the restore:\n"));
387 printf(_(" -a, --data-only restore only the data, no schema\n"));
388 printf(_(" -c, --clean clean (drop) schema prior to create\n"));
389 printf(_(" -C, --create create the target database\n"));
390 printf(_(" -I, --index=NAME restore named index\n"));
391 printf(_(" -L, --use-list=FILENAME use specified table of contents for ordering\n"
392 " output from this file\n"));
393 printf(_(" -n, --schema=NAME restore only objects in this schema\n"));
394 printf(_(" -O, --no-owner skip restoration of object ownership\n"));
395 printf(_(" -P, --function=NAME(args)\n"
396 " restore named function\n"));
397 printf(_(" -s, --schema-only restore only the schema, no data\n"));
398 printf(_(" -S, --superuser=NAME specify the superuser user name to use for\n"
399 " disabling triggers\n"));
400 printf(_(" -t, --table=NAME restore named table\n"));
401 printf(_(" -T, --trigger=NAME restore named trigger\n"));
402 printf(_(" -x, --no-privileges skip restoration of access privileges (grant/revoke)\n"));
403 printf(_(" --disable-triggers disable triggers during data-only restore\n"));
404 printf(_(" --no-data-for-failed-tables\n"
405 " do not restore data of tables that could not be\n"
407 printf(_(" --no-tablespaces do not dump tablespace assignments\n"));
408 printf(_(" --use-set-session-authorization\n"
409 " use SESSION AUTHORIZATION commands instead of\n"
410 " OWNER TO commands\n"));
411 printf(_(" -1, --single-transaction\n"
412 " restore as a single transaction\n"));
414 printf(_("\nConnection options:\n"));
415 printf(_(" -h, --host=HOSTNAME database server host or socket directory\n"));
416 printf(_(" -p, --port=PORT database server port number\n"));
417 printf(_(" -U, --username=NAME connect as specified database user\n"));
418 printf(_(" -W, --password force password prompt (should happen automatically)\n"));
419 printf(_(" -e, --exit-on-error exit on error, default is to continue\n"));
421 printf(_("\nIf no input file name is supplied, then standard input is used.\n\n"));
422 printf(_("Report bugs to <pgsql-bugs@postgresql.org>.\n"));