Template:SQWareProduction sqwpg RestoreDatabase.ksh example: Difference between revisions
Jump to navigation
Jump to search
m Updated by BatchUser |
No edit summary |
||
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
Sourcing sqwpg_Global.lib | Sourcing sqwpg_Global.lib v2025.06 SQWareProduction for PostgreSQL (dbSQWare) ... | ||
#Standard help for script sqwpg_RestoreDatabase.ksh: | #Standard help for script sqwpg_RestoreDatabase.ksh: | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -h | ||
#Display online help for this script | #Display online help for this script | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $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) | #Display online help for this script with forcing of the 'en' locale (by default locale managed by $gvsqw_Locale) | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -s | ||
#Display usage examples for this script | #Display usage examples for this script | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> | ||
#Generate commands but don't execute them ! | #Generate commands but don't execute them ! | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -Exec | ||
#Execute Standard restore of target database | #Execute Standard restore of target database | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -I $PG_SID -DT <DatabaseTarget> -DS <DatabaseSource> -After <script> | $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) | #Execute the script <script> after restoring the database (by default, even that -DT) | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $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) | #Execute the script <script> then restore the database with backup of <date> (by default, take the latest) | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -RD <DirName> -Exec | ||
#Restore the target database with the backups contained in the | #Restore the target database with the backups contained in the directory <DirName> | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $gvsqw_PgBin/sqwpg_RestoreDatabase.ksh -I $PG_SID -DT <DatabaseTarget> -F <File> -Exec | ||
#Restore the | #Restore database with the dump file <File> (by default take the latest) | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $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 | #Add the mail list to the default address managed by $gvsqw_GlobalMail | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $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 | #Send the log by email at the end of the treatment even if there is no error | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $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) | #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) | ||
$gvsqw_PgBin/sqwpg_RestoreDatabase | $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!") | #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 |
Latest revision as of 18:51, 1 July 2025
Sourcing sqwpg_Global.lib v2025.06 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