Restriction: This only applies to Linux platforms.
Specifies the name of the file that is generated when the stackdump_on_error tunable is set to TRUE.
Syntax:
>>-----set stackdump_filename=---"path&filename"-----------><
Parameters:
path&filename
|
The path and name of the file that will be produced when a stackdump file is generated. If
filename contains a tunable string, it is substituted as follows:
-
%%
- Single
%
- %d
- The date of when the program encountered the error, in the format
yyyymmdd
- %f
- The basename of the program that encountered the error
- %p
- The process ID of the program that has encountered the error
- %t
- The time of when the program encountered the error, in the format
hhmmss
|
Properties:
Default:
|
<program-basename>.stackdump.<process-id>.log, created in the current working directory.
|
IDE equivalent:
|
None
|
Example:
set stackdump_filename="/home/temp/stackdump/stack.%p@%t_%d"
Produces a filename such as
stack.12345@165920_20080115, on the path
/home/temp/stackdump.