Error when restoring database

Hello

I'm not able to restore the data store after taking backup.

This is the command I ran
C:\Documents and Settings\Administrator > ttbackup-filefullenable - dir c:\backup - fname restored type m2

Backup started...
Full backup

I could see the backu following files in the backup directory
restored.BAC
resotroed. STA

C:\Documents and Settings\Administrateur > ttrestore - dir c:\backupdb - restored fname 'dsn = cachedb' Started restoring...
Failed to restore:
Error 12196: TT12196: State found backup - file "backuprestore.c", li file_
NENO 1007 of the procedure "ttUtBackupStaFileRead"_

Please let me know where I'm going wron.

Kind regards
Harmeet Kaur

It's a perfectly valid backup scenario. However, the error here is completely different from that in your original post...

This last error is simply because the database already exists. By ttRestire security measure will not overwrite an existing database. You must move the existing database (ttDestroy m2) first, then you can restore using ttRestore.

Chris

Tags: Database

Similar Questions

  • Error when restoring a database.

    Hi all

    When I running "restore database". I get the error message below.

    Oracle version: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    Operating systems: Windows Vista 32-bit


    From restoration to 25 June 09
    using channel ORA_DISK_1

    channel ORA_DISK_1: from the restore backup set data file
    channel ORA_DISK_1: specifying datafile (s) to restore from backup set
    channel ORA_DISK_1: restore datafile 00001 to D:\APP\DNBTECH\ORADATA\ORCL\SYST
    EM01. DBF
    channel ORA_DISK_1: restore datafile 00002 to D:\APP\DNBTECH\ORADATA\ORCL\SYSA
    UX01. DBF
    channel ORA_DISK_1: restore datafile 00003 to D:\APP\DNBTECH\ORADATA\ORCL\UNDO
    TBS01. DBF
    channel ORA_DISK_1: restore datafile 00004 in D:\APP\DNBTECH\ORADATA\ORCL\USER
    S01. DBF
    channel ORA_DISK_1: backup D:\APP\DNBTECH\FLASH_RECOVERY_AREA piece reading
    \ORCL\BACKUPSET\2009_06_24\O1_MF_NNNDF_TAG20090624T224231_544SNC6F_. BKP
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the restore command at 2009-06-25 19:13:05
    ORA-19870: error while restoring the backup D:\APP\DNBTECH\FLASH_RECOVERY_AREA piece
    \ORCL\BACKUPSET\2009_06_24\O1_MF_NNNDF_TAG20090624T224231_544SNC6F_. BKP
    ORA-19573: failed to get exclusive enqueue for datafile 1


    Thank you

    Restore database before opening it. In the State Assembly.

  • With the help of VM Workstation 8. error when restoring from instant snapshots are not allowed on this virtual machine.

    Hello

    I have takena instant and then try to turn on the machine and get a message:
    "Snapshots are not allowed on this virtual machine!

    When I try to start the snapshot form, I get an error:
    "snapshot restore error, snapshots are not allowed on this virtual machine.

    Can you please help?

    It seems that the configuration (.vmx) file has been deleted (zero byte). I recreated a new you have attached log files. Please replace the file corrupted with VMware Workstation (or at least tab of the virtual machine) closed in order to ensure that the replaced file gets read.

    André

  • Error when restoring save point

    Hello

    I have a problem when I try to restore my save point.  My restoration activity is called from a stubborn task incorporated as a region in a plain .jspx page flow.  The workflow is configured to always start a new transaction and has a range of isolated data control.  I can create and remove backup points, and I also have access to them properly as I can query for them using SavePointManager, so I don't have to go to a point record that is not available on my user account.  Is there something I'm missing in my configuration of workflow or something that does not work with fragments of page?

    Thanks for your time.

    Here is my code to create/delete/restore save points

        // creates save point with specified name and adds it to the list
        public void createSavePoint() {
            ControllerContext cc = ControllerContext.getInstance();
            if (cc != null) {
                SavePointManager mgr = cc.getSavePointManager();
                if (mgr != null) {
                    SavePointAttributes attrs = new SavePointAttributes(savePointName, reportType, null);
                    mgr.createSavePoint(attrs);
                    ADFUtils.findOperation("execute").execute();
                    ADFUtils.findIterator("savePointsIterator").executeQuery();
                }
            }
        }
      
        // removes save point from the database and list
        public void removeSavePoint() {
            DCIteratorBinding dcIter = ADFUtils.findIterator("savePointsIterator");
            Row row = dcIter.getCurrentRow();
            if (row != null) {
                String id = (String) row.getAttribute("id");
              
                ControllerContext cc = ControllerContext.getInstance();
                if (cc != null) {
                    SavePointManager mgr = cc.getSavePointManager();
                    if (mgr != null) {
                        mgr.removeSavePoint(id);
                        ADFUtils.findOperation("execute").execute();
                        ADFUtils.findIterator("savePointsIterator").executeQuery();
                    }
                }
            }
        }
    
    
        // Restores application state to selected save point
        public String restoreSavePoint() {
            DCIteratorBinding dcIter = ADFUtils.findIterator("savePointsIterator");
            Row row = dcIter.getCurrentRow();
            if (row != null) {
                savePointId = (String) row.getAttribute("id");
                return "restoreSavePoint";
            }
            return null;
        }
    
    
    
    

    Here's the complete stack trace.

    < 7 July 2014 11:11:45 AM CDT > < error > < oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter > < BEA-000000 > < ADF_FACES - 60096:Server Exception during the PPR, #8

    oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08014: the controller of the ADF is unable to run the point backup restoration activity.

    at oracle.adfinternal.controller.savepoint.SavePointUtil.createAndLogSavePointException(SavePointUtil.java:56)

    at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.restoreSavePoint(SavePointManagerImpl.java:695)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.restoreSavePoint(SavePointRestoreListener.java:59)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.afterPhase(SavePointRestoreListener.java:43)

    to oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$ PagePhaseListenerWrapper.afterPhase (ADFLifecycleImpl.java:537)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)

    to oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$ PhaseInvokerImpl.dispatchAfterPagePhaseEvent (ADFPhaseListener.java:302)

    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:88)

    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:489)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:137)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3367)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3333)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:254)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)

    Caused by: oracle.jbo.JboException: ADFContext Houston-29114 is not configured to process this exception messages. Use the code of exception stack trace and error to investigate the root cause of this exception. Root cause error code is Houston-29000. Error messages settings are {0 = oracle.adf.model.adapter.AdapterException, 1 = DCA-29000: Unexpected exception caught: java.lang.NullPointerException, msg = null}

    at oracle.adf.model.adapter.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:219)

    at oracle.adf.model.adapter.bean.BeanDCFactoryImpl.createSession(BeanDCFactoryImpl.java:66)

    at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:234)

    at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:1247)

    at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:1746)

    at oracle.adf.model.dcframe.DataControlFrameImpl.internalFindDataControl(DataControlFrameImpl.java:1608)

    at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:1568)

    at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:1380)

    at oracle.adf.model.BindingContext.get(BindingContext.java:1330)

    at oracle.adf.model.dcframe.DataControlFrameImpl.restoreDataControl(DataControlFrameImpl.java:980)

    at oracle.adf.model.dcframe.DataControlFrameImpl.restoreSnapshot(DataControlFrameImpl.java:1052)

    at oracle.adfinternal.controller.util.model.DCFrameImpl.restoreSnapshot(DCFrameImpl.java:81)

    at oracle.adfinternal.controller.state.ControllerState.restorePageFlowStackEntry(ControllerState.java:1726)

    at oracle.adfinternal.controller.state.ControllerState.restoreViewPort(ControllerState.java:1625)

    at oracle.adfinternal.controller.state.ControllerState.restoreViewPort(ControllerState.java:1694)

    at oracle.adfinternal.controller.state.ControllerState.restoreControllerState(ControllerState.java:1559)

    at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.restoreSavePoint(SavePointManagerImpl.java:681)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.restoreSavePoint(SavePointRestoreListener.java:59)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.afterPhase(SavePointRestoreListener.java:43)

    to oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$ PagePhaseListenerWrapper.afterPhase (ADFLifecycleImpl.java:537)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)

    to oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$ PhaseInvokerImpl.dispatchAfterPagePhaseEvent (ADFPhaseListener.java:302)

    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:88)

    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:489)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:137)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3367)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3333)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:254)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)

    Caused by: oracle.adf.model.adapter.AdapterException: ADFContext Houston-29114 is not configured to process this exception messages. Use the code of exception stack trace and error to investigate the root cause of this exception. Root cause error code is DCA-29000. Error messages settings are {0 = java.lang.NullPointerException, 1 = null}

    at oracle.adf.model.adapter.bean.BeanDataControl.getDCProvider(BeanDataControl.java:74)

    to oracle.adf.model.adapter.bean.BeanDataControl. < init > (BeanDataControl.java:41)

    to oracle.adf.model.adapter.bean.BeanDCDefinitionDataControl. < init > (BeanDCDefinitionDataControl.java:43)

    at oracle.adf.model.adapter.bean.BeanDCDefinition.createDataControl(BeanDCDefinition.java:55)

    at oracle.adf.model.adapter.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:197)

    at oracle.adf.model.adapter.bean.BeanDCFactoryImpl.createSession(BeanDCFactoryImpl.java:66)

    at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:234)

    at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:1247)

    at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:1746)

    at oracle.adf.model.dcframe.DataControlFrameImpl.internalFindDataControl(DataControlFrameImpl.java:1608)

    at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:1568)

    at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:1380)

    at oracle.adf.model.BindingContext.get(BindingContext.java:1330)

    at oracle.adf.model.dcframe.DataControlFrameImpl.restoreDataControl(DataControlFrameImpl.java:980)

    at oracle.adf.model.dcframe.DataControlFrameImpl.restoreSnapshot(DataControlFrameImpl.java:1052)

    at oracle.adfinternal.controller.util.model.DCFrameImpl.restoreSnapshot(DCFrameImpl.java:81)

    at oracle.adfinternal.controller.state.ControllerState.restorePageFlowStackEntry(ControllerState.java:1726)

    at oracle.adfinternal.controller.state.ControllerState.restoreViewPort(ControllerState.java:1625)

    at oracle.adfinternal.controller.state.ControllerState.restoreViewPort(ControllerState.java:1694)

    at oracle.adfinternal.controller.state.ControllerState.restoreControllerState(ControllerState.java:1559)

    at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.restoreSavePoint(SavePointManagerImpl.java:681)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.restoreSavePoint(SavePointRestoreListener.java:59)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.afterPhase(SavePointRestoreListener.java:43)

    to oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$ PagePhaseListenerWrapper.afterPhase (ADFLifecycleImpl.java:537)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)

    to oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$ PhaseInvokerImpl.dispatchAfterPagePhaseEvent (ADFPhaseListener.java:302)

    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:88)

    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:489)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:137)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3367)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3333)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:254)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)

    Caused by: java.lang.NullPointerException

    at com.dnr.welltests.utils.SavePointHelper.execute(SavePointHelper.java:39)

    to com.dnr.welltests.utils.SavePointHelper. < init > (SavePointHelper.java:26)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:525)

    at java.lang.Class.newInstance0(Class.java:374)

    at java.lang.Class.newInstance(Class.java:327)

    at oracle.adf.model.adapter.bean.BeanDataControl.getDCProvider(BeanDataControl.java:64)

    to oracle.adf.model.adapter.bean.BeanDataControl. < init > (BeanDataControl.java:41)

    to oracle.adf.model.adapter.bean.BeanDCDefinitionDataControl. < init > (BeanDCDefinitionDataControl.java:43)

    at oracle.adf.model.adapter.bean.BeanDCDefinition.createDataControl(BeanDCDefinition.java:55)

    at oracle.adf.model.adapter.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:197)

    at oracle.adf.model.adapter.bean.BeanDCFactoryImpl.createSession(BeanDCFactoryImpl.java:66)

    at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:234)

    at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:1247)

    at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:1746)

    at oracle.adf.model.dcframe.DataControlFrameImpl.internalFindDataControl(DataControlFrameImpl.java:1608)

    at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:1568)

    at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:1380)

    at oracle.adf.model.BindingContext.get(BindingContext.java:1330)

    at oracle.adf.model.dcframe.DataControlFrameImpl.restoreDataControl(DataControlFrameImpl.java:980)

    at oracle.adf.model.dcframe.DataControlFrameImpl.restoreSnapshot(DataControlFrameImpl.java:1052)

    at oracle.adfinternal.controller.util.model.DCFrameImpl.restoreSnapshot(DCFrameImpl.java:81)

    at oracle.adfinternal.controller.state.ControllerState.restorePageFlowStackEntry(ControllerState.java:1726)

    at oracle.adfinternal.controller.state.ControllerState.restoreViewPort(ControllerState.java:1625)

    at oracle.adfinternal.controller.state.ControllerState.restoreViewPort(ControllerState.java:1694)

    at oracle.adfinternal.controller.state.ControllerState.restoreControllerState(ControllerState.java:1559)

    at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.restoreSavePoint(SavePointManagerImpl.java:681)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.restoreSavePoint(SavePointRestoreListener.java:59)

    at oracle.adfinternal.controller.application.SavePointRestoreListener.afterPhase(SavePointRestoreListener.java:43)

    to oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$ PagePhaseListenerWrapper.afterPhase (ADFLifecycleImpl.java:537)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.internalDispatchAfterEvent(LifecycleImpl.java:120)

    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.dispatchAfterPagePhaseEvent(LifecycleImpl.java:168)

    to oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$ PhaseInvokerImpl.dispatchAfterPagePhaseEvent (ADFPhaseListener.java:302)

    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:88)

    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:489)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:280)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:254)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:478)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:137)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3367)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3333)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)

    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)

    to weblogic.servlet.provider.ContainerSupportProviderImpl$ WlsRequestExecutor.run (ContainerSupportProviderImpl.java:254)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)

    You would like to check why there at - it a NPE in these lines in your code.

    Caused by: java.lang.NullPointerException

    at com.dnr.welltests.utils.SavePointHelper.execute(SavePointHelper.java:39)

    to com.dnr.welltests.utils.SavePointHelper. (SavePointHelper.java:26)

  • Error when restoring.

    Hi Experts.

    I take the backup of the database.
    MAN> backup database plus archivelog;
    
    
    Starting backup at 11-NOV-12
    using channel ORA_DISK_1
    specification does not match any archive log in the recovery catalog
    backup cancelled because all files were skipped
    Finished backup at 11-NOV-12
    
    Starting backup at 11-NOV-12
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TEST\SYSTEM01.DBF
    
    input datafile fno=00003 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TEST\SYSAUX01.DBF
    
    input datafile fno=00005 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TEST\EXAMPLE01.DB
    F
    input datafile fno=00002 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TEST\UNDOTBS01.DB
    F
    input datafile fno=00004 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TEST\USERS01.DBF
    channel ORA_DISK_1: starting piece 1 at 11-NOV-12
    channel ORA_DISK_1: finished piece 1 at 11-NOV-12
    piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TEST\BACKUPSET\2012_11
    _11\O1_MF_NNNDF_TAG20121111T170118_89Z347K4_.BKP tag=TAG20121111T170118 comment=
    NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:56
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current control file in backupset
    including current SPFILE in backupset
    channel ORA_DISK_1: starting piece 1 at 11-NOV-12
    channel ORA_DISK_1: finished piece 1 at 11-NOV-12
    piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TEST\BACKUPSET\2012_11
    _11\O1_MF_NCSNF_TAG20121111T170118_89Z36119_.BKP tag=TAG20121111T170118 comment=
    NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:06
    Finished backup at 11-NOV-12
    
    Starting backup at 11-NOV-12
    using channel ORA_DISK_1
    specification does not match any archive log in the recovery catalog
    backup cancelled because all files were skipped
    Finished backup at 11-NOV-12
    When I try to restore my controlfile is showing error like
    RMAN> restore controlfile from 'O1_MF_NCSNF_TAG20121111T170118_89Z36119_';
    
    Starting restore at 11-NOV-12
    using channel ORA_DISK_1
    
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 11/11/2012 17:23:14
    RMAN-06172: no autobackup found or specified handle is not a valid copy or piece
    Pls Help I have dono where I'm going wrong...

    Hello

    It restore you to a different server? If so, you copied the backup piece to the new server?

    You can try specifying the full path of the backup controlfile piece where you placed it. Example, if the backup piece is then placed in a place "C:\backupset,"

    RMAN > restore controlfile to ' C:\BACKUPSET\O1_MF_NCSNF_TAG20121111T170118_89Z36119_. BKP

  • Error when restoring 10.2.0.3 backup to 10.2.0.5

    Hello

    I am trying to restore a backup of production (10.2.0.3) on QA (10.2.0.5 which constitutes a new host). I am wrong RMAN-06172 .

    Help, please

    I have done the following

    RMAN > set dbid 19357374

    executing command: SET DBID

    RMAN > startup nomount

    failed to start: ORA-01078: failure in the treatment of system settings

    LRM-00109: could not open the parameter file ' D:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\INITIFPRD. ORA'

    starting Oracle instance without parameter file for dérirez of spfile

    Oracle instance started

    Total System Global Area 159383552 bytes

    Bytes of size 2076008 fixed

    71303832 variable size bytes

    79691776 of database buffers bytes

    Redo buffers 6311936 bytes

    RMAN > view controlfile autobackup format.

    using the control file of the target instead of recovery catalog database

    RMAN configuration parameters are:

    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO "%F" # by default

    RMAN > set controlfile autobackup format disk device type to 'E:\backup\IFPRD\controlfile_%F ';

    executing command: SET CONTROLFILE AUTOBACKUP FORMAT

    RMAN > restore spfile

    2 > to pfile "E:\Restore_logs\QA1\initIFPRD.ora."

    3 > AutoSave.

    From restoration 13 / SEP / 29

    allocated channel: ORA_DISK_1

    channel ORA_DISK_1: sid = 35 devtype = DISK

    channel ORA_DISK_1: looking for autobackup day: 20130929

    channel ORA_DISK_1: looking for autobackup day: 20130928

    channel ORA_DISK_1: looking for autobackup day: 20130927

    channel ORA_DISK_1: looking for autobackup day: 20130926

    channel ORA_DISK_1: looking for autobackup day: 20130925

    channel ORA_DISK_1: looking for autobackup day: 20130924

    channel ORA_DISK_1: looking for autobackup day: 20130923

    channel ORA_DISK_1: found no autobackup in 7 days

    RMAN-00571: ===========================================================

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    RMAN-00571: ===========================================================

    RMAN-03002: failure of the restore command at 11:59:51 29/09/2013

    RMAN-06172: no autobackup couldn't find or handle specified is not a valid copy or a piece

    seems you've tried using all the possibilities, I doubt that backup may be corrupted or not accessible.

    You can try to restore your control file by placing on a different location, maybe on "C:\". »

  • error when installing database waiting for database

    Hello


    I copy the primary database to the standby database server.


    But when I mount the database command below, then I get the error message.

    ALTER database base_de_donnees eve of Mount;


    ORA-00201: control version of the 11.2.0.0.0 file that is incompatible with the version of ORACLE
    10.2.0.2.0
    ORA-00202: control file: ' / u02/app/oracle/oradata/standby/control01.ctl'

    What is the reason for this error.

    Thanks in advance.

    Binary files (ORACLE_HOME) are the version 10.2
    But the database (datafiles) come from a database of 11.2

    You cannot use 10.2 binary to mount a database 11.2.
    You must install 11.2 (preferably to the same patch as the source database level) and then use this new ORACLE_HOME to mount the database pending.

    Hemant K Collette

  • Error when using DataBase LINK in pl/sql

    I have cursor fetch some distance db values and I'm trying to store values in the local table (see code below) I can run select it asks only successfully but when I use it inside plsql it fails with the error.
    DECLARE
    TYPE MY_CURSOR
    IS
         REF
         CURSOR;
              THE_CURSOR MY_CURSOR;
              V_CT          NUMBER(18);
              V_PSN_ID      VARCHAR2(30);
              V_INTERNET_ID VARCHAR2(75);
         BEGIN
              V_CT                                                                           :=0;
              OPEN THE_CURSOR FOR SELECT PSN_ID, 'TEST' FROM TABLE_A@PRO1 WHERE TABLE_A.SEQ_A<=1000;
              LOOP
                   FETCH THE_CURSOR INTO V_PSN_ID, V_INTERNET_ID;
              EXIT
         WHEN THE_CURSOR%NOTFOUND;
               INSERT INTO PSN_EMAIL_SENT_TO@local
                        (PSN_ID, LAST_UPDT_DT
                        ) VALUES
                        (V_PSN_ID, SYSDATE
                        );
              
              V_CT:=V_CT+1;
         END LOOP;
         CLOSE THE_CURSOR;
         DBMS_OUTPUT.PUT_LINE
         (
              TO_CHAR(V_CT)
         )
         ;
    END;
    Error report:
    ORA-04052: error occurred when looking up remote object  TABLE_A@PRO1
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04029: error ORA-1775 occurred when querying ORA_KGLR7_DEPENDENCIES
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01775: looping chain of synonyms
    ORA-02063: preceding 3 lines from PRO1
    04052. 00000 -  "error occurred when looking up remote object %s%s%s%s%s"
    *Cause:    An error has occurred when trying to look up a remote object.
    *Action:   Fix the error.  Make sure the remote database system has run
               KGLR.SQL to create necessary views used for querying/looking up
               objects stored in the database.

    You must create the catalog views that support distributed SQL in your remote database (the database you connect to via db_link).
    To create these views, connect "/ as sysdba" and run:
    $ORACLE_HOME/rdbms/admin/catproc.sql
    that in turn calls several other scripts, including: $ORACLE_HOME/rdbms/admin/catrpc.sql (which creates your missing view)

    It is best to run the whole catproc.sql script (and not only the script catrpc).
    You can run and rerun catproc.sql several times without problem.

    See you soon

  • Error when restoring iPod

    I got an iPod shuffle second generation, so I bought a load dock online to connect to my mac. Whenever I try to restore it, it says "iPod"iPod"could not be restored. An unknown error occurred (1429). "I have now completely erased from the iPod and tried everything I saw. Any suggestions are appreciated. Thank you.

    The cable must be the one that came with it, or a compatible third-party replacement cable.  The cable that apple sells currently is for iPod shuffle 3rd and 4th generation and does not work with 2nd gen shuffle.  The connector is different.

    Given that the original cable is no longer sold (nine), the replacement of the third party must be described as 2nd gen Shuffle.  Unfortunately, many of these third-party cables are cheap and of questionable quality.

    If you believe that you have the right type of cable for your 2nd gen shuffle, thanks for posting back with more details.  Your computer is equipped with a Mac or a Windows PC iTunes?  If Windows, which free?

  • error when installing database... under redhat linux 4.8

    Hello
    I try to install oracle 10g on redhat linux 4.8
    I get error at 62%
    Error in invoking target 'ntcontb.o' of makefile   
    so please can any body tell me what is the question to the oracle, I have downloaded from the Web site of oracle itself.
    product prerequisite
    
    
    Checking operating system requirements ...
    Expected result: One of redhat-3,redhat-4,SuSE-9,asianux-1,asianux-2
    Actual Result: redhat-4
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking operating system package requirements ...
    Checking for make-3.79; found make-1:3.80-7.EL4. Passed
    Checking for binutils-2.14; found binutils-2.15.92.0.2-25. Passed
    Checking for gcc-3.2; found Not found. Failed <<<<
    Checking for libaio-0.3.96; found libaio-0.3.105-2. Passed
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Some packages required for the Oracle Database 10g to
    function properly are missing (see above).
    Recommendation: Install the required packages before continuing with
    the installation.
    =======================================================================
    
    Checking kernel parameters
    Checking for semmsl=250; found semmsl=250.      Passed
    Checking for semmns=32000; found semmns=32000.  Passed
    Checking for semopm=100; found semopm=100.      Passed
    Checking for semmni=128; found semmni=128.      Passed
    Checking for shmmax=536870912; found shmmChecking operating system
    requirements ...
    Expected result: One of redhat-3,redhat-4,SuSE-9,asianux-1,asianux-2
    Actual Result: redhat-4
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking operating system package requirements ...
    Checking for make-3.79; found make-1:3.80-7.EL4.        Passed
    Checking for binutils-2.14; found binutils-2.15.92.0.2-25.      Passed
    Checking for gcc-3.2; found Not found.  Failed <<<<
    Checking for libaio-0.3.96; found libaio-0.3.105-2.     Passed
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Some packages required for the Oracle Database 10g to
    function properly are missing (see above).
    Recommendation: Install the required packages before continuing with
    the installation.
    =======================================================================
    
    Checking kernel parameters
    Checking for semmsl=250; found semmsl=250.      Passed
    Checking for semmns=32000; found semmns=32000.  Passed
    Checking for semopm=100; found semopm=100.      Passed
    Checking for semmni=128; found semmni=128.      Passed
    Checking for shmmax=536870912; found shmmax=536870912.  Passed
    Checking for shmmni=4096; found shmmni=4096.    Passed
    Checking for shmall=2097152; found shmall=2097152.      Passed
    Checking for file-max=65536; found file-max=202024.     Passed
    Checking for VERSION=2.6.9; found VERSION=2.6.9-89.ELsmp.       Passed
    Checking for ip_local_port_range=1024 - 65000; found
    ip_local_port_range=32768 - 61000.      Failed <<<<
    Checking for rmem_default=262144; found rmem_default=110592.    Failed <<<<
    Checking for rmem_max=262144; found rmem_max=131071.    Failed <<<<
    Checking for wmem_default=262144; found wmem_default=110592.    Failed <<<<
    Checking for wmem_max=262144; found wmem_max=131071.    Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    Recommendation: Perform operating system specific instructions to
    update the kernel parameters.
    =======================================================================
    
    Checking Recommended glibc version
    Expected result: ATLEAST=2.3.2-95.27
    Actual Result: 2.3.4-2.43
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking physical memory requirements ...
    Expected result: 922MB
    Actual Result: 1988MB
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking available swap space requirements ...
    Expected result: 2982MB
    Actual Result: 1983MB
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The system does not have the required swap space.
    Recommendation: Make more swap space available to perform the install.
    =======================================================================
    
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    Recommendation: Oracle supports installations on systems with
    DHCP-assigned public IP addresses.  However, the primary network
    interface on the system should be configured with a static IP address
    in order for the Oracle Software to function properly.  See the
    Installation Guide for more details on installing the software on
    systems configured with DHCP.
    =======================================================================
    
    Validating ORACLE_BASE location (if set) ...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking Oracle Home path for spaces...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking for proper system clean-up....
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking for Oracle Home incompatibilities ....
    Actual Result: NEW_HOME
    Check complete. The overall result of this check is: Passed
    =======================================================================ax=536870912.    Passed
    Checking for shmmni=4096; found shmmni=4096.    Passed
    Checking for shmall=2097152; found shmall=2097152.      Passed
    Checking for file-max=65536; found file-max=202024.     Passed
    Checking for VERSION=2.6.9; found VERSION=2.6.9-89.ELsmp.       Passed
    Checking for ip_local_port_range=1024 - 65000; found
    ip_local_port_range=32768 - 61000.      Failed <<<<
    Checking for rmem_default=262144; found rmem_default=110592.    Failed <<<<
    Checking for rmem_max=262144; found rmem_max=131071.    Failed <<<<
    Checking for wmem_default=262144; found wmem_default=110592.    Failed <<<<
    Checking for wmem_max=262144; found wmem_max=131071.    Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    Recommendation: Perform operating system specific instructions to
    update the kernel parameters.
    =======================================================================
    
    Checking Recommended glibc version
    Expected result: ATLEAST=2.3.2-95.27
    Actual Result: 2.3.4-2.43
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking physical memory requirements ...
    Expected result: 922MB
    Actual Result: 1988MB
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking available swap space requirements ...
    Expected result: 2982MB
    Actual Result: 1983MB
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The system does not have the required swap space.
    Recommendation: Make more swap space available to perform the install.
    =======================================================================
    
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    Recommendation: Oracle supports installations on systems with
    DHCP-assigned public IP addresses.  However, the primary network
    interface on the system should be configured with a static IP address
    in order for the Oracle Software to function properly.  See the
    Installation Guide for more details on installing the software on
    systems configured with DHCP.
    =======================================================================
    
    Validating ORACLE_BASE location (if set) ...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking Oracle Home path for spaces...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking for proper system clean-up....
    Check complete. The overall result of this check is: Passed
    =======================================================================
    
    Checking for Oracle Home incompatibilities ....
    Actual Result: NEW_HOME
    Check complete. The overall result of this check is: Passed
    Chetan-

    Published by: YANNICK CHETAN on October 6, 2010 15:27

    Published by: YANNICK CHETAN on October 6, 2010 15:28

    You need to install additional packages.
    You must configure the additional kernel parameters.
    And add more swap.

    For the list of required package control Installation guides
    http://www.Oracle.com/pls/db102/homepage
    or a very good install howto check MOS Docs
    Requirements for the installation of Oracle 10 g RDBMS on RHEL 4 x 86 platform [343431.1 ID] 2
    System requirements to install Oracle 10 g 2 RDBMS on RHEL 4 on AMD64/EM64T [339510.1 ID]

    Edited by: Kecskemethy on October 6, 2010 03:03

  • What means this error when launching Cloud Java instance?

    Hello

    I just create an instance of cloud c12 db and now I am trying to create a java database as a service...

    See the messages of commissioning, I get these errors to the console:

    UCR-6013: specified prefix does not exist. Prefixes are: no
    RCU - 6091:Component name/prefix schema validation failed.
    ORA-01950: no privileges on tablespace 'SYSTEM '.

    I thought that the problem was SYSTEM user, so I inserted a SYS user (when you create java cloud service) with the password of the database, but still without success...

    What it means? I get no error when the database is restarted!

    Thanks for any suggestions,

    Skender Kollcaku

    Can you try to create the instance of the JCS as sys when connecting to the DB?

  • restore database using old piece of backup

    Hello
    I want to restore my database through 2 days piece.her backup details and error


    RMAN > restore database of ' C:\Oracle\recovery_area\orcl\BACKUPSET\2012_09_04\O
    1_MF_NNND0_TAG20120904T133454_84CFKB4D_. BKP';

    From catering to 12-SEP-06
    using channel ORA_DISK_1

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the restore command at 06/09/2012 14:45:16
    RMAN-06509: single file SPFILE or control can be restored from AUTOMATIC backup

    Thanks in advance

    This error is because you use the command wring to rman. First you must catalog the backup and then you use only 'restore database' command only.

    1 rman target /.

    2 catalogue backuppiece ' C:\Oracle\recovery_area\orcl\BACKUPSET\2012_09_04\O
    1_MF_NNND0_TAG20120904T133454_84CFKB4D_. BKP'

    3. restore the database.

    Published by: Slim on 6 Sep 2012 15:03

  • Waiting for redo log file missing when restore main database using RMAN backup that was taken on the database physical standby

    Here's my question after tons of research and test without have the right solutions.

    Target:

    (1) I have a 12.1.0.2 database unique main enterprise 'testdb' as database instance running on the server "node1".

    (2) I created physical standby database "stbydb" on the server "node2".

    (3) DataGuard running on the mode of MaxAvailability (SYNC) with roll forward in real time 12 default c apply.

    (4) primary database has 3 groups of one-man redo. (/oraredo/testdb/redo01.log redo02.log redo03.log)

    (5) I've created 4 standby redo logfiles (/oraredo/testdb/stby01.log stby02.log stby03.log stby04.log)

    (6) I do RMAN backup (database and archivelog) on the site of relief only.

    (7) I want to use this backup for full restore of the database on the primary database.

    He is a DR test to simulate the scenario that has lost every primary & Eve total servers.

    Here is how to save, on the database pending:

    (1) performance 'alter database recover managed standby database Cancel' to ensure that compatible data files

    (2) RMAN > backup database;

    (3) RMAN > backup archivelog all;

    I got elements of backup and copied to primary db Server something like:

    /Home/Oracle/backupset/o1_mf_nnndf_TAG20151002T133329_c0xq099p_.BKP (data files)

    /Home/Oracle/backupset/o1_mf_ncsnf_TAG20151002T133329_c0xq0sgz_.BKP (spfile & controlfile)

    /Home/Oracle/backupset/o1_mf_annnn_TAG20151002T133357_c0xq15xf_.BKP (archivelogs)

    So here's how to restore, on the main site:

    I clean all the files (data files, controlfiles oder all gone).

    (1) restore spfile from pfile

    RMAN > startup nomount

    RMAN > restore spfile from pfile ' / home/oracle/pfile.txt' to ' / home/oracle/backupset/o1_mf_ncsnf_TAG20151002T133329_c0xq0sgz_.bkp';

    (2) modify pfile to convert to db primary content. pFile shows below

    *.audit_file_dest='/opt/Oracle/DB/admin/testdb/adump '

    * .audit_trail = "db".

    * full = '12.1.0.2.0'

    *.control_files='/oradata/testdb/control01.ctl','/orafra/testdb/control02.ctl'

    * .db_block_size = 8192

    * .db_domain = "

    *.db_file_name_convert='/testdb/','/testdb /'

    * .db_name = "testdb".

    * .db_recovery_file_dest ='/ orafra'

    * .db_recovery_file_dest_size = 10737418240

    * .db_unique_name = "testdb".

    *.diagnostic_dest='/opt/Oracle/DB '

    * .fal_server = "stbydb".

    * .log_archive_config = 'dg_config = (testdb, stbydb)'

    * .log_archive_dest_2 = "service = stbydb SYNC valid_for = (ONLINE_LOGFILE, PRIMARY_ROLE) db_unique_name = stbydb'"

    * .log_archive_dest_state_2 = 'ENABLE '.

    *.log_file_name_convert='/testdb/','/testdb /'

    * .memory_target = 1800 m

    * .open_cursors = 300

    * runoff = 300

    * .remote_login_passwordfile = "EXCLUSIVE."

    * .standby_file_management = "AUTO".

    * .undo_tablespace = "UNDOTBS1.

    (3) restart db with updated file pfile

    SQLPLUS > create spfile from pfile='/home/oracle/pfile.txt'

    SQLPLUS > the judgment

    SQLPLUS > startup nomount

    (4) restore controlfile

    RMAN > restore primary controlfile to ' / home/oracle/backupset/o1_mf_ncsnf_TAG20151002T133329_c0xq0sgz_.bkp';

    RMAN > change the editing of the database

    (5) all elements of backup catalog

    RMAN > catalog starts by ' / home/oracle/backupset / '.

    (6) restore and recover the database

    RMAN > restore database;

    RMAN > recover database until the SNA XXXXXX; (this YVERT is the maximum in archivelog backups that extends beyond the scn of the backup of the data file)

    (7) open resetlogs

    RMAN > alter database open resetlogs;

    Everything seems perfect, except one of the file log roll forward pending is not generated

    SQL > select * from v$ standby_log;

    ERROR:

    ORA-00308: cannot open archived log ' / oraredo/testdb/stby01.log'

    ORA-27037: unable to get file status

    Linux-x86_64 error: 2: no such file or directory

    Additional information: 3

    no selected line

    I intended to use the same backup to restore primary basic & helps record traffic and the downtime between them in the world of real output.

    So I have exactly the same steps (except STANDBY restore CONTROLFILE and not recover after database restore) to restore the database pending.

    And I got the same missing log file.

    The problem is:

    (1) complete alert.log filled with this error, not the concern here

    (2) now repeat it in real time apply won't work since the Party shall LGWR shows always "WAITING_FOR_LOG."

    (3) I can't delete and re-create this log file

    Then I tried several and found:

    The missing standby logfile was still 'ACTIVE' at present RMAN backup was made.

    For example, on db standby, under Group #4 (stby01.log) would be lost after the restoration.

    SQL > select GROUP #, SEQUENCE #, USE (s), the STATUS from v$ standby_log;

    GROUP # SEQUENCE # USED STATUS

    ---------- ---------- ---------- ----------

    4 19 ACTIVE 133632

    5 0 0 UNASSIGNED

    6 0 0 not ASSIGNED

    7 0 0 UNASSIGNED

    So until I take the backup, I tried on the primary database:

    SQL > alter system set log_archive_dest_state_2 = delay;

    This was the Group of standby_log side Eve #4 was released:

    SQL > select GROUP #, SEQUENCE #, USE (s), the STATUS from v$ standby_log;

    GROUP # SEQUENCE # USED STATUS

    ---------- ---------- ---------- ----------

    4 0 0 UNASSIGNED

    5 0 0 UNASSIGNED

    6 0 0 not ASSIGNED

    7 0 0 UNASSIGNED

    Then, the backup has been restored correctly without missing standby logfile.

    However, to change this primary database means break DataGuard protection when you perform the backup. It's not accept on the production environment.

    Finally, my real questions come:

    (1) what I do may not do on parameter change?

    (2) I know I can re-create the control file to redo before delete and then recreate after. Is there any simple/fast to avoid the standby logfile lost or recreate the lost one?

    I understand that there are a number of ways to circumvent this. Something to keep a copy of the log file waiting restoration progress and copy up one missing, etc, etc...

    And yes I always have done no real-time applies "to the aid of archived logfile" but is also not accept mode of protection of production.

    I just want proof that the design (which is displayed in a few oracle doc Doc ID 602299.1 is one of those) that backs up data backup works effectively and can be used to restore the two site. And it may be without spending more time to resume backups or put the load on the primary database to create the database before.

    Your idea is very much appreciated.

    Thank you!

    Hello

    1--> when I take via RMAN backup, RMAN does not redo log (ORL or SRL) file, so we cannot expect ORLs or SRL would be restored.

    2nd--> when we opened the ORL database should be deleted and created

    3rd--> Expecting, SRL should not be an issue.we should be able to do away with the fall.

    DR sys@cdb01 SQL > select THREAD #, SEQUENCE #, GROUP #, STATUS from v$ standby_log;

    THREAD # SEQUENCE # GROUP # STATUS

    ---------- ---------- ---------- ----------

    1 233 4 ACTIVE

    1 238 5 ACTIVE

    DR sys@cdb01 SQL > select * from v$ logfile;

    GROUP # STATUS TYPE MEMBER IS_ CON_ID

    ---------- ------- ------- ------------------------------ --- ----------

    3 /u03/cdb01/cdb01/redo03.log no. 0 online

    /U03/cdb01/cdb01/redo02.log no. 0 2 online

    1 /u03/cdb01/cdb01/redo01.log no. 0 online

    4 /u03/cdb01/cdb01/stdredo01.log WATCH No. 0

    /U03/cdb01/cdb01/stdredo02.log EVE 5 No. 0

    DR sys@cdb01 SQL > ! ls - ltr /u03/cdb01/cdb01/stdredo01.log

    method: cannot access the /u03/cdb01/cdb01/stdredo01.log: no such file or directory

    DR sys@cdb01 SQL >! ls - ltr /u03/cdb01/cdb01/stdredo02.log

    -rw - r-. 1 oracle oinstall 52429312 17 Oct 15:32 /u03/cdb01/cdb01/stdredo02.log

    DR sys@cdb01 SQL > alter database force claire logfile 4;

    change the database group claire logfile 4

    *

    ERROR on line 1:

    ORA-01156: recovery or current flashback may need access to files

    DR sys@cdb01 SQL > alter database recover managed standby database cancel;

    Database altered.

    DR sys@cdb01 SQL > change the database group claire logfile 4;

    Database altered.

    DR sys@cdb01 SQL > ! ls - ltr /u03/cdb01/cdb01/stdredo01.log

    -rw - r-. 1 oracle oinstall 52429312 17 Oct 15:33 /u03/cdb01/cdb01/stdredo01.log

    DR sys@cdb01 SQL >

    If you do, you can recreate the controlfile without waiting for redo log entry...

    If you still think it's something is not acceptable, you must have SR with support to analyze why he does not abandon SRL when controlfile_type is "underway".

    Thank you

  • RMAN error - validate restore them database

    Hi all

    I am trying to validate a full backup database made on tape by using the command 'Validate restore database', but for some reason that this command spits out several page long PL/SQL code (under truncated output). I looked all over for a solution but do not understand the problem.

    Any help will be appreciated.



    RMAN > assign the channel for the type of maintenance parms SBT_TAPE 'ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt) ';
    2 > crosscheck backup;
    3 > validate restore them database;
    4 > channel;
    5 > "exit";
    allocated channel: ORA_MAINT_SBT_TAPE_1
    channel ORA_MAINT_SBT_TAPE_1: SID = 82 device type = SBT_TAPE
    channel ORA_MAINT_SBT_TAPE_1: for Oracle Data Protection: version 5.4.1.0

    "" element of verified backup: turned out to be "AVAILABLE"
    the backup piece handle = c-822607628-20101006-02 RECID = 66 = 731711718 STAMP
    "" element of verified backup: turned out to be "AVAILABLE"
    handle = DB_20101007_77_2dlpsj84_1_1.dbf backup RECID = 67 = 731794692 STAMP item
    "" element of verified backup: turned out to be "AVAILABLE"
    .
    .
    .
    .
    .
    handle = CF_20101008_116_3klpt5iv_1_1.ctl backup RECID = 106 = 731813472 STAMP item
    "" element of verified backup: turned out to be "AVAILABLE"
    the backup piece handle = c-822607628-20101008-01 RECID = STAMP 107 = 731813518
    Cut 42 objects

    From restoration to October 8, 10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID = 110 type device = DISK

    DBGANY: Type CMD = HAKIMOUSS cmdid = 1 table = DO NOT START
    DBGANY: 1 STEPstepid = 1 cmdid = 1 table = NOT STARTED devtype = bs.stamp = 731812991 = 0 bytes step_size SBT_TAPE.
    DBGANY: 1 TEXTNOD = - rsdf_start
    DBGANY: 2 TEXTNOD = declare
    DBGANY: TEXTNOD 3 = / * restoreStatus * /.
    DBGANY: 4 TEXTNOD = directory of State;
    DBGANY: TEXTNOD 5 = pieces_done directory;
    DBGANY: TEXTNOD 6 = file directory;
    DBGANY: 7 TEXTNOD = Boolean data files;
    DBGANY: 8 additional boolean = TEXTNOD;
    DBGANY: 9 TEXTNOD = Boolean device;
    DBGANY: 10 TEXTNOD = / * restorebackuppiece * /.
    DBGANY: 11 TEXTNOD = boolean done;
    DBGANY: 12 TEXTNOD is currcf boolean;.
    .
    .
    .
    .
    .
    DBGANY: TEXTNOD 266 = sys.dbms_backup_restore.restoreCancel (FALSE);
    DBGANY: 267 TEXTNOD = exception
    DBGANY: 268 TEXTNOD = then that others then
    DBGANY: 269 TEXTNOD = krmicd.writeMsg (1005,
    DBGANY: TEXTNOD 270 = "c. dbms_backup_restore.restoreCancel () failed");
    DBGANY: 271 TEXTNOD = end;
    DBGANY: 272 TEXTNOD = sys.dbms_backup_restore.setRmanStatusRowId (rsid = > 0, RST = > 0);
    DBGANY: TEXTNOD 273 = end;
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-00601: fatal error in the Recovery Manager
    RMAN-03004: fatal error when executing command
    [RMAN-00600: internal error, arguments [6000] [] [] []]

    I remember there's a BACKUP command to VALIDATE, but I don't remember, it's the syntax or the difference with the RESTORATION of data TO ENTER.
    So I'll need to read the documentation too.

    -------------
    Sybrand Bakker
    Senior Oracle DBA

  • Error when you try to restore dv7-4294nr

    I decided to clean up the disk hard after I lent a friend of my pc, and his son put a ton of junk on it.  I did the restore disks when I go the pc first, but it gave me an error when I tried to restore.  Think the disc was bad and HP do not let me do another set of discs, I decided to order the HP restore disks (I also thought that it would be better if I ever came to sell PCs on having records)

    The disks arrived, I started the restoration, about an hour after she, she had rebooted several times, he came to an error saying that there was a problem with the recovery.  It offers the possibility to save log, details or retry

    Retry request disks and start the process (and possibly error).   When you click on details it says "fusion filenorm.wim has failed.

    Any ideas on how to solve this problem?

    You are the very welcome.

    I wish that the recovery disks would work as you would expect too.

    I have HP business PC and desktop computers, and I've never had a problem with the HP recovery discs.

    If I had $1 for all postings I see on the recovery of the consumer (self made and HP) disks does not, I could certainly get my wife out for an expensive dinner.

    Paul

Maybe you are looking for