Difference between revisions of "Template:SQWareProduction sqwpg RestoreDatabase.ksh example"
m (Updated by BatchUser) |
m (Updated by BatchUser) |
||
(12 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_RestoreDatabase.ksh: | |
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -h | ||
+ | #Display online help for this script | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.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_RestoreDatabase.ksh -s | ||
+ | #Display usage examples for this script | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> | ||
+ | #Generate commands but don't execute them ! | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Exec | ||
+ | #Execute Standard restore of target database | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Verbose Exec | ||
+ | #Restore the target database and registere more detailed comments and start/stop times in logs | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -NoDrop -Exec | ||
+ | #Do not drop databases before load (by default locale managed by $gvsqw_DropDb) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Drop -Create -Exec | ||
+ | #Drop all databases before load, use locale from instance $PG_SID for all create commands (by default locale managed by $gvsqw_CreateDb) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Drop -NoCreate -Exec | ||
+ | #Drop all databases before load, use locale from pg_dump for all create commands (by default locale managed by $gvsqw_CreateDb) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -DS <DatabaseSource> -After <script> -Exec | ||
+ | #Execute the script <script> after restoring the database (by default, even that -DT) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -DD <date> -Before <script> -Exec | ||
+ | #Execute the script <script> then restore the database with backup of <date> (by default, take the latest) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -RD <DirName> -Exec | ||
+ | #Restore the target database with the backups contained in the directory <DirName> | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -F <File> -Exec | ||
+ | #Restore database with the dump file <File> (by default take the latest) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec | ||
+ | #Add the mail list to the default address managed by $gvsqw_GlobalMail | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -SendReport -Exec | ||
+ | #Send the log by email at the end of the treatment even if there is no error | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -NoMail -Exec | ||
+ | #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) | ||
+ | |||
+ | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -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_RestoreDatabase.ksh=<NumericValue> | ||
+ | #in configuration file $gvsqw_PgBin/../etc_cust/sqwmsq_GlobalVar.cfg | ||
</pre> | </pre> |
Latest revision as of 15:55, 31 October 2024
Sourcing sqwpg_Global.lib v2024.07 SQWareProduction for PostgreSQL (dbSQWare) ... #Standard help for script sqwpg_RestoreDatabase.ksh: $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -h #Display online help for this script $gvsqw_PgBin/sqwpg_RestoreDatabase.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_RestoreDatabase.ksh -s #Display usage examples for this script $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> #Generate commands but don't execute them ! $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Exec #Execute Standard restore of target database $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Verbose Exec #Restore the target database and registere more detailed comments and start/stop times in logs $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -NoDrop -Exec #Do not drop databases before load (by default locale managed by $gvsqw_DropDb) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Drop -Create -Exec #Drop all databases before load, use locale from instance $PG_SID for all create commands (by default locale managed by $gvsqw_CreateDb) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Drop -NoCreate -Exec #Drop all databases before load, use locale from pg_dump for all create commands (by default locale managed by $gvsqw_CreateDb) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -DS <DatabaseSource> -After <script> -Exec #Execute the script <script> after restoring the database (by default, even that -DT) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -DD <date> -Before <script> -Exec #Execute the script <script> then restore the database with backup of <date> (by default, take the latest) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -RD <DirName> -Exec #Restore the target database with the backups contained in the directory <DirName> $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -F <File> -Exec #Restore database with the dump file <File> (by default take the latest) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec #Add the mail list to the default address managed by $gvsqw_GlobalMail $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -SendReport -Exec #Send the log by email at the end of the treatment even if there is no error $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -NoMail -Exec #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -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_RestoreDatabase.ksh=<NumericValue> #in configuration file $gvsqw_PgBin/../etc_cust/sqwmsq_GlobalVar.cfg