Why... Why... Why?
This blog is dedicated to documenting error resolution and other tidbits that I discover while working as a Consultant in the Oracle EPM (Hyperion) field. As much of my job revolves around issue resolution, I see an opportunity to supplement the typical troubleshooting avenues such as the Oracle Knowledgebase and Oracle Forums with more pinpointed information about specific errors as they are encountered. Beware, the information found in this blog is for informational purposes only and comes without any warranty or guarantee of accuracy.

EPMVirt: Create your own Oracle Hyperion Virtual Environment:

Wednesday, December 17, 2014

How to Triage Hyperion Errors in Windows


Ever get stuck with a intermittent application error requiring frequent interaction to help bounce the service if it gets stuck? Sometimes it is necessary to quickly detect an error and act on it immediately. For instance, if a production service such as DRM is crashing intermittently - but the service remains running - how can you effectively triage the issue? Another use case is with development activities. Sometimes during development the environment is somewhat unstable as new features come online - If you are not around to bounce the service do development activities come to a halt?

One option is to identify a specific Windows Event that denotes the error and attach a restart script to have windows automatically restart the service.

Keep in mind I am not recommending that simply bouncing the service it is going to solve the root problem. However, this trick can really cut down on downtime if an issue is present and help you focus on the root cause rather than babysit the symptoms.

For instance,
Let's say that an intermittent error occurs in DRM which comes out in the Event Log:

If you right click on the event there is an option "Attach task to this event...."

When you select this you are essentially provided the screens to create a Windows scheduled task such as in Task Manager.

At this point, you can quickly configure sending an email to be notified of the event. My favorite option is to run a script by selecting "Start a program":

You can setup a quick script to bounce the service and point to the script.

set LOG=c:\drmrestart.log
net stop "Oracle DRM Server Processes"
net start "Oracle DRM Server Processes"
date /t >> %LOG%
time /t >> %LOG%
When finished, be sure to go into advanced properties:
  1) set the user to "system"
  2) make sure the script runs with highest privileges



That's all there is to it! At this point there is no need to babysit the service - it will detect the error condition automatically and bounce itself. Now you can get on to more important things such as finding that root cause.

No comments:

Post a Comment