Disable commands BUG under Sun-Solaris 10 ?

<p>If you execute a disable commands while another user is justdoing a "force restructure",</p><p>you got no error and the command "display application"shows the command-flag with false.</p><p> </p><p>But every user can still execute a "force restructer",even if the user log in later.</p><p> </p><p>This behaviour occurs under OS=Sun Solaris with essbase Version9.2.0.1,</p><p>under windows with essbase version 9.2 Build 082 it worksfine.</p><p> </p><p>Is this a known BUG ?</p>

I can't help you solaris tuning, but some things to look at.
1. Is the Essbase.cfg file the same on both servers? You might have parallel calculation turned on in one and not the other. Caches could also be set differently
2. Are the database caches set the same? This could impact performance as well
3. Are you doing an apples to apples comparison? Is one database loaded and recalculated many times while the other is not (or restructured or reloaded)

Similar Messages

  • Oracle 9i and IDS under sun solaris 8

    Need some help on oracle 9i and IDS under sun OS
    i want some clariffication in my project.
    If i develop my application under "sun solaris 8" OS for x86 with "oracle 9i"
    as the backend and "IDS" (internet developer suite) as the front end, Can my
    application be ported to the other environment i.e "SUNFIRE 280R" as the
    server with sun solaris 8 as the OS and the same DB and front-end ?.
    will there be any porting problems ?.
    i am new to this environment.And i don't have SUNFIRE 280R server with me and
    the customer won't supply it.
    can anybody guide me please ?.(i am looking for the suggestions form those who
    really worked on this environment.)
    Murthy

    Andrea...for a faster response, please post this question in the Database - Installation forum:
    Database Installation

  • LOV under SUN SOLARIS

    Hello my 'last hope',
    My little problem is:
    I developed an 'application' with forms 6 on a windows NT pc. This application has to run on a SUN Solaris pc. Everything is ok except: I can reach the OK / Cancel / Help button by keyboard navigation. I tried to find the solution in Oracle Terminal(mmmhhh not a nice tool).
    waiting for my rescue,
    Erik

    What is your ESSLANG environment variable set to and does it support the characters you have in your outline?Tim TowApplied OLAP, Inc

  • OEM for sun solaris

    Hello,
    I'm working on Database studio (Oracle Enterprise Manager) under window environemt, but I'm wondering if there is GUI OEM for sun solaris like this in windows ?and if there is one what's the name of the file, or how can i install it ?
    Thanks.

    EM is available for Sun Solaris too. If you are using Oracle Server v8.1.6 and earlier, EM has to be installed separately in a different Oracle Home. however, with effect from v 8.1.7, installation of the Oracle Server also installs the base EM.
    Some commands for starting on Solaris.
    1. oemapp console for starting the console
    2. oemapp dbastudio for starting the dbastudio
    3. oemctrl start oms for starting the Management Server
    4. lsnrctl start for the listener
    5. lsnrctl dbsnmp_start for the Agent

  • JavaMail from Sun Solaris

    Ok, I am fairly new to Java. I am trying to send a simpole mail from our Sun Solaris box. With perl or shell I use the malix program. How do I get java to envoke the same program, or is it even possible. If not, is there a default SMPT mail program that comes with Sun Solaris that I can use as the name for the following code:
    props.put("mail.smtp.host", smtpServer);
    Session session = Session.getDefaultInstance(props, null);
    Any help would be greatly appreciated.

    What u can do is to envoke a class that uses props.put("mail.smtp.host", smtpServer);
    here is the class file:
    package com.classes.homepage;
    import java.io.IOException;
    import java.io.PrintStream;
    * Class for sending mail to given email address.
    * It is a wrapper of the sun.net.smtp.SmtpClient class which is not documented.
    * This way, all public methods of this and the subordinated classes are accessible.
    * <p>
    * <p><b>Known Bugs:</b>
    * @see #startMessage()
    * @version $Revision: 1.4.1.3 $ of $Date: 2000/10/06 21:10:46Z $
    * @author $Author: Garry Labana
    public class testSendMail extends sun.net.smtp.SmtpClient
    //++++++++++++++++++++++++++++++++++
    // static
         /** SMTP mailhost: Default = "mailhost" */
         protected static String MAILHOST="mailhost";
         public static void setMailHost( String _sMailHost)
              MAILHOST = _sMailHost;
    //++++++++++++++++++++++++++++++++++
    // public
         * Constructor:
         * To create a new mail object with a connection to the MCBS default mailhost
         * which is by default read from the application properties (DbProperties + Ini files)
         * The respective property is called 'MAILHOST' with the default value
         * "mailhost".
         * @exception IOException indicates problems when establishing connection
         *                                    to the mailhost
         public testSendMail() throws IOException
              this( MAILHOST );
         * Constructor:
         * To create a new mail object with a connection to the specified mailhost.
         * @param sMailhost     the server name of the SMTP mailhost
         * @exception IOException indicates problems when establishing connection
         *                                    to the mailhost
         public testSendMail( String sMailHost ) throws IOException
              super( sMailHost );
         * To send the mai applying the specified parameters.
         * @param sFrom          the mail address of the sender
         * @param sTo          the mail address of the addressee
         * @param sCC          optional addressee for CC
         * @param sSubject     optional mail subject (title bar, ref.)
         * @param sMessage     the actual message. It can have multiple lines
         *                          using the line feed character '\n'.
         * @exception          IOException in case of problems when sending the mail
         public static void sendMail( String sFrom, String sTo, String sCC,
                                            String sSubject, String sMessage )
              throws IOException
              testSendMail rMail = new testSendMail();
              rMail.from( sFrom );
              rMail.to( sTo );
              PrintStream rMailOut = rMail.startMessage();
              // Important: no println but + "\n", as otherwise problems with Unix mail prog.
              // and Netscape
              rMailOut.print( "From: "+ sFrom +"\n" );
              rMailOut.print( "To: " + sTo + "\n" );
              if( sCC != null ) rMailOut.print( "CC: " + sCC + "\n" );
              rMailOut.print( "Subject: "+( sSubject == null ? "Message Content" : sSubject )+"\n" );
              // Important: line feed in front of message as otherwise 'Text:' will be
              // interpreted as token
              rMailOut.print("\n" + sMessage );
              rMail.closeServer();
         * issue the QUIT command to the SMTP server and close the connection.
         public void closeServer() throws IOException {
              super.closeServer();
         public void to(String s) throws IOException     {     super.to( s );     }
         public void from(String s) throws IOException     {     super.from( s );     }
         * This class implements the SMTP client. You can send a piece of mail by
         * creating a new SmtpClient, calling the "to" method to add destinations,
         * calling "from" to name the sender, calling startMessage to return a stream
         * to which you write the message (with RFC733 headers) and then you finally
         * close the Smtp Client.
         public PrintStream startMessage() throws IOException {
              return super.startMessage();
    } // class testSendMail

  • Is this bugs for Sun Java System Portal Server 6 2005Q4 (errorStoreDP) ?

    Hi,
    I installed Sun Java System Portal Server 6 2005Q4 under window xp environment.
    I used the following command to deploy war file, it worked for me (because I setup enough services and role for amadmin user), deploy/undeploy was worked very well for me.
    pdeploy deploy -u amadmin -w amAdminPassword -g -p
    amAdminPassword -v portletsamples.war
    Two months later, I did not change anything (configuration) within the two months.
    I use the same deploy/undeploy command to deploy war file again, I got the following error =>
    errorStoreDP (sms-UNKNOWN_EXCEPTION_OCCURRED)
    Message:The user does not have permission to perform the operation.
    Why this condition happened ? is this bugs for sun portal server ?
    I uninstall this sun portal server and reinstall it again, I still got
    the same error message. why ?
    But funny thing is that I format my machine, then install window xp and
    install System Portal Server 6 2005Q4 again, then it works for me again.
    is this reasonable ?
    I really don't know why ?
    Can someone help me ?
    Thanks!

    Hello,
    It seems you are really asking how you should design your application to use portlets.
    Your approach now seems to be that you would just copy your servlets to portlets. You can use the PortletRequestDispatcher to include content from your servlet. See http://portals.apache.org/pluto/multiproject/portlet-api/apidocs/javax/portlet/PortletRequestDispatcher.html
    I also found the following discussion on this topic http://www.mail-archive.com/[email protected]/msg00481.html
    But I don't think I'd recommend that approach for your application. How would you maintain the application going forward? You will have both servlets and portlets to maintain when you change the applicaiton. I assume you will be keeping the servlet application and using it also? Do you want the portlet content to match the servlet content always, or will they display differently?
    Instead, what you might consider an model-view-controller approach and designing a web service (the model) for both applications (servlet and portlet, views) to consume.
    As for the basics of porlet applications, the JSPPortlet will use JSPs for presentation of hte portlet content. GenericPortlet is the default implementation of the Portlet interface. Implementing the portlet interface means you must write the implementation yourself. Here are a couple of good tutorials to get you started on the Portlet spec:
    http://www.javaworld.com/javaworld/jw-08-2003/jw-0801-portlet.html
    http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-portlet2.html
    Also there is this JSE tutorial, but I don't know how current it is:
    http://developers.sun.com/prodtech/portalserver/reference/techart/portlets.html
    Hope that helps.

  • How to find a unused hard disk in Sun Solaris unix

    Hi All,
    Can any one tell, how to find all the unused hard disk in Sun Solaris using Unix command.
    Thanks & Regds
    PAN

    not understand your question, find command is used to look for files, not disks.
    easier way is to logon to your system open up 2 windows, on 1 window # cat /etc/vfstab
    on second window type format.
    format will list all the disks in your system.
    vfstab file will list all the potential disks and slices used as swap devices and filesystems like your os and application filesystems etc ...
    then you compares left and right.
    but even then be very very very careful if you find disks in "format" not found in /etc/vfstab doesn't mean disk not in use, if your system is clustered the clustered resources like mounted volumes will not show up under the /etc/vfstab
    if you not familiar with unix u better dun touch.

  • Help needed on installation of Oracle 9i on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Help needed on installation of Oracle 9i EE on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Portal Installation Problem on Sun Solaris

    Hi,
    I'm trying to Install portal (Oracle 9i AS ) on Sun Solaris 2.8 (64 bit). I have followed all the steps and installer show successfull installation. But when I'm trying to check the installation thru web browser, I'm not getting anything. It is not able to load portal. Please let me know do I need to start any listener or anything else.
    What else should I do to check the mistakes because I have installed it twise but no luck.
    Thanks.
    Sandeep

    I am having the same problem installing on Windows 2000. I looked at the services that were installed and two of the ones that were marked as Automatic did not start when I rebooted. They are:
    OracleiSuitesHTTPServer
    OracleOraHome81TNSListener
    I also tried to start the HTTP server from the command line but got the following error:
    D:\Oracle\iSuites\Apache\Apache>apache
    Syntax error on line 14 of D:\Oracle\iSuites\Apache\Apache\conf\mod__ose.conf:
    AuroraService - directive already in effect for this Server
    If anyone has a solution please let me know. I had a hard enough time trying to get through the installation at all.
    Thanks,
    -Stephanie
    null

  • Oracle 10g R2 installation on sun solaris 10 Sparc machine

    Hi there,
    I encountered the following problem during oracle 10g R2 installation on sun solaris 10 Sparc machine
    Error encountered:
    Using paramFile: /u01/Oracle/10gr2_db_sol/install/oraparam.ini
    Checking installer requirements...
    Checking operating system version: must be 5.8, 5.9 or 5.10. Actual 5.10
    Passed
    Checking Temp space: must be greater than 250 MB. Actual 2266 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 2335 MB Passed
    Checking monitor: must be configured to display at least 256 colors Failed <<<<
    >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    The following were the steps taken before encountering the above error
    1. logged into a workstation
    2. From its xterm terminal I logged to the oracle server via ssh oracle@ip
    3. keyed in the following at the command prompt
    DISPLAY=machine_name:0.0; export DISPLAY
    4. executed the following from the command prompt
    ./runInstaller
    Note: when executing the ./runInstaller, the preinstallation checking just hangs at Checking monitor: must be configured to display at least 256 colors. But the log file shows it failed during preinstallation checking as shown in Error encountered
    Please help me with this problem.
    Thank you
    Ravindran Kanniah

    It is because of UNIX shell. I also faced this error during installation.
    First check your shell by the following command.
    $ echo $SHELL
    Then select the below.
    For csh shell
    $ setenv DISPLAY 192.168.1.128:0.0
    $ export DISPLAY
    For sh,ksh and bash
    $ DISPLAY=192.168.1.128:0.0
    $ export DISPLAY
    After you do this check the value of DISPLAY variable.
    $ echo $DISPLAY
    If the DISPLAY variable is set then run ./runInstaller.
    One advice: Keep a complete log of your terminal session. This will help you in future :)
    -aijaz

  • PCC-S-02014 error while compiling with in Sun Solaris

    We are porting our application from HP-UX to Sun Solaris and as part of that I am trying the compile a Pro*C program in Sun Solaris using SUNWspro C++ compiler. Precompiling is failing with following error.
    PRECOMP set: /u01/app/oracle/product/10.2.0/bin/proc dbms=native code=cpp mode=ansi include=/u01/app/oracle/product/10.2.0/precomp
    ireclen=255 oreclen=255
    define=__sparc define=__SUNPRO_C include=/usr/include include=. include=/u01/app/SUNWspro/prod/include/CC/stlport4 include=/u01/app/oracle/product/10.2.0/rdbms/public/ include=/u01/app/oracle/product/10.2.0/network/public/ include=/u01/app/oracle/product/10.2.0/rdbms/demo/ errors=yes select_error=no
    sqlcheck=limited ltype=NONE
    release_cursor=no hold_cursor=no
    Pro*C/C++: Release 10.2.0.3.0 - Production on Thu Dec 18 03:09:59 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    System default option values taken from: /u01/app/oracle/product/10.2.0/precomp/admin/pcscfg.cfg
    Syntax error at line 44, column 30, file /u01/app/SUNWspro/prod/include/CC/stlport4/algorithm:
    Error at line 44, column 30 in file /u01/app/SUNWspro/prod/include/CC/stlport4/a
    lgorithm
    # include STLPNATIVE_HEADER(algorithm)
    .............................1
    PCC-S-02014, Encountered the symbol "(" when expecting one of the following:
    : [ ] + / . .. an identifier, a numeric constant, newline,
    define, elif, else, endif, error, if, ifdef, ifndef, include,
    line, pragma, undef, exec, sql, begin, end, var, type,
    oracle, an immediate preprocessor command, a C token, create,
    function, package, procedure, trigger, or, replace,
    Normal C++ files are getting compiled with out eny issues. This particular file is having functions written in C fashion. Any idea what is missing in the compiler option.
    regards
    Vinu

    Hi Vinu,
    I'm not sure if this is still an issue for you. When I have encountered issues like this with Pro*C I have ended up specifying parse=none to the proc command and then putting all declarations between "EXEC SQL BEGIN DECLARE SECTION" and "EXEC SQL END DECLARE SECTION" markers. I have also moved any "special" declarations into a specific header file and then placed the "#include <special header file>" inside the declare section as well.
    Perhaps that will help a bit,
    Regards,
    Mark

  • Java.lang.NoClassDefFound Error while invoking dbua(9.2.0.8)on Sun Solaris.

    Hi Friends,
    I had installed Oracle 9.2.0.1(software alone) on Sun solaris box and then i installed the patchset 9.2.0.8 on the same Oracle 9i Home.It's installed.
    But when i try to run dbca to cretae a database from $ORACLE_HOME/bin it throws the error:
    java.lang.NoClassDefFoundError
    i had set the PATH,ORACLE_SID,ORACLE_HOME,LD_LIBRARY_PATH but still getting the error.
    Please suggest a fix.
    Regrads,
    Arun

    Do you have JAVA_HOME set in your environment?
    What's the result of
    env
    Make sure DBCA is calling the java under $ORACLE_HOME not from other installation.

  • Front end of PL/SQL for Sun solaris

    Hi,
    What are the popular front ends and also Which is best front end of PL/SQL under
    UNIX (Sun Solaris) platform.

    You can use Sql Navigator from Qwest Software
    which can run on Win95/NT/2000. You can use SQL*NET to connect to your Sun Solaris or any other Oracle instance running on UNIX platform.
    Jack
    null

  • Mod-JK compilation on Sun Solaris 10 (SPARC)

    HI,
    Can any one help me for sucessful compilation of tomcat-connector-1.2.26-src i.e mod-jk on sun solaris platform 10 sparc
    server.
    I followed below steps
    ./configure --with-apxs=/usr/apache2/bin/apxs
    make
    in make this gives following error:
    Making all in common
    Making all in apache-2.0
    /bin/bash /var/apache2/build/libtool silent mode=link /opt/SUNWspro/bin/cc -I/usr/apache2/include -g -O2 -DUSE_APACHE_MD5 -I ../common -I /include -I /include/unix -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 -xarch=v8 -xspace -W0,-Lt -W2,-Rcond_elim -Xa -xildoff -xO4 -DSSL_EXPERIMENTAL -DSSL_ENGINE -DHAVE_APR -I/usr/share/src/apache2/srclib/apr/include -I/usr/share/src/apache2/srclib/apr-util/include -g -O2 -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 `/usr/apache2/bin/apxs -q LDFLAGS` -o mod_jk.la -module -rpath /usr/apache2/libexec -avoid-version mod_jk.lo ../common/jk_ajp12_worker.lo ../common/jk_connect.lo ../common/jk_msg_buff.lo ../common/jk_util.lo ../common/jk_ajp13.lo ../common/jk_pool.lo ../common/jk_worker.lo ../common/jk_ajp13_worker.lo ../common/jk_lb_worker.lo ../common/jk_sockbuf.lo ../common/jk_map.lo ../common/jk_uri_worker_map.lo ../common/jk_ajp14.lo ../common/jk_ajp14_worker.lo ../common/jk_md5.lo ../common/jk_shm.lo ../common/jk_ajp_common.lo ../common/jk_context.lo ../common/jk_url.lo ../common/jk_status.lo
    ld: fatal: file .libs/mod_jk.o: open failed: No such file or directory
    *** Error code 1
    make: Fatal error: Command failed for target `mod_jk.la'
    Current working directory /opt/tomcat-connectors-1.2.26-src/native/apache-2.0
    *** Error code 1
    The following command caused the error:
    failcom='exit 1'; \
    for f in x $MAKEFLAGS; do \
    case $f in \
    *=* | --[!k]*);; \
    k) failcom='fail=yes';; \
    esac; \
    done; \
    dot_seen=no; \
    target=`echo all-recursive | sed s/-recursive//`; \
    list='common apache-2.0'; for subdir in $list; do \
    echo "Making $target in $subdir"; \
    if test "$subdir" = "."; then \
    dot_seen=yes; \
    local_target="$target-am"; \
    else \
    local_target="$target"; \
    fi; \
    (cd $subdir && make $local_target) \
    || eval $failcom; \
    done; \
    if test "$dot_seen" = "no"; then \
    make "$target-am" || exit 1; \
    fi; test -z "$fail"
    make: Fatal error: Command failed for target `all-recursive'

    The only thing I can really suggest is to scan your log files to see if the building of this object failed earlier on.
    Thanks
    Prashanth

Maybe you are looking for

  • Unable to Export the document in PDF

    Hi, Can any body guide me what general  authoriztions  settings are needed for a user to export the markeing documents in PDF. bcz the user at remote location client is unable to export the douments in PDF. Regards Srini

  • IBook Clamshell won't output to TV

    I've just bought the AV Cable for my iBook (FireWire) in hopes of connecting it to my television. However, after connecting the three (Yellow (Video), White (Mono L), and Red (Mono R)) cables to the composite inputs of my television, nothing happens

  • Production order change document

    Hi experts, Can anybody please tell me where I can get change document for production order. I have first created order & then saved it. Later on I changed BOM component quantity.I didn't get any change document in GOTO--Change document. Where I face

  • How do I print "and Family" on address labels for Holiday cards?

    I have a holiday list and when I try to set it up to print labels, I would like to be able to add Family on the labels so it appears to go to everyone in the family. I don't want to change the "card" to include & family because it affects all emails

  • E90: USB errors every time I connect

    Hi all, Every time I connect my E90 to the USB cable I get the following error: "Nokia E90 Communicator USB Modem. The required section was not found in the INF." This prevents the E90 from "installing" properly, which is why Windoze goes through the