Collection Contents Index SQL Anywhere Script Execution utility (dbrunsql) Next PDF

SQL Anywhere® Server - Database Administration  > Database Administration Utilities

SQL Anywhere Support utility (dbsupport)


Sends information about errors and software usage to iAnywhere.

Syntax

dbsupport [ options ] operation [ operation-specific-option ]

dbsupport configuration-options

OptionDescription
@data

Use this option to read in options from the specified environment variable or configuration file. See Using configuration files.

If you want to protect passwords or other information in the configuration file, you can use the File Hiding utility to obfuscate the contents of the configuration file. See File Hiding utility (dbfhide).

-o filenameSend output to the specified file.
-qDisplay only critical messages.
OperationDescription
-is submission-ID [ -rr N ]

Use the -is option to check the status of a crash report that has been submitted to iAnywhere.

For example, the following command inquires about the status of submission ID 66:

dbsupport -is 66
-iu [ -r N ]

You can specify the -iu option to check for updates to your build of SQL Anywhere.

You can also check for updates using Interactive SQL and Sybase Central. See Options dialog: Check for Updates tab.

-lcUse the -lc option to generate a list of all crash reports that have not been submitted to iAnywhere. The report names listed can be used with the -sc option.
-ls

Specify the -ls option to generate a list of submission IDs for all reports that have been submitted to iAnywhere. For example:

dbsupport -ls

This returns information similar to the following:

Submission ID: 4
Minicore dump 20051220_133828_32116 reported: Wed Mar 15 16:31:56 2006
Submission ID: 98
Minicore dump 20051229_221211_3221 reported: Wed Mar 22 16:33:26 2006
-pc filenameSpecify the -pc option to print crash report information. You can use this option to view information before it is submitted to iAnywhere.
-pdSpecify the -pd option to print the diagnostic information that has been collected. You can use this option to view information before it is submitted to iAnywhere.
-ps submission-ID

Use the -ps option to display information about a specific report that has been submitted to iAnywhere. For example:

dbsupport -ps 4

This returns information about submission 4:

Minicore dump 20051220_133828_32116 reported: Wed Mar 15 16:31:56 2006
-sa [ -r number-of-submission-retries ]Specify the -sa option to submit all crash report and diagnostic information stored in the diagnostic directory to iAnywhere.
-sc reportname [ -r number-of-submission-retries ] [ -nr | -rr N ]

Specify the -sc option to submit a crash report and diagnostic information to iAnywhere. For example:

dbsupport -sc 20051220_133828_32116

Use the -lc option to see a list of reports that have not been submitted.

-sd [ -r number-of-submission-retries ]

Specify the -sd option to submit all crash report and diagnostic information to iAnywhere.

For more information about the diagnostic directory, see SADIAGDIR environment variable.

Configuration options
Configuration optionDescription
-cc [ autosubmit | no | promptDefY | promptDefN ]

The -cc option lets you change the prompting behavior of dbsupport. You can specify one of the following options:

  • autosubmit  Submit reports automatically.

  • no  Do not prompt for permission to submit reports. Reports are not submitted.

  • promptDefY  If possible, prompt for permission to submit the report. If no answer is given, submit the report.

  • promptDefN  If possible, prompt for permission to submit the report. If no answer is given, do not submit the report. This is the default behavior.

    For example, if you are using embedded SQL Anywhere in an application, you may want to configure the SQL Anywhere Support utility to not submit reports to iAnywhere.

If you specify this option, its value becomes the default used by the SQL Anywhere Support utility. The configuration is stored in the dbsupport.ini file in the diagnostic directory.

The following command configures the SQL Anywhere Support utility so that it does not submit reports and never prompts the user to submit reports:

dbsupport -cc no
-cd

Specify -cd to specify the retry delay, in seconds, for submitting a report if the previous attempt is unsuccessful. The default delay is 30 seconds.

If you specify this option, its value becomes the default used by the SQL Anywhere Support utility. The configuration is stored in the dbsupport.ini file in the diagnostic directory.

The following dbsupport command specifies that failed operations should be retried every 3 seconds, up to a maximum of 4 times before giving up:

dbsupport -cr 4 -cd 3
-ch crash-handler-program

The -ch option is used to specify a program that is called when a crash occurs.

If you specify this option, its value becomes the default used by the SQL Anywhere Support utility. The configuration is stored in the dbsupport.ini file in the diagnostic directory.

The database server supports three substitution parameters that set up information that is passed to the crash-handler-program:

  • %F  This parameter is substituted for the full path to the location of the generated report file.

  • %P  This parameter is substituted for the name of the program that generated the report. For example, if a version 10 personal database server generates the report, dbeng10 is returned.

  • %S  This parameter is substituted for the name of the database server that was in use when the crash or fatal error occurred. For example, if a database server named Sample generated the report, Sample is returned.

You can use $F, $P, and $S as alternatives to %F, %P, and %S. Because different command shells interpret the characters % and $, both are provided. For example, on 4NT, %F would be substituted with the value of the environment variable F; $F can be used to avoid this substitution.

Suppose you have a crash handler program in c:\test.bat that contains the following commands:

copy %1 c:\archives
echo %2

On Windows, the following command tells dbsupport to launch c:\test.bat with two parameters when a crash occurs. If the report is being submitted, this program is called before the report is submitted.

dbsupport -ch "c:\test.bat \"%F\" parm2"

The substituted path specified by %F is sent to c:\test.bat as the first parameter. The parameter parm2 is sent to c:\test.bat as the second parameter. Note that quotation marks must be used to specify a crash handler program that takes arguments.

In the example above, additional quotes were used around the full path to the generated report file. To avoid problems accessing the report file that dbsupport is using, the crash handler program should make its own copy of the report file, as shown above.

-ch-

Use the -ch- option to remove the crash handler settings that are stored in the dbsupport.ini file. For example:

dbsupport -ch-
-cid customer-id

The -cid option specifies a string that identifies you in the submission report. If you specify this option, its value becomes the default used by the SQL Anywhere Support utility. The configuration is stored in the dbsupport.ini file in the diagnostic directory.

The following examples specify a customer identification string for dbsupport:

dbsupport -cid myid@company.com

dbsupport -cid "MyClientApp 1.0"
-cid-

Use the -cid- option to remove the customer identification string from the dbsupport.ini file. For example:

dbsupport -cid-
-cp email-server [ :port ]Configure HTTP proxy host and port.
-cp autodetect

Use the -cp option to configure the HTTP proxy host and port used to submit crash reports.

On Windows, the syntax -cp autodetect is also supported. If you specify this option, then if a proxy server and port have been set using Internet Explorer, and they are currently enabled, dbsupport configures its proxy server and port using the system setting. You can set the proxy server and port in Internet Explorer on Windows by choosing Tools > Options > Lan Settings

-cp-

Use the -cp- option to remove HTTP proxy host and port settings from the dbsupport.ini file. For example:

dbsupport -cp-
-cr number-of-submission-retries

Use the -cr option to specify the number of times a failed submission should be retried.

If you specify this option, its value becomes the default used by the SQL Anywhere Support utility. The configuration is stored in the dbsupport.ini file in the diagnostic directory.

The following dbsupport command specifies that failed operations are should be retried every 3 seconds, up to a maximum of 4 times before giving up:

dbsupport -cr 4 -cd 3
Operation-specific optionDescription
-nr

If you specify -nr, then dbsupport does not check the server for the status of the submission. For example, the following command submits the report, but does not check for the status of the new submission:

dbsupport -nr -sc 20051220_133828_32116

By default, dbsupport checks whether there is already a fix for the problem being submitted.

-r number-of-submission-retriesUse the -r option to specify the maximum number of times dbsupport should try to send the submission. Specifying 0 means retry indefinitely. The default value is 10. Specifying -r overrides the -cr value stored in the dbsupport.ini if one exists.
-rd retry-delayUse the -rd option to specify the number of seconds dbsupport waits between attempts to resend the report. The default value is 30. Specifying -rd overrides the -cd value stored in the dbsupport.ini if one exists.
-rr number-of-submission-response-retriesUse the -rr option to specify the maximum number of times dbsupport should try to obtain a submission response. Specifying 0 means retry indefinitely. The default value is 10.
Remarks

The SQL Anywhere Support utility (dbsupport) can be used for any of the following tasks:

Information from any of the following applications can be sent as an error report if a fatal error occurs:

When a report is successfully submitted, it is assigned a unique submission ID. Reports are written to the diagnostic directory. For information about the diagnostic directory, see SADIAGDIR environment variable.

For more information about error reports and how they are submitted, see Error reporting in SQL Anywhere.

PlatformDefault diagnostic directory location
Windows (except Windows CE)%ALLUSERSPROFILE%\Application Data\SQL Anywhere 10\diagnostics
Windows CEDirectory where the executable is running.
Unix$HOME/.sqlanywhere10/diagnostics
NetWare SYS:\SYSTEM

The SQL Anywhere Support utility can be configured to perform certain actions when a problem is detected. For example, it can configured to execute a specified handler program each time the database server submits an error report. This feature is useful for adding your own custom actions to the error handling process.

The SQL Anywhere Support utility can be configured to retry certain operations. For example, when submitting a report, it could be configured to retry the operation again in 30 seconds, up to a maximum of 10 times. This feature is useful for handling the case where the service may be temporarily unavailable.

Settings for the SQL Anywhere Support utility are stored in the dbsupport.ini file in the diagnostic directory.

The operation-specific options are useful for overriding default behavior, including those that have been saved in the dbsupport.ini file.

See also

Collection Contents Index SQL Anywhere Script Execution utility (dbrunsql) Next PDF