Difference between revisions of "Template:SQWareProduction sqwpg RestoreDatabase.ksh example"

From Wiki_dbSQWare
Jump to: navigation, search
m (Updated by BatchUser)
m (Updated by BatchUser)
Line 1: Line 1:
 
<pre>
 
<pre>
Sourcing sqwpg_Global.lib v2024.01 SQWareProduction for PostgreSQL (dbSQWare) ...  
+
Sourcing sqwpg_Global.lib v2024.02 SQWareProduction for PostgreSQL (dbSQWare) ...  
 +
 
 +
#Standard help for script sqwpg_RestoreDatabase.ksh:
 +
 
 +
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -h
 +
#Display online help for this script
 +
 
 +
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.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.ksh -s
 +
#Display usage examples for this script
 +
 
 +
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -I $PG_SID -DT <DatabaseTarget>
 +
#Generate commands but don't execute them !
 +
 
 +
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -I $PG_SID -DT <DatabaseTarget> -Exec
 +
#Execute Standard restore of target database
 +
#Execute une restauration standard de la database cible
 +
 
 +
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.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.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.ksh -I $PG_SID -DT <DatabaseTarget> -RD <path> -Exec
 +
#Restore the target database with the backups contained in the specified directory
 +
 
 +
$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.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.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.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.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.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>

Revision as of 17:10, 7 April 2024

Sourcing sqwpg_Global.lib v2024.02 SQWareProduction for PostgreSQL (dbSQWare) ... 

#Standard help for script sqwpg_RestoreDatabase.ksh:

$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -h
#Display online help for this script

$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.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.ksh -s
#Display usage examples for this script

$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -I $PG_SID -DT <DatabaseTarget>
#Generate commands but don't execute them !

$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.ksh -I $PG_SID -DT <DatabaseTarget> -Exec
#Execute Standard restore of target database 
#Execute une restauration standard de la database cible

$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.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.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.ksh -I $PG_SID -DT <DatabaseTarget> -RD <path> -Exec
#Restore the target database with the backups contained in the specified directory

$gvsqw_PgBin/sqwpg_RestoreDatabase.ksh.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.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.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.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.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