Difference between revisions of "Template:SQWareProduction sqwsyb UpdtStatsRebuildWithFlag.ksh example"
m (Updated by BatchUser) |
m (Updated by BatchUser) |
||
(20 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
− | Sourcing sqwsyb_Global.lib | + | Sourcing sqwsyb_Global.lib v2024.07 SQWareProduction for Sybase (dbSQWare) ... |
#Standard help for script sqwsyb_UpdtStatsRebuildWithFlag.ksh: | #Standard help for script sqwsyb_UpdtStatsRebuildWithFlag.ksh: | ||
− | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -h | |
− | |||
− | |||
− | |||
− | |||
− | $gvsqw_SybBin/ | ||
#Display online help for this script | #Display online help for this script | ||
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.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_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -s |
#Display usage examples for this script | #Display usage examples for this script | ||
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> |
− | # | + | #Generate commands but don't execute them ! |
+ | |||
+ | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -Exec | ||
+ | #Execute rebuild and update stats triggering by detection of flag (filename) | ||
+ | |||
+ | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -NoWaitFlag -Exec | ||
+ | #Execute rebuild and update stats without waiting for the detection of the flag | ||
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -Timeout <NumericValue> -Exec |
− | # | + | #Specifies the time in seconds to wait for the target dataserver to respond |
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -Agr 20 -Exec |
#Set the waiting time in seconds between two command run, 20s here | #Set the waiting time in seconds between two command run, 20s here | ||
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec |
− | # | + | #Add the mail list to the default address managed by the variable gvsqw_GlobalMail |
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -SendReport -Exec |
− | # | + | #Send the log by email at the end of the treatment even if there is no error |
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -NoMail -Exec |
− | # | + | #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) |
− | $gvsqw_SybBin/ | + | $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -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: $ | + | #environnement if you set the variable: $gvsqw_ForcedReturnCodeScript_sqwsyb_UpdtStatsRebuildWithFlag=<NumericValue> |
#in configuration file $gvsqw_SybBin/../etc_cust/sqwsyb_GlobalVar.cfg | #in configuration file $gvsqw_SybBin/../etc_cust/sqwsyb_GlobalVar.cfg | ||
</pre> | </pre> |
Latest revision as of 15:55, 31 October 2024
Sourcing sqwsyb_Global.lib v2024.07 SQWareProduction for Sybase (dbSQWare) ... #Standard help for script sqwsyb_UpdtStatsRebuildWithFlag.ksh: $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -h #Display online help for this script $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -Locale en -h #Display online help for this script with forcing of the 'en' locale (by default locale managed by $gvsqw_Locale) $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -s #Display usage examples for this script $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> #Generate commands but don't execute them ! $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -Exec #Execute rebuild and update stats triggering by detection of flag (filename) $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -NoWaitFlag -Exec #Execute rebuild and update stats without waiting for the detection of the flag $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -Timeout <NumericValue> -Exec #Specifies the time in seconds to wait for the target dataserver to respond $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -Agr 20 -Exec #Set the waiting time in seconds between two command run, 20s here $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec #Add the mail list to the default address managed by the variable gvsqw_GlobalMail $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -SendReport -Exec #Send the log by email at the end of the treatment even if there is no error $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -NoMail -Exec #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) $gvsqw_SybBin/sqwsyb_UpdtStatsRebuildWithFlag.ksh -I $DSQUERY -Flag <filename> -SshConn <usr@host> -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_sqwsyb_UpdtStatsRebuildWithFlag=<NumericValue> #in configuration file $gvsqw_SybBin/../etc_cust/sqwsyb_GlobalVar.cfg