Setting the location of HspEventLog.log

Hi. Can anyone tell me how to change the location of HspEventLog.log? In our Development environment it currently resided at the root of C: which makes no sense at all. I suspect this is set using the configuration utility - correct? We are using Planning 9.2.
Thanks
Sean

jts wrote:
Sean,
Trying a stab I had the same problem with planning logs and John told me the path set is in the regedit of your Planning server. In (going by memory) HKEY_Local_Machine/Software/Hyperion/Planning
In here is two entries for error and out files. You know they are correct if they have a path of C:\
JTSHi,
Are you not getting confused with setting the error files for the standard planning web application, this is different than the hspeventlog.log which is created from using the planning desktop.
It has been a while since I have used 9.2 but maybe it is defined in the planning desktop, the system folder setting?
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Changing the location of archive log from flash recovery area PLZ HELP!!!

    Hi All,
    My archive log is being stored in flash memory area which got full and the production server went down.
    alert log file details.....
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 43432960 bytes disk space from 2147483648 limit
    *** 2010-04-25 14:22:49.777 62692 kcrr.c
    ARCH: Error 19809 Creating archive log file to
    '/oracle/product/10.2.0/flash_rec
    overy_area/EDWREP/archivelog/2010_04_25/o1_mf_1_232_%u_.arc'
    *** 2010-04-25 14:22:49.777 60970 kcrr.c
    kcrrfail: dest:10 err:19809 force:0 blast:1I removed the files and started the database,
    Can someone kindly tell me as to how to avoid this problem in future by keeping archive log destination in flash recovery area.
    I want to change the location of archive log files, can someone please guide me as to hiow to do that
    I changed the size of flash recovery area for the time being, but i am afraid it will be full again!!
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                99.44                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.
    SQL> alter system set DB_RECOVERY_FILE_DEST_SIZE = 4G ;
    System altered.
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                49.72                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.regards,
    Edited by: user10243788 on Apr 25, 2010 6:12 AM

    user10243788 wrote:
    Hi All,
    My archive log is being stored in flash memory area which got full and the production server went down.
    alert log file details.....
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 43432960 bytes disk space from 2147483648 limit
    *** 2010-04-25 14:22:49.777 62692 kcrr.c
    ARCH: Error 19809 Creating archive log file to
    '/oracle/product/10.2.0/flash_rec
    overy_area/EDWREP/archivelog/2010_04_25/o1_mf_1_232_%u_.arc'
    *** 2010-04-25 14:22:49.777 60970 kcrr.c
    kcrrfail: dest:10 err:19809 force:0 blast:1I removed the files and started the database,
    Can someone kindly tell me as to how to avoid this problem in future by keeping archive log destination in flash recovery area.
    I want to change the location of archive log files, can someone please guide me as to hiow to do that
    I changed the size of flash recovery area for the time being, but i am afraid it will be full again!!
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                99.44                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.
    SQL> alter system set DB_RECOVERY_FILE_DEST_SIZE = 4G ;
    System altered.
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                49.72                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.regards,
    Edited by: user10243788 on Apr 25, 2010 6:12 AMPointing the archive log dest (and/or the FRA) to a new location, or enlarging them, will do no good if you are not performing regular housekeeping on the archivelogs. You will just keep knocking down the same problem over and over.
    If you simply delete the archivelogs at the OS level, the database will never know about it and it will continue to think the destination is full, based on records kept in the control file.
    For regular housekeeping, you need to be doing something similar to this in rman:
    run {
      backup archivelog all not backed up 1 times tag='bkup_vlnxora1_arch';
      delete noprompt archivelog all backed up 1 times to device type disk;
    run {
    delete noprompt obsolete;
    crosscheck archivelog all;
    delete noprompt expired archivelog all;

  • How to set the location of a button  (in an applet)

    Hello
    How do i set the location of the button
    forexample if i want to create a button in the middle of the applet, how would i do that
    Thanks :)

    supahsain08 wrote:
    Well i did this
    Triangle.setLocation(50, 100);
    (where Triangle is a buton)
    it doesn't do anything, stays at the same placeIt's all about context here and there are still many unknowns here that can effect your result and that you have not told us or shown us. My suggestion to you is to consider posting an SSCCE (Short, Self Contained, Correct (Compilable), Example, a condensed program similar to your current program in that it demonstrates the problem at hand, but is the smallest bit of code that still compiles and has no extra code that's not relevant to your problem. For more info on SSCCEs please look here:
    [http://homepage1.nifty.com/algafield/sscce.html|http://homepage1.nifty.com/algafield/sscce.html]
    Also, when posting your code, please use code tags so that your code will retain its formatting and be readable. To do this, you can will need to paste already formatted code into the forum, highlight this code, and then press the "code" button at the top of the forum Message editor prior to posting the message. You may want to click on the Preview tab to make sure that your code is formatted correctly. Another way is to place the tag [code] at the top of your block of code and the tag [/code] at the bottom, like so:
    [code]
      // your code block goes here.
      // note the differences between the tag at the top vs the bottom.
    [/code]or
    {code}
      // your code block goes here.
      // note here that the tags are the same.
    {code}good luck, pete

  • How to set the location of a button

    Hello
    How do i set the location of the button
    forexample if i want to create a button in the middle of the applet, how would i do that
    Thanks :)

    Do not make duplicate posts.
    http://forum.java.sun.com/thread.jspa?threadID=5293505&messageID=10240164#10240164

  • Where can i set the location of the LogonTicket cookies in the visual admin

    hello:
       where can i set the location of the LogonTicket cookies in the visual administrator?
    thanks!!

    Hi,
    When the SAP LOGON ticket Expired or if we need to update the dates, it is generally done at the Visual Administration Level. SAP Logon Ticket is represented as cookie in the Browser which will help us for SSO.
    In Visual Admin under keystore admin where our Old Portal certificate exists.
    We will need to delete the old portal certificate, then we need to generate new ceritificate and a pop box will appear.. where we need to provide our System details like SID, Client. After these details are given we can get a new certificate in which validity period dates are automatically generated. And also we can import teh same into Portal at Sys Admin->sys config->key store admin for it to be available as .PSE or .DER file for SSO.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/59bba290-0201-0010-468b-cd12efda573a
    check the above for EP security guide which might help you in the same.
    Regards,
    Ravi

  • How can i set the location of my pictures in photos app for mac osx?

    Not every photo I import into my MacBook have all the metadata in them. iPhoto allowed for setting the location, but in Photos I cannot manage to do so. Is there another way to do it or perhaps it's coming with an update?
    Thanks
    MacBook Mid-2010
    OSX Yosemite 10.10.3
    Photos 1.0

    Adding location data is not yet supported in Photos.
    And we do not know, if future updates will  support this feature. It might help, if you send back feedback to Apple with a feature request. You can use this form:  Apple - Photos - Feedback
    As a work-around, use third party apps to add location data before you import the photos to Photos.
    You could, for example, first import to iPhoto, add the locations, batch change the titles and captions, do all the things that are not yet supported in the new Photos, then export the photos from iPhoto and import them to Photos.
    Or use the free exiftool, if you like the Terminal.
    See:  http://www.sno.phy.queensu.ca/~phil/exiftool/exiftool_pod.html#geotagging_exampl es
    To install exiftool: http://www.sno.phy.queensu.ca/%7Ephil/exiftool/install.html
    Other convenient apps are Jetphoto Studio, Geotagalog, there are many more ..
    I use Jetphoto Studio, but it is not free.

  • OMB command to set the location of an ODBC module

    I am writing OMB scripts to deploy an OWB project to a production environment.
    In the deployment script, I set the location of an Oracle module using the OMB commands :
    OMBALTER ORACLE_MODULE '<modulename>' ADD REFERENCE LOCATION '<locationname>' SET AS DEFAULT
    OMBALTER ORACLE_MODULE '<modulename>' SET PROPERTIES (DB_LOCATION) VALUES ('<locationname>')
    I also have an ODBC module for which I need to assign a location in the same way
    What is the OMB syntax to achieve this?
    OWB version 10.2.0.4

    You can use GATEWAY_MODULE for these. For example ...
    OMBALTER GATEWAY_MODULE '<modulename>' SET PROPERTIES (DB_LOCATION) VALUES ('<locationname>')
    Cheers
    David

  • Can anyone tell me how to remove the owner when setting the location

    Hello,
    Can anyone tell me how to remove the owner when setting the location?
    Properties
       Table Name:  (Table Name)
       Table Type:   Tables
       Owner:           Public
       Overridden Qualified Table Name:  (Table Name - same as above)
    Any help would be appreciated.
    Thanks
    Ann

    Hi Ann,
    please check this document to determine the correct space for your question:
    Find Topic Spaces on SCN (Forums)
    If you need help moving it, let me know!
    Thanks,
    Kristen

  • Setting the location in 5760

    I am trying to find a way to set the "location" information in the WAPs that are connected to the 5760. When I try to make the changes manually via the web interface, the changes don't stick. I have not found out how to make the changes via CLI. Any assistance in figuring this out would be greatly appreciated. 

    CCX Location Measurement Q – Default is off; enable if you use the CCX location features:
    ap dot11 24/5ghz rrm ccx location-measurement <cr>
    Use the no form to disable.
    Refer
    http://www.cisco.com/c/en/us/td/docs/wireless/technology/5760_deploy/CT5760_Controller_Deployment_Guide/Radio_Resource_Management_Configuration.html

  • How can I set the location of the files for My Digital Editions?

    When I installed REader for PC it set up as its file location  a location which makes no sense to me and I want to move it nto My Documents.  How do I do this without REader for PC "losing" its files?

    Adding location data is not yet supported in Photos.
    And we do not know, if future updates will  support this feature. It might help, if you send back feedback to Apple with a feature request. You can use this form:  Apple - Photos - Feedback
    As a work-around, use third party apps to add location data before you import the photos to Photos.
    You could, for example, first import to iPhoto, add the locations, batch change the titles and captions, do all the things that are not yet supported in the new Photos, then export the photos from iPhoto and import them to Photos.
    Or use the free exiftool, if you like the Terminal.
    See:  http://www.sno.phy.queensu.ca/~phil/exiftool/exiftool_pod.html#geotagging_exampl es
    To install exiftool: http://www.sno.phy.queensu.ca/%7Ephil/exiftool/install.html
    Other convenient apps are Jetphoto Studio, Geotagalog, there are many more ..
    I use Jetphoto Studio, but it is not free.

  • Is their a activeX api function to set the database option "database logging enabled" to true or false?

    Hello!
    I want to decide dynamically while running a sequence to log the results to a database or not.
    So I need to set the "database logging enabled" property by a activex function call.
    Does a activex api function exist? I didn't found one, or is their an other way to change the property value?
    Thanks and regards
    M. Brosig

    Hi,
    Ah! I understand.
    You can change the runtime properties from you sequence or inside your step by using the Lookup string of
    "RunState.Caller.Locals.DatabasesOptions.DisableDatabaseLogging"
    Use the TS API  PropertyObject.SetValBoolean("DatabasesOptions.DisableDatabaseLogging", 0, newValue) method with RunState.Caller.Locals as your ActiveX Reference. (where newValue would be True or False.)
    Depending at what level you perform this API method depends how many "RunState.Caller" you have in your lookup string.
    eg.
    My example of
    PropertyObject.SetValBoolean("DatabasesOptions.DisableDatabaseLogging", 0, newValue) with RunState.Caller.Locals as your ActiveX Reference is based on a step in MainSequence which has been called by the Process Model sequence.
    If you have a step in a Sub-Sequence of MainSequence then the lookup string would be
     "RunState.Caller.RunState.Caller.Locals" as the activeX reference.
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • SetLocation does not set the location

    Hi,
    I have just come to a very strange problem. I cloned a JComponent after implementing the Cloneable interface. The second object is moved across a work sheet and then setLocation is called on the first element using the second element's position, i.e.:
    JComponent c2 = c1.clone();
    c1.setLocation(c2.getLocation());
    The strange thing is that after this statement, the location of the first component is not changed. But if I use fixed constants, e.g.
    c1.setLocation(new Point(300, 300));
    everything works fine.
    I hope someone can help me as cloning seems to be the only method in my case (components can be user-implemented, so cannot use serialization)
    Tilman

    I tried c1.setLocation(new Point(c2.getLocation())); but without success. Meanwhile I found out, that the location of the first component is only set if the second component has a different location. I have the impression that both object somehow share an object that causes this problem because it has not be cloned.

  • After setting the db to archive log mode what to do?

    Hi All,
    We have a database which is being used as production database since one week and running in NoArchive Log mode. Now i wanted to change that to Archive Log mode because i want to take hot backup using RMAN daily/weekly. My doubt is..after changing the db to Archive Log mode, can i take backup using RMAN (i got a RMAN script to take a hot backup of db)? which will contain all the backup with control files and spfiles? or do i have to do anything before taking hotbackup.
    Thanks,
    Praveen.

    Yes you are fine. BTW, how many archive destinations did you configure.
    Usually it is more than 1 on two different Disks.
    TEST CASE:
    NOARCHIVELOG Database
    Change it ARCHIVELOG
    Take a hot backup and try to restore/recover it.
    STATUS=SUCCES
    Can someone explain this to me please:-
    Ensure DB in noarchivelog mode
    SQL> archive log list
    Database log mode No Archive Mode
    SQL> startup mount;
    SQL> alter database archivelog;
    SQL> alter database open;
    -- DID Not take a COLD BACKUP
    -- Right after switching the mode I am taking hot backup
    RMAN> backup incremental level=0 database ;
    RMAN> backup archivelog all delete all input;
    Nuke the datafiles
    RMAN> SET DBID=1299283748;
    RMAN> restore controlfile from autobackup;
    run
    set until logseq=79 ;
    restore database;
    recover database;
    sql 'alter database open resetlogs';
    Database is opened restored / recovered?
    I totally agree we should take a cold backup right after switching the mode. Can someone explain the above though.
    Message was edited by:
    gopalora

  • Servlet filter to set the  time to write logs

    hi all,
    i need to write a Servletfilter that writes log for timestamp of every 15 mins... can anyone help me out...
    i am new to filters...i tried to search from net...
    but i couldn find any details...
    they have mentioned by using log4j prop file we can do tat...
    but i have to write a filter tat does the task of writing logs for every duration of 15 mins...
    plz anyone help me out

    violet123 wrote:
    hi all,
    i need to write a Servletfilter that writes log for timestamp of every 15 mins... can anyone help me out...no. Can't be done, not using a ServletFilter.
    i am new to filters...i tried to search from net...apparently, as you seem to have no idea of what they actually do
    but i couldn find any details... look better.
    they have mentioned by using log4j prop file we can do tat...no. Whomeever "they" are, they either misunderstood you or you misunderstood them (or both, but more likely the latter).
    but i have to write a filter tat does the task of writing logs for every duration of 15 mins...forget about it.

  • Set the location of JOptionPane

    Hi all,
    i want to show a "JOptionPane.showConfirmDialog" in a specific location on the screen.
    i need the location to be ABSOLUTE and not to be relative to the parent of the JOptionPane.
    i tried to make an instance of the JOptionPane then apply the method "setLocation(int x , int y)" then show it using setVisible
    but this don't work
    so any suggestions ???!!!!
    thanx in advance

    experiment with x,y in this
    (optionPane's middle will be at x,y)
    import javax.swing.*;
    class Testing
      public Testing()
        int x = 100,y = 80;
        JFrame f = new JFrame();
        f.setUndecorated(true);
        f.setBounds(x,y,0,0);
        f.setVisible(true);
        JOptionPane.showMessageDialog(f,"I should appear near: "+x+", "+y);
        System.exit(0);
      public static void main(String args[]){new Testing();}
    }

Maybe you are looking for

  • Firefox not firing the IOErrorEvent

    Firefox not firing the IOErrorEvent when load fails due to unavailability of internet connection in URLLoader. I am loading data in my application based on user actions. If the user is disconnected and he makes a request for data load, the IOErrorEve

  • Safari Web Content consuming all my memory

    I'm having a problem with Safari Web Content. I've jst re-loaded Mountain Lion in a brute forcve attempt to resolve my issue, but it's still occurring. The issue is:  with very little running, if I run Safari and bounce around a few websites, I can e

  • Cannot open another mailbox

    Hi I have two email accounts on OWA365 I log into one then when I click open another mailbox I get an error... something went wrong Your mailbox appears to be unavailable. Try to access it again in 10 seconds. If you see this error again, contact you

  • Function Module MASTER_IDOC_DISTRIBUTE to be called in background task?

    Hi, We are generating outbound Idocs in a report. In this report we are using Function Module Master_Idoc_Distribute. Now we have faced some performance issues and the basis consultant is asking us to: Call the function module using CALL FUNCTION Mas

  • I can't open .psd file

    says error:213:19