SQWareProduction:mssql:bin:sqwmsq StatisticsDatabase.ksh: Difference between revisions
m Updated by Expdbtools |
m Updated by BatchUser |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 5: | Line 5: | ||
| | | | ||
<pre> | <pre> | ||
Lack 'FreeTdsAlias' parameter, Usage: sqwmsq_StatisticsDatabase.ksh [-h] | Lack 'FreeTdsAlias' parameter, Usage: sqwmsq_StatisticsDatabase.ksh [-h] -I <FreeTdsAlias> -D <DatabaseName> [+ options] | ||
For full help : sqwmsq_StatisticsDatabase.ksh -h | For full help : sqwmsq_StatisticsDatabase.ksh -h | ||
</pre> | </pre> | ||
| | | | ||
<pre> | <pre> | ||
Not sending mail because you are in connected mode !!! | |||
Lack 'FreeTdsAlias' parameter | Lack 'FreeTdsAlias' parameter | ||
</pre> | </pre> | ||
Latest revision as of 15:05, 23 February 2025
Presentation
Script $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh :
Update Statistics for all tables of the database
Use command: update statistics [$lvsqw_Owner].[$lvsqw_TableName] with fullscan, all
Online help
The online help is available for most scripts with the -h option.
Ex: $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -h
Content of this assistance :
Can't find if env is 'SqlCmd' or 'FreeTds' !
Sourcing sqwmsq_Global.lib v2025.10 SQWareProduction for MsSql (dbSQWare) ...
Usage: sqwmsq_StatisticsDatabase.ksh [-h] -I <FreeTdsAlias> -D <DatabaseName> [+ options]
DESCRIPTION
sqwmsq_StatisticsDatabase.ksh update statistics of database
SUPPORT
MsSql supported versions: 2000 <= v <= 2022
PARAMETERS
-I Instance : Target instance (freeTds alias).
-D databasename : Target database.
OPTIONS
-h : Display the full usage.
-s : Display samples of usage.
-FRT return_code : Force return code value on error.
-AddMail email : Email address to add at 'demo-sqwarebox@dbsqware.com'.
-SendReport : Send execution log report.
-NoMail : Deactivate sendmail on error demo-sqwarebox@dbsqware.com (by default, send on error).
-Locale locale : Force Locale for help display (fr,en).
-Exec : Execute commands (by default, display generated commands).
Error management
Errors passing arguments
This type of message is generated:
Lack 'FreeTdsAlias' parameter, Usage: sqwmsq_StatisticsDatabase.ksh [-h] -I <FreeTdsAlias> -D <DatabaseName> [+ options] For full help : sqwmsq_StatisticsDatabase.ksh -h
If you are connecting through a terminal, no mail will be sent and you will have more this kind of message:
Not sending mail because you are in connected mode !!! Lack 'FreeTdsAlias' parameter
If you are not connected to a terminal, the error message appears and is sent by mail to the address contained in the variable $gvsqw_GlobalMail (See help customize this variable). The subject line will always start by "$gvsqw_MailMsg_mssql : " (See help customize this variable).
Execution errors
Whether you are or not connected to a terminal, the error message appears and an email containing a summary of treatment errors is sent to the address contained in the variable $gvsqw_Mail_mssql (See help customize this variable). The subject line will always start by "$gvsqw_MailMsg_mssql : " (See help customize this variable).
Usage examples
Can't find if env is 'SqlCmd' or 'FreeTds' ! Sourcing sqwmsq_Global.lib v2025.10 SQWareProduction for MsSql (dbSQWare) ... #Standard help for script sqwmsq_StatisticsDatabase.ksh: $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -h #Display online help for this script $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -Locale en -h #Display online help for this script with forcing of the 'en' locale (by default locale managed by $gvsqw_Locale) $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -s #Display usage examples for this script $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -I $Alias -D <DbName> #Generate commands but don't execute them ! $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -I $Alias -D <DbName> -Exec #Update statistics of the target database $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -I $Alias -D <DbName> -AddMail 'mymail1@mydomaine.com,mymail2@mydomaine.com' -Exec #Add the mail list to the default address managed by $gvsqw_GlobalMail $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -I $Alias -D <DbName> -SendReport -Exec #Send the log by email at the end of the treatment even if there is no error $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -I $Alias -D <DbName> -NoMail -Exec #Disables sending an email on error to $gvsqw_GlobalMail (by default, send on error) $gvsqw_MsqBin/sqwmsq_StatisticsDatabase.ksh -I $Alias -D <DbName> -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_sqwmsq_StatisticsDatabase=<NumericValue> #in configuration file $gvsqw_MsqBin/../etc_cust/sqwmsq_GlobalVar.cfg
