fix syntax

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11088 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2011-11-30 20:02:23 +00:00
parent 7ff4b2d237
commit 07aa30a947
2 changed files with 6 additions and 10 deletions

View File

@ -13,11 +13,13 @@ B<dumpxCATdb> [B<-h>|B<--help>] [B<-v>|B<--version>]
=head1 DESCRIPTION
The dumpxCATdb command creates .csv files for xCAT database tables and puts them in the directory given by the -p flag. These files can be used by the restorexCATdb command to restore the database. The command will read the list of tables in the site.skiptables attribute and not backup those tables.
If not using the binary dump option (-b), then the dumpxCATdb command creates .csv files for xCAT database tables and puts them in the directory given by the -p flag. These files can be used by the restorexCATdb command to restore the database. The command will read the list of tables in the site.skiptables attribute and not backup those tables.
Supports using XCAT_SKIPTABLES env variable to provide a list of skip tables.
The command will never backup TEAL or ISNM tables, except isnm_config. To dump TEAL tables use the documented process for TEAL. For ISNM use tabdump, after using tabprune to get to prune unnecessary records.
If using the binary dump option for the DB2 database, then the routine will use the Database provide utilites for backup of the database.
=head1 OPTIONS
@ -29,13 +31,7 @@ B<-V> Verbose.
B<-a> All,without this flag the eventlog and auditlog will be skipped.
B<-b> This flag is only used for the DB2 database. The routine will
the DB2 backup utilities to create a binary backup of the entire
DB2 database. Note to use this backup, you will have first had
to modify the logging of the database and have taken an offline
initial backup. Refer to the documentation at the following link
for more instructions:
https://sourceforge.net/apps/mediawiki/xcat/index.php?title=Setting_Up_DB2_as_the_xCAT_DB#Backup.2FRestore_the_database_with_DB2_Commands
B<-b> This flag is only used for the DB2 database. The routine will use the DB2 backup utilities to create a binary backup of the entire DB2 database. Note to use this backup, you will have first had to modify the logging of the database and have taken an offline initial backup. Refer to the xCAT DB2 documentation for more instructions.
B<-p> Path to the directory to dump the tables. It will be created, if it does not exist.

View File

@ -14,10 +14,10 @@ B<restorexCATdb> [B<-h>|B<--help>] [B<-v>|B<--version>]
=head1 DESCRIPTION
If not using binary restore(-b), the restorexCATdb command restores the xCAT database tables from the *.csv files in directory given by the -p flag. The site table skiptables attribute can be set to a list of tables not to restore. It will not restore isnm_perf* tables. See man dumpxCATdb.
The restorexCATdb command restores the xCAT database tables from the directory given by the -p flag. The site table skiptables attribute can be set to a list of tables not to restore. It will not restore isnm_perf* tables. See man dumpxCATdb.
If using the binary restore option for DB2, the entire database is restored from the binary backup made with dumpxCATdb. The database will be restored using DB2 Utilities. The timestamp of the correct DB2 backup file (-t) must be provided.
All applications accessing the DB2 database must be stopped before you can use the binary restore options. See https://sourceforge.net/apps/mediawiki/xcat/index.php?title=Setting_Up_DB2_as_the_xCAT_DB#Backup.2FRestore_the_database_with_DB2_Commands for more information.
All applications accessing the DB2 database must be stopped before you can use the binary restore options. See the xCAT DB2 document for more information.
=head1 OPTIONS