More Startup-Error on ORACLE 9i

Hi
I have an ORACLE 9i Database (V9.2.0.4.0) running under RedHat.
But since rebooting my system i was not able to restart my Database.
Env-Variables are all set correctly and the log files do not show any error-messages.
While analysing the startup-script i realised, that i get an error while trying to do:
connect / as sysdba
System tells me:
ERROR:
ORA-01031: insufficient privileges
To get the system started anyway, i removed in $ORACLE_HOME/network/admin/sqlnet.ora the line:
SQLNET.AUTHENTICATION_SERVICES = (NONE)
Now i am able to startup my Databasesystem again, but i while doing, i receive the error:
ORA-00600: internal error code, arguments: [kcratr1_lostwrt], [], [], [], [], [], [], []
I'm not sure, what to do next.
Any suggestions?
Btw. i have a backup from all files and i can edit/delete/change anything (non-prodictive system).
Thanks for any idea or help.
prassito

hmmmm its internal error.
ORA-00600: internal error code, arguments: [kcratr1_lostwrt], [], [], [], [], [], [], []
anyway lets try with
connect with sys user and specify password with as sysdba syntax
as
sql>sys/password as sysdba
Thanks
Kuljeet

Similar Messages

  • Startup-Error on ORACLE 9i

    Hi
    I had an ORACLE 9i Database (V9.2.0.4.0) running under RedHat.
    But since rebooting my system i am not able to restart my Database.
    Env-Variables are all set correctly and the log files do not show any error-messages.
    While analysing the startup-script i realised, that i get an error while trying to do:
    connect / as sysdba
    System tells me:
    ERROR:
    ORA-01031: insufficient privileges
    Anybody has an idea what to do next?
    My DB does not start up and i cannot grant any privileges to someone since the DB is down.
    Btw. i have a backup from all files and i can edit/delete/change anything (non-prodictive system).
    Thanks for any idea or help.
    prassito

    I wonder what sqlnet.ora has got to do with insufficient privs. well that is my take on it.
    $export ORACLE_SID=MYLCL
    $sqlplus /nolog
    sql>connect sys/password as sysdba
    if it doesn't work check
    $id
    it should be oracle and dba ( group that is )
    Below is for remote log in and has nothing to do with logging on the same server:-
    Check if oracle password file is missing
    ls $ORACLE_HOME/dbs/orapw<sid>.ora
    In init<sid>.ora ensure REMOTE_LOGIN=exclusive
    cd $ORACLE_HOME/dbs
    orapwd file=orapwd<SID>.ora
    now try again.
    Also look at this thread
    ora-01031 error while starting oracle9i server on linux advanced redhat 3.1
    Message was edited by:
    gopalora

  • Startup errors on Oracle 9i Dev Suite frm Unix srvr

    Trying to startup Dev Suite from a Windows 2000 client. The Developers Suite is installed on a Sun Blade Unix server. From Xterm I enter the command ./f9090desm.sh to run the Forms application and get the following errors:
    FRM-91111: Internal Error: window system startup failure
    FRM-10039: Unable to startup the Form Builder.#
    Is this because of a problem with my environment settings? Should I be trying to identify a wrapper that will set the environment and run that first? If so, how do I identify the wrapper file? What can the SA do to assist in this?
    Bill

    You definitely need some environment variables set. The most common cause of this error is failure to set the DISPLAY variable. If you do a search on MetaLink for the combination of those two errors, you should see articles that will help you. One such article is Note.1075912.6     Troubleshooting FRM-91111 internal error - window system startup failure followed by FRM-10039, which contains several suggested solutions.

  • Get more info about the last errors in Oracle

    Hi all,
    There is a log in a live system where it is possible to see every minute the following error:
    Sweep Incident[48073]: failed, err=[1858]
    I know that error can happen mainly when:
    1. Trying to insert caracter field in a numeric column
    2. Using in the wrong way the function to_date()
    I need more information about that error, what can be causing the error in the system and why. Is it possible to see more information about the last errors in Oracle? For example, if a query produces an error... is it possible to see in Oracle the error and the query that caused the error?
    Hope you can help me.
    Thanks in advance.

    Thanks Niall.
    I'm not sure if I got you...
    What I found is that MMON makes snapshots of the database 'health' and stores this information in the AWR. So, it seems like in the database there could be a numeric column that is storing character fields, and when MMON works, it finds that error... is that right?
    I found the following information:
    SQL> select substr(s.username,1,18) username,
    2 substr(s.program,1,22) program,
    3 decode(s.command,
    4 0,'No Command',
    5 1,'Create Table',
    6 2,'Insert',
    7 3,'Select',
    8 6,'Update',
    9 7,'Delete',
    10 9,'Create Index',
    11 15,'Alter Table',
    12 21,'Create View',
    13 23,'Validate Index',
    14 35,'Alter Database',
    15 39,'Create Tablespace',
    16 41,'Drop Tablespace',
    17 40,'Alter Tablespace',
    18 53,'Drop User',
    19 62,'Analyze Table',
    20 63,'Analyze Index',
    21 s.command||': Other') command
    22 from
    23 v$session s,
    24 v$process p,
    25 v$transaction t,
    26 v$rollstat r,
    27 v$rollname n
    28 where s.paddr = p.addr
    29 and s.taddr = t.addr (+)
    30 and t.xidusn = r.usn (+)
    31 and r.usn = n.usn (+)
    32 order by 1;
    USERNAME PROGRAM COMMAND
    oracle@airvs1b (MMON) No Command
    SQL> select addr, pid, spid, username, serial#, program,traceid, background, latchwait, latchspin from v$process where program='oracle@airvs1b (MMON)';
    ADDR PID SPID USERNAME SERIAL# PROGRAM
    000000044A4E48A8 24 15372 oracle 1 oracle@airvs1b (MMON)
    TRACEID B LATCHWAIT LATCHSPIN
    ---------------- ---------- ------------------------ --------------- 1
    SQL> select
    2 substr(a.spid,1,9) pid,
    3 substr(b.sid,1,5) sid,
    4 substr(b.serial#,1,5) ser#,
    5 substr(b.machine,1,6) box,
    6 substr(b.username,1,10) username,
    7 b.server,
    8 substr(b.osuser,1,8) os_user,
    9 substr(b.program,1,40) program
    10 from v$session b, v$process a
    11 where
    12 b.paddr = a.addr
    13 and a.spid=15372
    14 order by spid;
    PID SID SER# BOX USERNAME SERVER OS_USER PROGRAM
    15372 1082 1 airvs1 DEDICATED oracle oracle@airvs1b (MMON)
    Is there any way I can see what MMON is doing and when is failing?
    Thank you very much.
    Edited by: user11281526 on 19-jun-2009 5:18

  • Plumtree Portal Startup Error

    Hi All,
    I am trying to install the WCI on Win Server 2003.
    I followed the step-by-step installation guide provided by Oracle on http://download-llnw.oracle.com/docs/cd/E13158_01/alui/wci/docs103/map_wci_win_installguide_10-3/. However, we came across this problem where the portal can't be started after completing the installation and configuration.
    The configuration manager is able to run, but not the portal.
    The startup error log is as follows:
    Diagnostic system initialization OK.
    Portal Startup begins: 15 total tasks.
    Recommendations follow:
    PortalObjectsFactory Initialization Failure (Java)
    RECOMMENDATION: Review the exception listed below for details. Since
    OpenKernel initialized correctly, this usually means that the
    portal database is not scripted or properly configured, or there
    is an installation problem related to JAR files. This may also
    mean the search libraries are not on your PATH or
    LD_LIBRARY_PATH. Try running ptverify.
    More Detail:
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database connection.
    If this fails, check the web application server user's access rights
    to the file system. Finally, verify the XML settings files are not
    corrupt.
    recommendation: RECOMMENDATION: Review the exception listed below for
    details. Since OpenKernel initialized correctly, this usually
    means that the portal database is not scripted or properly
    configured, or there is an installation problem related to JAR
    files. This may also mean the search libraries are not on your
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database
    connection. If this fails, check the web application server
    user's access rights to the file system. Finally, verify the
    message: Error opening database connection to:
    jdbc:plumtree:oracle://kldev-vmwci:7001;SID=PLUM10;user=plumtree;password=;BatchPerformanceWorkaround=true,
    exception: [plumtree][Oracle JDBC Driver]Error establishing
    socket to host and port: kldev-vmwci:7001. Reason: Connection
    secondary exception: at
    ======= Diagnostic Run Complete =======
    ERROR: OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database connection.
    If this fails, check the web application server user's access rights
    to the file system. Finally, verify the XML settings files are not
    corrupt.
    Recommendation:
    OpenKernel configuration failure. This usually means INVALID
    DATABASE SETTINGS. Run ptconfig to verify your database connection.
    If this fails, check the web application server user's access rights
    to the file system. Finally, verify the XML settings files are not
    corrupt.
    Startup completion percentage: 10% (5 steps out of 50 complete)
    FYI, we had been uninstalling and re-installing several times, but the same problems occured. So, does any of you faced this kind of error before?
    Your views and opinions are very much appreciated. Thanks in advance.

    Looks like this a Java portal... this error is usually caused by an invalid path or similar problem with environment variables. Since ptverify works, this is even more likely. I would make sure you've followed the preinstall steps. The problem is probably somehow related to you needing to:
    1.) Set the PT_HOME environment variable.
    2.) Add it to your PATH.
    3.) Make sure the application server (Weblogic?) is set up to properly use the above variables (is the user it is running as set up to have above, etc). I would add some echo statements to your application server bat files if you are unsure if these variables are set or what they are.
    4.) Some other environment variable is necessary (i.e. does LD_LIBRARY_PATH contain the /lib/java directory).
    Most of this should be done by the install, but when you are setting up the application server you may need to check this (or if you have reinstalled, run as a different user, etc, this may be different).
    I realize that's kind of vague but this type of error can be harder to diagnose, plus its been a while since I've done a Windows install. Hope this helps...
    Ross

  • Error  --REP-3000: Internal error starting Oracle Toolkit.

    Hi
    While submitting the concurrent request (active user) im getting error if i submit the active responsibilities
    its completed successfully i have set display also still im getting error.
    Xlib: connection to "omega:0.0" refused by server
    Xlib: Client is not authorized to connect to Server
    Xlib: connection to "omega:0.0" refused by server
    Xlib: Client is not authorized to connect to Server
    REP-3000: Internal error starting Oracle Toolkit.
    REP-3000: Internal error starting Oracle Toolkit.

    Please verify the DISPLAY on the server as follows:
    - Issue "xhost +" as root user
    - Issue "xclock" as applmgr user --> Make sure you can display the clock
    If the above does not work, please set the DISPLAY properly in the application context file and run AutoConfig.
    More details can be found in the following note:
    Note: 200474.1 - Comprehensive REP-3000 Troubleshooting and Overview Guide
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200474.1

  • Error starting Oracle BAM active data cache service

    Hi
    after installing BAM every thing working fine ,but if restart my system Oracle BAM active data cache service throwing following error
    "The Oracle BAM Active Data Cache service on Local computer started and then stopped.Some services stop automatically if they have no work to do,for example the performance logs and alerts service"
    Database is running fine
    Following is the ADC log file error
    2007-12-07 17:19:29,640 [2928] ERROR - ActiveDataCache The Oracle BAM Active Data Cache service failed to start. Oracle.BAM.ActiveDataCache.Common.Exceptions.CacheException: ADC Server exception in Startup(). ---> System.DllNotFoundException: Unable to load DLL (OraOps10.dll).
    at Oracle.DataAccess.Client.OpsTrace.GetRegTraceInfo(UInt32& TrcLevel, UInt32& StmtCacheSize)
    at Oracle.DataAccess.Client.OraTrace.GetRegistryTraceInfo()
    at Oracle.DataAccess.Client.OracleConnection..ctor(String connectionString)
    at Oracle.DataAccess.Client.OracleConnection..ctor(String connectionString)
    at Oracle.BAM.ActiveDataCache.Kernel.StorageEngine.Oracle.OracleDataFactory.GetConnection()
    at Oracle.BAM.ActiveDataCache.Kernel.StorageEngine.Oracle.OracleStorageEngine.GetServerVersion()
    at Oracle.BAM.ActiveDataCache.Kernel.StorageEngine.Oracle.OracleStorageEngine.Startup(IDictionary oParameters)
    at Oracle.BAM.ActiveDataCache.Kernel.Server.DataStoreServer.Startup()
    --- End of inner exception stack trace ---
    at Oracle.BAM.ActiveDataCache.Kernel.Server.DataStoreServer.Startup()
    at Oracle.BAM.ActiveDataCache.Kernel.Server.Server.Startup()
    at Oracle.BAM.ActiveDataCache.Service.DataServer.Run()
    2007-12-07 17:24:45,250 [1524] ERROR - ActiveDataCache Unable to load DLL (OraOps10.dll).
    2007-12-07 17:24:45,265 [1524] WARN - ActiveDataCache Exception occurred in method Startup
    Please help me in resolving this issue .Am getting this issue every time
    Thanks
    BS

    Make sure the path to the ODAC used by BAM (C:\OracleBAM\ClientForBAM\bin) is the first item in the system PATH
    environment variable. Restart your computer after fixing this.
    If that doesn't fix it, please check the Troubleshooting section in the BAM Install Guide.
    Regards, Stephen

  • How to get more detailed error information when calling Java SP

    Hi
    Sorry for reposting this in here but I got no responses in the JVM forum...
    I am calling a Java stored procedure from a PL/SQL stored procedure (Oracle DB 9.2.0.8.0) and I am getting the exception:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.NullPointerException
    It does not help much though... Is it possible to get the full Java error stack from within PL/SQL so I can log a more informative message?
    Thanks!
    Luis

    Thanks for the replies! However I am not sure if they help...
    I will give some more info about my problem. I have an Oracle job that runs every morning and executes a PL/SQL procedure, which in turn calls that Java SP.
    Sometimes the Java SP fails and the error is logged; however only the message "java.lang.NullPointerException" is reported by the SQLERRM function (apparently the last Java error message in the error stack). I am unable to reproduce the error when calling the Java SP manually as was suggested.
    I need to log a more detailed error message from within PL/SQL to know exactly where the error occurred, when it occurs next time...
    I will take a look to see if I can get some information in some trace file, though ideally I would like to do it programatically.
    Thanks
    Luis

  • Soa suite 10.1.3.1 bpel startup error

    Hello,
    I installed the soa suite 10.1.3.1 on Linux with Java 1.5.0-12. First I did a Advanced install. Everything was fine except, I used to get a:
    Failed to read WSDL from http://localhost:port/orabpel/default/TaskActionHandler/1.0/TaskActionHandler?wsdl: HTTP connection error code is 500 for any BPEL process (Even the hello world). Then I undeployed that version and deployed a 'Basic' install. Still I get the same error in the console. On checking the application log in the orabpel deployment folder I saw this exception on both occasion:
    07/12/15 11:09:09.340 10.1.3.1.0 Started
    07/12/15 11:09:22.811 httpbinding: 10.1.3.1.0 Started
    07/12/15 11:09:22.833 admin: 10.1.3.1.0 Started
    07/12/15 11:09:22.867 console: 10.1.3.1.0 Started
    07/12/15 11:09:22.896 startup: Error initializing servlet
    java.lang.NoClassDefFoundError
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at javax.xml.soap.FactoryFinder.newInstance(Unknown Source)
    at javax.xml.soap.FactoryFinder.find(Unknown Source)
    at javax.xml.soap.MessageFactory.newInstance(MessageFactory.java:29)
    at oracle.j2ee.ws.server.WebServiceServlet.init(WebServiceServlet.java:101)
    at oracle.j2ee.ws.server.provider.ProviderServlet.init(ProviderServlet.java:104)
    at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    at com.collaxa.cube.ws.soap.oc4j.BPELOC4JServlet.init(BPELOC4JServlet.java:63)
    at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2361)
    at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4810)
    at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4734)
    at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4922)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1134)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:738)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    at com.evermind.server.Application.getHttpApplication(Application.java:545)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1990)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1909)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:645)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:290)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:270)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:177)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2450)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:998)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
    at java.lang.Thread.run(Thread.java:595)
    07/12/15 11:09:22.897 startup: Error preloading servlet
    The install says succesful...Any ideas? Thank.

    thanks for the tip. applied the patch. but didn't help. it is just a no class def found error. How hard can it be to make it find the class it wants (as long as i get to know what class it wants!)

  • Errors installaing Oracle 11gbeta 11.1.0.3.0_Linux_x86-64 on RHEL4

    Hi,
    I encounter an error when installing 11.1.0.3.0_Linux_x86-64 on RHEL4. The problems starts when entering the relinking phase.
    This is from the Install log:
    INFO: /usr/bin/ld: skipping incompatible /opt/oracle/product/11gbeta/lib/libxml10.a when searching for -lxml10
    /usr/bin/ld: cannot find -lxml10
    INFO: collect2: ld returned 1 exit status
    INFO: genclntsh: Failed to link libclntsh.so.10.1
    INFO: make: *** [client_sharedlib] Error 1
    I extracted the archive /opt/oracle/product/11gbeta/lib/libxml10.a and executed the files command against the files. I see that ALL object files are 32-bit and not 64-bit.
    Strange: I would expect 64-bit libraries for the 64-bit Oracle version.
    Can anyone help me?
    Had anyone hit the same problem in the past (and a solution/explanation?)
    Thanks in advance
    Johann

    Why you using beta version , download released version of 11g from otn.oracle.com
    Check following package installed or not
         binutils-2.15.92.0.2-10.EL4
         compat-db-4.1.25-9
         elfutils-libelf-devel-0.97-5
         elfutils-libelf-0.97-5
         gcc-3.4.3-9.EL4
         gcc-c++-3.4.3-9.EL4
         glibc-2.3.4-2
         glibc-common-2.3.4-2
         libstdc++-3.4.3-9.EL4
         libstdc++-devel-3.4.3-9.EL4
         libaio-0.3.105-2
         libaio-devel-0.3.105-2
         make-3.80-5
         pdksh-5.2.14-30
         sysstat-5.0.5-1
         elfutils-libelf-devel-0.97-5
         elfutils-libelf-devel-0.97-5
    unixODBC-2.2.11
    unixODBC-devel-2.2.11
    Check following link for more details
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32002/pre_install.htm#CHDHFGBJ
    - Virag Sharma
    http://viragsharma.blogspot.com
    http://virag.sharma.googlepages.com

  • Flash Builder 4.7 startup error: Exception in com.adobe.flexbuilder.ui.UIPlugin.start() of bundle...

    I installed Flash Builder Premium 4.7. The installation was successful but when I am running flash builder, it is giving me a startup error and some of the contents of log file is given below. Can anyone help me resolve this issue? Thanks!
    !SESSION 2013-12-27 23:45:29.586 -----------------------------------------------
    eclipse.buildId=M20110909-1335
    java.version=1.6.0_31
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86_64
    !ENTRY org.eclipse.osgi 4 0 2013-12-27 23:45:34.726
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.ui (94).
    !STACK 0
    org.osgi.framework.BundleException: Exception in com.adobe.flexbuilder.ui.UIPlugin.start() of bundle com.adobe.flexbuilder.ui.
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:734)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:683)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:381)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:299)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440)
        at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:268)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:462)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216)
        at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:400)
        at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:35)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:473)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at com.adobe.flexbuilder.standalone.SplashHandler.init(SplashHandler.java:143)
        at org.eclipse.ui.internal.Workbench$8.run(Workbench.java:785)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
        at org.eclipse.ui.internal.Workbench.createSplashWrapper(Workbench.java:801)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2523)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.java:79)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    Caused by: java.lang.UnsatisfiedLinkError: E:\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flexide.amt_4.7.0.349722\os\win32\x86_64\amt_win_jnilib.dll: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(Unknown Source)
        at java.lang.ClassLoader.loadLibrary(Unknown Source)
        at java.lang.Runtime.loadLibrary0(Unknown Source)
        at java.lang.System.loadLibrary(Unknown Source)
        at com.adobe.flexide.amt.AMTLib.initialize(AMTLib.java:134)
        at com.adobe.flexide.amt.Activator.AMT_Initialize(Activator.java:113)
        at com.adobe.flexbuilder.ui.asn.ASNUIBridge.start(ASNUIBridge.java:58)
        at com.adobe.flexbuilder.ui.UIPlugin.start(UIPlugin.java:106)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:711)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:702)
        ... 38 more
    Root exception:
    java.lang.UnsatisfiedLinkError: E:\Adobe\Adobe Flash Builder 4.7 (64 Bit)\eclipse\plugins\com.adobe.flexide.amt_4.7.0.349722\os\win32\x86_64\amt_win_jnilib.dll: This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(Unknown Source)
        at java.lang.ClassLoader.loadLibrary(Unknown Source)
        at java.lang.Runtime.loadLibrary0(Unknown Source)
        at java.lang.System.loadLibrary(Unknown Source)
        at com.adobe.flexide.amt.AMTLib.initialize(AMTLib.java:134)
        at com.adobe.flexide.amt.Activator.AMT_Initialize(Activator.java:113)
        at com.adobe.flexbuilder.ui.asn.ASNUIBridge.start(ASNUIBridge.java:58)
        at com.adobe.flexbuilder.ui.UIPlugin.start(UIPlugin.java:106)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:711)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:702)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:683)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:381)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:299)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440)
        at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:268)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:462)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216)
        at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:400)
        at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:35)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:473)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429)
        at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at com.adobe.flexbuilder.standalone.SplashHandler.init(SplashHandler.java:143)
        at org.eclipse.ui.internal.Workbench$8.run(Workbench.java:785)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
        at org.eclipse.ui.internal.Workbench.createSplashWrapper(Workbench.java:801)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2523)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2494)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:674)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.java:79)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(

    Opened bug:
    Bug#3801869 - FlashBuilder 4.7 command line fails due to "Exception in com.adobe.flexbuilder.codemodel.CMCoreActivator.s…
    If you also experience this issue, please vote on this bug, so that Adobe will fix it.
    thanks,
    Erez.

  • Pls help -startup error

    hi,
    when i used the following command, the error happened.
    startup mount pfile=/oracle/credit/init.ora
    SQL> startup mount pfile=/oracle/credit/init.ora
    ORA-27154: post/wait create failed
    ORA-27300: OS system dependent operation:semget failed with status: 28
    ORA-27301: OS failure message: No space left on device
    ORA-27302: failure occurred at: sskgpsemsper
    plz help

    ORA-27301: OS failure message: No space left on
    deviceSounds pretty clear.Eric,
    I have over 50GB disk and 4GB RAM left.

  • Essbase 11.1.2 studio startup error

    Hi All ,
    I m new to the EssBase. I have installed Essbase in standalone mode on windows 2003 server and used oracle 11g as DB.
    Both installation and configuration were successful.
    1) What all services must be running before starting Essbase studio server .
    2) Essbase server vs Essbase studio server.
    3) When i start Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Server\startserver.bat i get following errors and Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Server\server.properties file is empty.
    -------------Exception--------------
    INFO: Security Key could not be read from reg.properties file.
    Throwable caught
    com.hyperion.hit.registry.exceptions.RegistryException: No database properties c
    ould be read
    at com.hyperion.hit.registry.datasource.SharedServicesDataSourceFactory.
    getDataSource(SharedServicesDataSourceFactory.java:29)
    at com.hyperion.hit.registry.datasource.SharedServicesDatabaseConnection
    Builder.getConnection(SharedServicesDatabaseConnectionBuilder.java:26)
    at com.hyperion.hit.registry.RegistryUtils.createNewConnection(RegistryU
    tils.java:183)
    Aug 2, 2010 11:50:10 AM com.hyperion.hit.registry.Registry lookupComponents
    SEVERE: An exception when looking up components of type SYSTEM9 matching the spe
    cified properties.
    Aug 2, 2010 11:50:10 AM com.hyperion.hit.registry.Registry lookupComponents
    SEVERE: Exception occurred.
    com.hyperion.hit.registry.exceptions.RegistryException: com.hyperion.hit.registr
    y.exceptions.RegistryException: No database properties could be read
    Caused by: com.hyperion.hit.registry.exceptions.RegistryException: No database p
    roperties could be read
    at com.hyperion.hit.registry.datasource.SharedServicesDataSourceFactory.
    getDataSource(SharedServicesDataSourceFactory.java:29)
    at com.hyperion.hit.registry.datasource.SharedServicesDatabaseConnection
    Builder.getConnection(SharedServicesDatabaseConnectionBuilder.java:26)
    at com.hyperion.hit.registry.RegistryUtils.createNewConnection(RegistryU
    tils.java:183)
    at com.hyperion.hit.registry.Registry.getConnection(Registry.java:152)
    ... 11 more
    =======================================================
    Aug 2, 2010 11:50:10 AM  (001)
    SEVERE: EPMCSS-001052: Failed to initialize EPM Security. EPM Security configura
    tion file is null in EPM Registry.
    Aug 2, 2010 11:50:10 AM com.hyperion.css.EPMSystem getInstance:127
    SEVERE: EPMCSS-Arguments: param1={LOCALE=en_US, operationCodeKey=001}, param2=nu
    ll, param3=E:\Ayush\Oracle\Middleware\EPMSystem11R1/logs/esbstudio,
    Aug 2, 2010 11:50:10 AM
    INFO: EPMCSS-CSS EPM system intialization failed. : [218 ms]
    Aug 2, 2010 11:50:10 AM com.hyperion.css.CSSSystem initCSSSystem:346
    SEVERE: EPMCSS-Arguments: param1={LOCALE=en_US, operationCodeKey=001}, param2=nu
    ll, param3=E:\Ayush\Oracle\Middleware\EPMSystem11R1/logs/esbstudio,
    Aug 2, 2010 11:50:10 AM
    INFO: EPMCSS-CSS system intialization failed. : [1047 ms]
    Aug 2, 2010 11:50:15 AM com.hyperion.cp.driver.util.DriverClassLoader <init>
    WARNING: Failed to load driver for sap.
    Aug 2, 2010 11:50:25 AM com.hyperion.cp.driver.util.DriverClassLoader <init>
    WARNING: Failed to load driver for teradata.
    Aug 2, 2010 11:50:25 AM com.hyperion.cp.driver.util.DriverClassLoader <init>
    WARNING: Failed to load driver for netezza.
    Aug 2, 2010 11:50:26 AM com.hyperion.cp.driver.adapters.sql.mysql.MySQLConnectio
    n createSQLConnection
    SEVERE: Unable to establish connection to MySQL server.
    Aug 2, 2010 11:50:28 AM com.hyperion.cp.driver.adapters.sql.mysql.MySQLConnectio
    n createSQLConnection
    SEVERE: Unable to establish connection to MySQL server.
    Aug 2, 2010 11:50:28 AM com.hyperion.cp.catalog.Catalog initialize
    SEVERE: Catalog.CannotInitializeStorage=Cannot initialize catalog storage. Make
    sure the server.properties file contains the correct information.
    com.hyperion.cp.catalog.exceptions.CatalogInitializationException: Cannot initia
    lize data storage engine.
    Caused by: com.hyperion.cp.driver.util.DriverConnectionException: Cannot establi
    sh connection to MySQL server.
    at com.hyperion.cp.driver.adapters.sql.mysql.MySQLConnection.createSQLCo
    nnection(MySQLConnection.java:122)
    at com.hyperion.cp.driver.adapters.sql.SQLConnection$ConnectionPool.<ini
    t>(SQLConnection.java:1221)
    Please help me to resove these issues.
    Thanks in advance
    Ayush

    Hi John,
    I configured the components again. Every thing marked as green.
    But there were some errors in the log file.
    ============================ Errors=================
    [2010-08-02T16:25:32.675+05:30] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 10] [ecid: 0000IcmSJ2u9XbK_yTP5iW1CLeG^000000,0] [SRC_CLASS: com.oracle.preconfig.util.EpmLoggerPreConfigReporter] trace: Running preconfig checks...[[
    Running EPM_ORACLE_HOME check...
    EPM_ORACLE_HOME environment variable value: E:\Ayush\Oracle\Middleware\EPMSystem11R1
    JAVA_HOME environment variable value: E:\Ayush\Oracle\Middleware\EPMSystem11R1\..\jdk160_11
    EPM_ORACLE_HOME check succeeded
    Running .oracle.products check... .oracle.products check succeeded
    Running Jars manifest check...
    Time spent for manifests parsing: 7765 ms
    Maximum jars depth achieved: 9, while restriction was: unrestricted
    Parsed 439 manifests
    Total jars and classpath entries encountered: 439
    Total not-existing referenced classpath entries count: 33
    Enumerating not-existing classpath entries:
    Missing (depth 2) file E:\Ayush\Oracle\Middleware\EPMSystem11R1\common\ldap\jlib\osdt_core.jar
    Missing (depth 9) file E:\Ayush\Oracle\Middleware\modules\com.bea.cie.comdev.fr_6.1.1.0.jar
    Missing (depth 4) file E:\Ayush\Oracle\Middleware\EPMSystem11R1\common\SAP\lib\sap.logging.jar
    Missing (depth 9) file E:\Ayush\Oracle\Middleware\modules\com.bea.cie.comdev.es_6.1.1.0.jar
    Missing (depth 9) file E:\Ayush\Oracle\Middleware\modules\com.bea.cie.comdev.de_6.1.1.0.jar
    Missing (depth 4) file E:\Ayush\Oracle\Middleware\oracle_common\modules\oracle.pki_11.1.1\osdt_core.jar
    Missing (depth 3) file E:\Ayush\Oracle\Middleware\modules\xml-apis.jar
    Missing (depth 2) file E:\Ayush\Oracle\Middleware\EPMSystem11R1\common\jlib\owm\jlib\owm-3_0.jar
    Missing (depth 4) file E:\Ayush\Oracle\Middleware\EPMSystem11R1\common\SAP\lib\sapjco.jar.............
    ===========================
    HBR Configuration has not been initialized. Make sure you have logged in sucessf
    ully and there are no exceptions in the HBR log file.
    ConfigurationManager not available
    oracle.as.config.ProvisionException: Unable to create an OpmnEditor, E:\Ayush\Or
    acle\Middleware\user_projects\epmsystem1\config\OPMN\opmn\opmn.xml
    at oracle.as.config.impl.OpmnConfig.getOpmnEditor(OpmnConfig.java:50)
    at oracle.as.config.impl.OpmnConfig.insertSnippet(OpmnConfig.java:158)
    at oracle.as.config.impl.HITOpmnEditor.addOPMNSnippet(HITOpmnEditor.java
    :52)
    at com.hyperion.essbase.config.EssbaseAgentTaskProcessor.execute(Essbase
    AgentTaskProcessor.java:580)
    at com.hyperion.essbase.config.EssbaseAgentTaskProcessor.execute(Essbase
    AgentTaskProcessor.java:134)
    at com.hyperion.config.wizard.impl.RunAllTasks.executeCustomTask(RunAllT
    asks.java:725)
    at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:
    313)
    at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksSta
    te.java:89)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.management.opmn.editor.OpmnEditorException: org.xml.sax.SAX
    ParseException: cvc-minLength-valid: Value '' with length = '0' is not facet-val
    id with respect to minLength '1' for type '#AnonType_idias-componentias-instance
    process-manageropmn'.
    at oracle.as.management.opmn.editor.impl.OpmnEditorImpl.validate(OpmnEdi
    torImpl.java:410)
    at oracle.as.management.opmn.editor.impl.OpmnEditorImpl.init(OpmnEditorI
    mpl.java:359)
    at oracle.as.management.opmn.editor.impl.OpmnEditorImpl.<init>(OpmnEdito
    rImpl.java:74)
    at oracle.as.config.impl.OpmnConfig.getOpmnEditor(OpmnConfig.java:47)
    ... 8 more
    Caused by: org.xml.sax.SAXParseException: cvc-minLength-valid: Value '' with len
    gth = '0' is not facet-valid with respect to minLength '1' for type '#AnonType_i
    dias-componentias-instanceprocess-manageropmn'.
    at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Un
    known Source)
    at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)
    Regards
    Ayush

  • While startup ora -01092: ORACLE instance terminated. Disconnection forced

    Hi all,
    I'm using Enterprise Linux Red hat 5 (OS), oracle 10g Release 2 (10.2.0.1.0)
    while startup the database I'm getting below error message.
    SQL> startup pfile='/opt/oracle/admin/ssharp/pfile/init.ora.33201013513' mount;
    ORACLE instance started.
    Total System Global Area 2147483648 bytes
    Fixed Size 1220432 bytes
    Variable Size 486539440 bytes
    Database Buffers 1644167168 bytes
    Redo Buffers 15556608 bytes
    Database mounted.
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    In alert log file having message, Redo log file s corrupted.
    I try to recover the redo log,using
    allow_resetlogs_corruption=True parameter in pfile.
    and start the DB in mount stage,and
    restore database;
    alter database open resetlogs;
    Using this method i got the same error ora - 01092
    and tried to rman incomplete recovery i cant solve issue
    *RMAN> run
    2> {
    3> set until sequence 2284 thread 1;
    4> restore database;
    5> recover database;
    6> alter database open resetlogs;
    7> }
    executing command: SET until clause
    using target database control file instead of recovery catalog
    Starting restore at 25-APR-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=761 devtype=DISK
    allocated channel: ORA_DISK_2
    channel ORA_DISK_2: sid=760 devtype=DISK
    allocated channel: ORA_DISK_3
    channel ORA_DISK_3: sid=758 devtype=DISK
    creating datafile fno=20 name=/northeast/oradata/ssharp/main/main03.dbf
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 04/25/2011 13:42:35
    ORA-01119: error in creating database file '/northeast/oradata/ssharp/main/main03.dbf'
    ORA-27038: created file already exists
    Additional information: 1
    RMAN> shut immediate
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "identifier": expecting one of: "allocate, alter, backup, beginline, blockrecover, catalog, change, connect, copy, convert, create, crosscheck, configure, duplicate, debug, delete, drop, exit, endinline, flashback, host, {, library, list, mount, open, print, quit, recover, register, release, replace, report, renormalize, reset, restore, resync, rman, run, rpctest, set, setlimit, sql, switch, spool, startup, shutdown, send, show, test, transport, upgrade, unregister, validate"
    RMAN-01008: the bad identifier was: shut
    RMAN-01007: at line 1 column 1 file: standard input*
    and also i cleared that redolog content,after that also i tried to up the database with resetlog option.but i can't solve...
    can any one guide me
    Thanks in advance

    Hi user;
    Please see below note which could be helpful on your issue:
    database not starting up with errors ORA-01092 ORA-24324 ORA-01041 [ID 779356.1]
    Regard
    Helios

  • Error Installing Oracle on Linux

    Hello All,
    I'm getting a tampering error while installing Oracle on a fresh linuxbox.
    When I attempt to create a new DB by dbca I get the following error traced by the tool:
    Oct 31, 2006 12:37:24 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 2
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: TZ set to Europe/Vatican
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: EM Configuration issue. /oracle/oracle/product/10.2.0/db_1/oracle_dboracle not found.
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at /oracle/oracle/product/10.2.0/db_1/cfgtoollogs/dbca/dboracle/emConfig.log for more details.
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:565)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:177)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:146)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:155)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:426)
    at java.lang.Thread.run(Thread.java:534)
    The first strange thing is the message "CONFIG: EM Configuration issue. /oracle/oracle/product/10.2.0/db_1/oracle_dboracle not found." that, I have checked, exists (and is a directory).
    After this first message I get a finally ERROR message that states it's cannot able to start the dbconsole.
    Where I have to point my attention?
    This is a very first installation on a totally clean box.
    Regards

    The database has been successfully installed.
    I get errors, sistematically, when I attempt to create a new db using dbca.
    The error occurs during the last step of the db creation.
    which follows is the dump of the relevant part of the emConfig.log where the error is enlisted:
    Oct 31, 2006 12:37:24 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 2
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: TZ set to Europe/Vatican
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: EM Configuration issue. /oracle/oracle/product/10.2.0/db_1/oracle.dev.nexus_dboracle not found.
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at /oracle/oracle/product/10.2.0/db_1/cfgtoollogs/dbca/dboracle/emConfig.log for more details.
    Oct 31, 2006 12:37:27 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
         at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:565)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:177)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:146)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:155)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:426)
         at java.lang.Thread.run(Thread.java:534)

Maybe you are looking for

  • Creation of backend vendor master from SUS

    Hi We are on SRM4.0 and ECC5.0 with SUS3.0 and having following <b>scenario</b>. Suppliers gets registered in registration system in SRM. Purchaser will do screening and select the supplier. <b>Requirement</b> Want to create Vendor master in backend

  • How to enter BIOS in e450

    Just got this laptop. Can't enter BIOS. NO F1-F12 keys. On start up, it just gives Lenovo splash screen then boots windows 8. I am clicking F1 (also tried FN+F1) and nothing happens. How to enter bios... Thank you Solved! Go to Solution.

  • How can I fix my browsers not loading?

    So, all of a sudden my browsers (all safari, chrome, and Firefox; I mainly use chrome though) just won't load at all. I originally thought it was my mobile internet because that is temperamental, but I am using that now on my phone to ask this questi

  • Varchar to datetime conversion

    I have a column which has 05MAY2006:04:34:00.000000 it is stored as varchar(25). I need to save it as datetime in the same column. I have tried using  update tablename set columnname = (SUBSTRING(columnname,1,2) + '-' + SUBSTRING(columnname,3,3) + '-

  • Illustrator CC couldn't open a file

    Hi All, I was trying to open a illustrator file but i couldn't open up. The illustrator file size is around 270 mb. I am getting the below error message as in the image. I am using Mac OS X 2.9 GHz Intel Core i5, Memory 8 GB 1600 MHz DDR3. The softwa