Well, I have dealing alot with SIG crashes recently. And as we all know as part of investigating these, you need FDR(Flight Data Recorder) file as well. This file gets generated in the bin directory of siebel server for every hard crash.
Problem with FDR is that it is not in readable format and you need to convert it in csv first.
You can find a way to do that on many sites as below :
sarmanalyzer -o <output.csv> -x -f <fdr file>
But, with my own experience, most of you will end up with the below error :
sarmanalyzer: not found
So I am putting down all the steps which are required to perform sequentially to convert a fdr to csv :
1) Go to bin directory of siebel server
2) cd ..
3) . ./siebenv.sh
4) cd bin
5) sarmanalyzer -o <output.csv> -x -f <fdr file>
Also make sure that the user with which you have logged in unix box have the credentials to create a file in bin directory. If the permission is not there, then give an absolute path for csv file where the user have the permission to create the file.
For detailed information, you can go through Oracle Metalink Id : 473939.1
Hope these steps will save your time and end up debugging the issue for SIG crashes successfully. Happy Exploring !!!