Difference between revisions of "Template:SQWareProduction sqwpg BackupPitr.ksh example"
m (Updated by BatchUser) |
m (Updated by BatchUser) |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
− | Sourcing sqwpg_Global.lib | + | Sourcing sqwpg_Global.lib v2024.07 SQWareProduction for PostgreSQL (dbSQWare) ... |
#Standard help for script sqwpg_BackupPitr.ksh: | #Standard help for script sqwpg_BackupPitr.ksh: | ||
− | |||
− | |||
$gvsqw_PgBin/sqwpg_BackupPitr.ksh -h | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -h | ||
Line 10: | Line 8: | ||
$gvsqw_PgBin/sqwpg_BackupPitr.ksh -Locale en -h | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -Locale en -h | ||
− | #Display online help for this script with forcing of the ' | + | #Display online help for this script with forcing of the 'en' locale (by default locale managed by $gvsqw_Locale) |
$gvsqw_PgBin/sqwpg_BackupPitr.ksh -s | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -s | ||
#Display usage examples for this script | #Display usage examples for this script | ||
− | $gvsqw_PgBin/sqwpg_BackupPitr.ksh - | + | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID |
− | # | + | #Display generated commands without execute them ! |
+ | |||
+ | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -Exec | ||
+ | #Execute PITR backup on instance $PG_SID | ||
− | $gvsqw_PgBin/sqwpg_BackupPitr.ksh - | + | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -ForcePitr -Exec |
− | # | + | #Execute backup even the cluster is in recovery mode (By default 'Disable') |
− | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID - | + | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -NoForcePitr -Exec |
− | # | + | #Execute backup execpt if the cluster is in recovery mode (By default 'Disable') |
$gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -HI <NumberOfGenerations> -Exec | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -HI <NumberOfGenerations> -Exec | ||
#Changes the number of backup generations to keep | #Changes the number of backup generations to keep | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -Opt '<Option>' -Exec | ||
+ | #Execute the script with option <Option> | ||
$gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -ZIP <ZipExtension> -F <Format> -Exec | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -ZIP <ZipExtension> -F <Format> -Exec | ||
#Execute generated commands and compress them (gz,bz2,Z,none) with format tar or rsync | #Execute generated commands and compress them (gz,bz2,Z,none) with format tar or rsync | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec | ||
+ | #Add the mail list to the default address managed by the variable gvsqw_GlobalMail | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -SendReport -Exec | ||
+ | #Send the log by email at the end of the treatment even if there is no error | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -NoMail -Exec | ||
+ | #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) | ||
$gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -FRT <NumericValue> -Exec | $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -FRT <NumericValue> -Exec | ||
− | #Force return code to '<NumericValue>' on error (if no error, exit 0!) | + | #Force return code to '<NumericValue>' on error (if no error, "exit 0!") |
#You can also force return code of this script on all your | #You can also force return code of this script on all your | ||
#environnement if you set the variable: $gvsqw_ForcedReturnCodeScript_sqwpg_BackupPitr=<NumericValue> | #environnement if you set the variable: $gvsqw_ForcedReturnCodeScript_sqwpg_BackupPitr=<NumericValue> |
Latest revision as of 15:55, 31 October 2024
Sourcing sqwpg_Global.lib v2024.07 SQWareProduction for PostgreSQL (dbSQWare) ... #Standard help for script sqwpg_BackupPitr.ksh: $gvsqw_PgBin/sqwpg_BackupPitr.ksh -h #Display online help for this script $gvsqw_PgBin/sqwpg_BackupPitr.ksh -Locale en -h #Display online help for this script with forcing of the 'en' locale (by default locale managed by $gvsqw_Locale) $gvsqw_PgBin/sqwpg_BackupPitr.ksh -s #Display usage examples for this script $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID #Display generated commands without execute them ! $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -Exec #Execute PITR backup on instance $PG_SID $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -ForcePitr -Exec #Execute backup even the cluster is in recovery mode (By default 'Disable') $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -NoForcePitr -Exec #Execute backup execpt if the cluster is in recovery mode (By default 'Disable') $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -HI <NumberOfGenerations> -Exec #Changes the number of backup generations to keep $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -Opt '<Option>' -Exec #Execute the script with option <Option> $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -ZIP <ZipExtension> -F <Format> -Exec #Execute generated commands and compress them (gz,bz2,Z,none) with format tar or rsync $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec #Add the mail list to the default address managed by the variable gvsqw_GlobalMail $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -SendReport -Exec #Send the log by email at the end of the treatment even if there is no error $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -NoMail -Exec #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) $gvsqw_PgBin/sqwpg_BackupPitr.ksh -I $PG_SID -FRT <NumericValue> -Exec #Force return code to '<NumericValue>' on error (if no error, "exit 0!") #You can also force return code of this script on all your #environnement if you set the variable: $gvsqw_ForcedReturnCodeScript_sqwpg_BackupPitr=<NumericValue> #in configuration file $gvsqw_PgBin/../etc_cust/sqwpg_GlobalVar.cfg