Win 8 recovery WARNING

Lenovo ideapad systems using win8 has recovery issues if you change partitions, sizes or replace the hdd/sdd.
Win 8 systems have two ostensible options for creating system backup flash drives.
1. The standard Windows 8 option (control panel -> recovery) doesn't work with Lenovo systems - which does cause confusion.
2. The Lenovo backup solution does not work if you resize partitions, delete the Recovery partition, or if you replace the hdd/sdd for any reason.
3. The only option in the latter case is to call lenovo for back up disks around $50/£30 ( or go out and buy another copy of Win 8 - or win 7 if you don't like 8!).
Since hdds/sdds have a limited life, and are one of the more common reasons for system failure, it seems very odd to me that Lenovo's recovery solution is TOTALLY inadequate when it comes to this.
In the UK there is a case for Sale of Goods act, but this takes time, and probably no good if you need your system back in a rush.
I would suggest that Lenovo needs to review this process and come up with something that does what it says on the box, no ifs or buts.

    That's why most knowledgeable computer owners, invest in a reliable external hard drive, to handle their weekly/monthly backup.
     If you want to replace a failed internal drive, you should create a system image to the external backup drive, upon setting up the computer for the first time. That system image can be used to replace/restore the factory shipped state of the failed drive.
      http://www.eightforums.com/tutorials/8956-system-image-create-windows-8-a.html
     Then set up the File History to backup the files as you use them, and do a full system backup weekly/monthly.
     This multi-backup strategy will protect you in case of a internal hard drive failure.
     Lenovo's OKR software is geared for the most inexperienced computer owner, so if they messed up their system by deleting some of the required Lenovo programs, or by installing incompatible programs that borks the Lenovo software, they can restore the system to it's factory shipped state. It does not replace a complete daily/weekly/monthly backup strategy.
    No review is necessary. The OKR does do "what it says on the box" as long as the user leaves the recovery partition alone. If you want to "upgrade" your system to a larger HDD, or SSD, you need to follow the known methods for doing so. That includes, but is not limited to, creating a system image of the shipped drive, and a complete backup to an external recovery source, before you crack the back cover off.
Cheers
DragonRider
I'm DO'ing IT
Lenovo Y470 085525U 2nd generation Intel® Core™ i7-2630QM processor ( 2.00GHz 1333MHz 6MB )
IdeaCentre A520 Intel® Core™ i5-3230M processor ( 2.60GHz 2600MHz 3MB )
YOGA Tablet 2 Pro-1380F
X1 Carbon 2nd Gen (20A8) ThinkPad + T420

Similar Messages

  • Applying the Win Recovery environment to a UEFI system - How is everyone doing it?

    We've run into some trouble setting up Surface 3s with MDT 2013. Apparently there is a bug in the ZTIWinRE.wsf script, which causes it to copy winre.wim to the EFI system partition rather than the Recovery partition.
    https://social.technet.microsoft.com/Forums/en-US/22cb4d44-4215-483e-8bdc-b13d9d27725b/what-partition-does-mdt-2012-place-winre-on?forum=mdt#5e33d5d7-5ee4-432f-af65-710f08e99f72
    In addition to it being a nuisance, you are unable to enable bitlocker without a properly configured recovery partition.
    Which makes me wonder: am I the only person in the world trying to image Surfaces and enable Bitlocker? I can't imagine that that is the case. So how is everyone else doing it?
    After discovering that ZTIWinRE wasnt working, I scratched around for a few days and came up with this (below). I set conditions on ZTIWinRE to only run if IsUEFI=False, and this script ZTIWinRE_UEFI.wsf if IsUEFI=True. I had a hard time making any
    sense out of the ZTIDiskUtility.vbs functions, so theres probably an easier way to do it.
    <job id="ZTIWinRE_UEFI">
    <script language="VBScript" src="ZTIUtility.vbs"/>
    <script language="VBScript" src="ZTIDiskUtility.vbs"/>
    <script language="VBScript">
    ' // File: ZTIWinRE_MDT_UEFI
    ' // Purpose: Sets Recovery Environment
    ' // Usage: cscript ZTIWinRE_UEFI
    '// Global constant and variable declarations
    'Option Explicit
    Dim iRetVal
    Dim sArchitecture, colVolumes, objVolume
    Dim strREDriveLetter, strSource, strDestFolder, strDestFile
    '// End declarations
    '// Main routine
    iRetVal = ZTIProcess
    ProcessResults iRetVal
    'On Error Goto 0
    '// Function: ZTIProcess()
    '// Return: Success - 0
    '// Failure - non-zero
    '// Purpose: Perform main ZTI processing
    Function ZTIProcess()
    If UCase(oEnvironment.Item("PrepareWinRE")) <> "YES" then
    oLogging.CreateEntry "WinRE is not enabled, Skip.", LogTypeInfo
    Main = SUCCESS
    Exit Function
    End If
    oLogging.CreateEntry "---------------- Initialization ----------------", LogTypeInfo
    oLogging.CreateEntry "Build = " & oEnvironment.Item("OSCurrentVersion"), LogTypeInfo
    If Left(oEnvironment.Item("OSCurrentVersion"),3) < "6.1" then
    oLogging.CreateEntry "WinRE is not supported on Vista or Older. Skip.", LogTypeInfo
    Main = SUCCESS
    Exit Function
    End If
    sArchitecture= oEnvironment.Item("ImageProcessor")
    If sArchitecture = "" then
    sArchitecture = oEnvironment.Item("Architecture")
    oLogging.CreateEntry "ImageProcessor not set, will boot into Windows PE architecture " & sArchitecture, LogTypeInfo
    Else
    oLogging.CreateEntry "Will boot into Windows PE architecture " & sArchitecture & " to match OS being deployed.", LogTypeInfo
    End If
    If UCase(oEnvironment.Item("IsUEFI")) = "TRUE" Then
    oLogging.CreateEntry "IsUEFI = TRUE", LogTypeInfo
    strREDriveLetter = GetExistingRecoveryDrive
    strDestFolder = strREDriveLetter & "\Recovery\WinRE"
    oUtility.RunWithConsoleLogging "cmd /c MkDir " & strDestFolder
    oUtility.RunWithConsoleLogging "attrib -r -h -s " & strDestFolder & "\*.*"
    Else
    strDestFolder = "C:\Recovery\WinRE"
    End If
    strSource = oEnvironment.Item("DeployRoot") & "\Boot\LiteTouchPE_" & sArchitecture & ".wim"
    strDestFile = "WinRE.wim"
    oLogging.CreateEntry "Installing " & strSource & " on " & sArchitecture, LogTypeInfo
    oLogging.CreateEntry "Installing to " & strDestFolder & "\" & strDestFile, LogTypeInfo
    If oFSO.FileExists(strDestFolder & "\" & strDestFile) Then
    oLogging.CreateEntry strDestFolder & "\" & strDestFile & " already exists", LogTypeInfo
    Else
    oLogging.CreateEntry "oFSO.CopyFile " & strSource & "," & strDestFolder & "\" & strDestFile & ", True", LogTypeInfo
    oFSO.CopyFile strSource , strDestFolder & "\" & strDestFile, True
    End If
    oUtility.RunWithConsoleLogging "C:\Windows\System32\ReAgentc.exe /disable"
    oUtility.RunWithConsoleLogging "C:\Windows\System32\ReAgentc.exe /setreimage /path " & strDestFolder & " /target C:\Windows"
    oUtility.RunWithConsoleLogging "C:\Windows\System32\ReAgentc.exe /enable"
    Set colVolumes = objWMI.ExecQuery ("Select name, description from Win32_Volume")
    For Each objVolume in colVolumes
    oLogging.CreateEntry objVolume.Name, objVolume.Description
    Next
    oLogging.CreateEntry "---------------- End Run ----------------", LogTypeInfo
    End Function
    Function GetExistingRecoveryDrive
    Dim iRetVal, oPartition, sQuery, sDriveLetter
    sDriveLetter = ""
    sQuery = "SELECT * from Win32_LogicalDisk WHERE DriveType = 3"
    For Each oPartition in objWMI.ExecQUery(sQuery)
    If InStr (oPartition.VolumeName,"Windows RE") <> 0 Then
    sDriveLetter = oPartition.DeviceId
    Exit For
    End If
    Next
    oLogging.CreateEntry "assigning value " & sDriveLetter & " to Function GetExistingRecoveryDrive", LogTypeInfo
    GetExistingRecoveryDrive = sDriveLetter
    End Function
    </script>
    </job>

    Optimal configuration in the fancy picture above is what I setup.  On Surface Pro 3's actually :)   A few things to note:
    1) I could not create the table seen as optimal configuration in MDT.  I think this is something that will eventually come to MDT.  If all of your units have the same HDD and do not have multiple spec-outs, you can use MDT and create fixed size
    partitions, but you can't use the diskpart shrink  function to get that recovery image on the end of an OSDISK taking up the rest of the drive.  
    Instead, I opted to use the diskpart txt file from http://technet.microsoft.com/en-us/library/hh825686.aspx .  I deployed then to drive variable named OSDISK and made sure that the OS partition was named the same in my diskpart txt file.
    IMPORTANT : The section in the diskpart txt -
    set id="de94bba4-06d1-4d40-a16a-bfd50179d6ac"
    gpt attributes=0x8000000000000001
    That ID is what allows the Winre Tools partition to talk to the Windows Recovery partition outside of the deployed OS and allows access once authorized through bitlocker.
    2) I did not use ztiwinre at all, though I have a decent bit of Powershell knowledge to help me with creation and engagement of the recovery image.  Really all that was necessary knowledge to write it in Powershell was the
    reagentc commands.  You can see those commands being called in ztiwinre.  The process for mass deployment is have a named recovery drive that you copy the winre.wim to, a named partition that you copy the recovery image to, then engage
    the winre image and set the recovery image path.  Reagentc has offline image commands, so it's pretty easy to add it as an OS deployment step during a PE deployment.  
    So anyways yes it's definitely possible to configure Surface Pro 3's with bitlocker in the first configuration :)  It's pretty cool when it's working, it will prompt for bitlocker unlock when in WinRE.  Something to consider is that you do need
    a local administrator account that will give you authority over any recovery operations (does not need to be named administrator, just needs admin access).  When we deployed it, we had to create a new account specifically for it.  I tried to toy
    with enabling it on WinRE boot and disabling it after but with bitlocker you can't do much in that area.  If you have further questions otherwise let me know and I'll try to help on WinRE.

  • Satellite L500D: 64bit Win recovery disc is 32-bit - can I restore 64 bit?

    Hi all,
    I have a Satellite L500D, which has Windows 7 Home Premium, 64-bit.
    The recovery CD I have is only 32-bit, however, and I need to reinstall Windows.
    I'm assuming this disk can only install the 32-bit version, and doesn't give you the option - so after it is installed, is there still a partition on the HDD for the 64-bit version?
    If possible I would like to still use the 64-bit edition.
    Thanks!

    Please be careful with this.
    Before you want to use recovery DVD you must create 64bit recovery disc version using preinstalled Toshiba recovery disc creator.
    Many Toshiba notebooks are delivered with:
    -preinstalled Win7 64bit version (recovery disc is not in package)
    -additional 32bit version as recovery disc.
    Im not 100% sure but I think that after 32bit version you may not have access to 64bit recovery image saved on HDD. Please create 64bit recovery disc before you change anything.
    After doing this you will be sure that you can install 64bit using created discs.

  • Can I use my Recovery CD for Satellite A50 to repaire my WXP?

    Dear sir/madam
    I am a Student and I have a Toshiba A50 laptop. I have a system problem in my computer. when I was running an adware remover program the computer got stuck and when I tried to restart the computer, the computer starts and goes to the windows welcome screen(windows xp) and then the computer screen goes blank (or black).
    When I restarted my computer it goes to this option screen where it gives, safe mode, last good configuration mode, etc.. I tried to start in safe mode, and in last good configuration mode, but nothing happened , the black screen appear after the windows welcome screen.
    My friend advice me to do a windows XP repair. I have the Toshiba product Recovery CD, which I got when I purchased the laptop. My question is can I do a Windows xp repair from this CD ?
    I booted my computer from this product recovery CD. It gave me 3 optons as below
    1 Recover entire hard disk
    Warning- all store data on your computer will be lost. Factory pre installed software will be installed/
    2 Expert Recovery
    Warning- this is for pc experts only. Factory pre installed software can be installed onto an existing (bootable) partition.
    3 Exit
    I need to recover all my files from my hard disk. That's my main concern.
    So do you guys think that I can do a Windows xp repair from this product recovery CD?
    Thanks
    Robert

    Hi Robert,
    No you cannot use the recovery CD to repair your Windows installation. The Recovery CD can only be used to fully restore your operating system to its original condition when you first obtained it.
    If you want to use the Windows recovery console then you will need to obtain a genuine Microsoft installation CD.
    If your notebook has only one partition (the C: drive) then using the recovery CDs will effectively reformat your hard drive and will overwrite all your own data and files.
    regards,

  • Corrupt recovery or HDD error

    Hy
    I'm having problem with my windows recovery. A few days ago I created a recovery USB flash drive using Win recovery utility. I deleted recovery drive to increase space. My machine started freezing and crashed after that. My machine is HP ENVY 15-j037tx Notebook PC. It failed to load Windows and displays boot device not found. The HP UEFI diagnostics for hard disk failed the Short DST test with failure code U0EDBK-6Q66G1-MFGJXG-60U003. Does this mean I have to replace my hard drive? My laptop's product ID is E6G06PA#UUF and I have Win8 -64 installed on it upgarded to 8.1... Anyway I succeeded in formatting HDD but it doesn't appear in bios. I can install a cracked copy of windows 8 1 but recovery from USB is not possible. It stucks at  ' welcome administrator'.......... and machine restarts displaying on black screen ... ' Recovery was incomplete'..... with options... ''detail.... copy.... retry...''
    copied text is....
    <?xml version='1.0' encoding='utf-8'?>
    <WindowsRE version="2.0">
      <WinreBCD id="{11497545-eea6-11e2-be72-6817296b5c28}"/>
      <WinreLocation path="\Recovery\WindowsRE" id="0" offset="215477125120" guid="{db2ec309-e278-4c1a-8492-0aa5f54f0d24}"/>
      <ImageLocation path="" id="0" offset="0" guid="{00000000-0000-0000-0000-000000000000}"/>
      <PBRImageLocation path="\preload" id="0" offset="973273563136" guid="{db2ec309-e278-4c1a-8492-0aa5f54f0d24}" index="4"/>
      <PBRCustomImageLocation path="" id="0" offset="0" guid="{00000000-0000-0000-0000-000000000000}" index="0"/>
      <InstallState state="1"/>
      <OsInstallAvailable state="1"/>
      <CustomImageAvailable state="0"/>
      <IsAutoRepairOn state="1"/>
      <WinREStaged state="0"/>
      <OperationParam path=""/>
      <OsBuildVersion path="9600.16384.amd64fre.winblue_rtm.130821-1623"/>
      <OemTool state="0"/>
      <IsServer state="0"/>
      <DownlevelWinreLocation path="\Recovery\WindowsRE" id="0" offset="1048576" guid="{db2ec309-e278-4c1a-8492-0aa5f54f0d24}"/>
      <ScheduledOperation state="5"/>
    </WindowsRE>  ''
    Plz help in recovering my original windows copy.. plz ..   plz...
    Thanking in anticipation
    Dr bilal ashiq

    @lazirus ,
    Hello and thank you for posting on the HP support forums.  In this situation when you went and removed the recovery partition you messed with the drive mapping. In the old days you could have done a low level format to rebuild the blocks and sectors.  Not any more you will now have to replace the hard drive.
    When you removed the recovery drive the recovery media you made now has no where to go to get the files it needs.  
    First you will need the recovery media.
    HP PCs - Obtaining HP Recovery Discs or an HP USB Recovery Drive
    After that you will need to contact HP phone support for replacement hard drive or repair.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Database Crashing after successful restarts

    Hi Guys,
    I am sort stuck in a process where my DB is starting but after a few seconds its starts shutting down all the processes.  The system was running perfectly before but after todays restart this is all happening.
    the following is the log from the startup to shutdown. Can any one help to figure out what is causing this issue.
    This is ORACLE 11G on Enterprise LINUX._
    Mon Aug 13 13:12:28 2012
    Starting ORACLE instance (normal)
    ****************** Large Pages Information *****************
    Total Shared Global Region in Large Pages = 0 KB (0%)
    Large Pages used by this instance: 0 (0 KB)
    Large Pages unused system wide = 0 (0 KB) (alloc incr 16 MB)
    Large Pages configured system wide = 0 (0 KB)
    Large Page size = 2048 KB
    RECOMMENDATION:
    Total Shared Global Region size is 4098 MB. For optimal performance,
    prior to the next instance restart increase the number
    of unused Large Pages by atleast 2049 2048 KB Large Pages (4098 MB)
    system wide to get 100% of the Shared
    Global Region allocated with Large pages
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =28
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Release 11.2.0.3.0 - 64bit Production.
    ORACLE_HOME = /u01/app/oracle/product/11.2.0.3/db_1
    System name:     Linux
    Node name:     OM5000
    Release:     2.6.18-308.el5
    Version:     #1 SMP Fri Jan 27 17:17:51 EST 2012
    Machine:     x86_64
    Using parameter settings in client-side pfile /u01/app/oracle/admin/OML5K/pfile/init.ora on machine OM5000
    System parameters with non-default values:
    processes = 150
    nls_language = "ENGLISH"
    nls_territory = "AUSTRALIA"
    sga_target = 4G
    control_files = "/u01/app/oracle/oradata/OML5K/control01.ctl"
    control_files = "/u01/app/oracle/fast_recovery_area/OML5K/control02.ctl"
    db_block_size = 8192
    compatible = "11.2.0.0.0"
    db_recovery_file_dest = "/u01/app/oracle/fast_recovery_area"
    db_recovery_file_dest_size= 50000M
    undo_tablespace = "UNDOTBS1"
    remote_login_passwordfile= "EXCLUSIVE"
    db_domain = ""
    dispatchers = "(PROTOCOL=TCP) (SERVICE=OML5KXDB)"
    audit_file_dest = "/u01/app/oracle/admin/OML5K/adump"
    audit_trail = "DB"
    db_name = "OML5K"
    open_cursors = 300
    pga_aggregate_target = 34558M
    diagnostic_dest = "/u01/app/oracle"
    Mon Aug 13 13:12:28 2012
    PMON started with pid=2, OS id=21976
    Mon Aug 13 13:12:28 2012
    PSP0 started with pid=3, OS id=21978
    Mon Aug 13 13:12:29 2012
    VKTM started with pid=4, OS id=21980 at elevated priority
    VKTM running at (1)millisec precision with DBRM quantum (100)ms
    Mon Aug 13 13:12:29 2012
    GEN0 started with pid=5, OS id=21984
    Mon Aug 13 13:12:29 2012
    DIAG started with pid=6, OS id=21986
    Mon Aug 13 13:12:29 2012
    DBRM started with pid=7, OS id=21988
    Mon Aug 13 13:12:29 2012
    DIA0 started with pid=8, OS id=21990
    Mon Aug 13 13:12:29 2012
    MMAN started with pid=9, OS id=21992
    Mon Aug 13 13:12:29 2012
    DBW0 started with pid=10, OS id=21994
    Mon Aug 13 13:12:30 2012
    DBW1 started with pid=11, OS id=21996
    Mon Aug 13 13:12:30 2012
    DBW2 started with pid=12, OS id=21998
    Mon Aug 13 13:12:30 2012
    DBW3 started with pid=13, OS id=22000
    Mon Aug 13 13:12:30 2012
    LGWR started with pid=14, OS id=22002
    Mon Aug 13 13:12:30 2012
    CKPT started with pid=15, OS id=22004
    Mon Aug 13 13:12:30 2012
    SMON started with pid=16, OS id=22006
    Mon Aug 13 13:12:30 2012
    RECO started with pid=17, OS id=22008
    Mon Aug 13 13:12:30 2012
    MMON started with pid=18, OS id=22010
    Mon Aug 13 13:12:30 2012
    MMNL started with pid=19, OS id=22012
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    ORACLE_BASE from environment = /u01/app/oracle
    Mon Aug 13 13:12:30 2012
    kcbztek_populate_tbskey: db key in controlfile and datafile 1 is inconsistent..
    Full restore complete of datafile 4 to datafile copy /u01/app/oracle/oradata/OML5K/users01.dbf. Elapsed time: 0:00:00
    checkpoint is 995547
    last deallocation scn is 3
    Full restore complete of datafile 3 to datafile copy /u01/app/oracle/oradata/OML5K/undotbs01.dbf. Elapsed time: 0:00:00
    checkpoint is 995547
    last deallocation scn is 3
    Mon Aug 13 13:13:00 2012
    Full restore complete of datafile 2 to datafile copy /u01/app/oracle/oradata/OML5K/sysaux01.dbf. Elapsed time: 0:00:30
    checkpoint is 995547
    last deallocation scn is 995211
    Full restore complete of datafile 1 to datafile copy /u01/app/oracle/oradata/OML5K/system01.dbf. Elapsed time: 0:00:38
    checkpoint is 995547
    last deallocation scn is 993074
    Mon Aug 13 13:13:08 2012
    Create controlfile reuse set database "OML5K"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    '/u01/app/oracle/oradata/OML5K/system01.dbf',
    '/u01/app/oracle/oradata/OML5K/sysaux01.dbf',
    '/u01/app/oracle/oradata/OML5K/undotbs01.dbf',
    '/u01/app/oracle/oradata/OML5K/users01.dbf'
    LOGFILE GROUP 1 ('/u01/app/oracle/oradata/OML5K/redo01.log') SIZE 51200K,
    GROUP 2 ('/u01/app/oracle/oradata/OML5K/redo02.log') SIZE 51200K,
    GROUP 3 ('/u01/app/oracle/oradata/OML5K/redo03.log') SIZE 51200K RESETLOGS
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Mon Aug 13 13:13:08 2012
    Successful mount of redo thread 1, with mount id 3547719972
    Completed: Create controlfile reuse set database "OML5K"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    '/u01/app/oracle/oradata/OML5K/system01.dbf',
    '/u01/app/oracle/oradata/OML5K/sysaux01.dbf',
    '/u01/app/oracle/oradata/OML5K/undotbs01.dbf',
    '/u01/app/oracle/oradata/OML5K/users01.dbf'
    LOGFILE GROUP 1 ('/u01/app/oracle/oradata/OML5K/redo01.log') SIZE 51200K,
    GROUP 2 ('/u01/app/oracle/oradata/OML5K/redo02.log') SIZE 51200K,
    GROUP 3 ('/u01/app/oracle/oradata/OML5K/redo03.log') SIZE 51200K RESETLOGS
    Shutting down instance (immediate)
    Shutting down instance: further logons disabled
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 1
    All dispatchers and shared servers shutdown
    ALTER DATABASE CLOSE NORMAL
    ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL...
    ALTER DATABASE DISMOUNT
    Shutting down archive processes
    Archiving is disabled
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Mon Aug 13 13:13:11 2012
    Stopping background process VKTM
    Mon Aug 13 13:13:13 2012
    Instance shutdown complete
    Mon Aug 13 13:13:13 2012
    Starting ORACLE instance (normal)
    ****************** Large Pages Information *****************
    Total Shared Global Region in Large Pages = 0 KB (0%)
    Large Pages used by this instance: 0 (0 KB)
    Large Pages unused system wide = 0 (0 KB) (alloc incr 16 MB)
    Large Pages configured system wide = 0 (0 KB)
    Large Page size = 2048 KB
    RECOMMENDATION:
    Total Shared Global Region size is 4098 MB. For optimal performance,
    prior to the next instance restart increase the number
    of unused Large Pages by atleast 2049 2048 KB Large Pages (4098 MB)
    system wide to get 100% of the Shared
    Global Region allocated with Large pages
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =28
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Release 11.2.0.3.0 - 64bit Production.
    ORACLE_HOME = /u01/app/oracle/product/11.2.0.3/db_1
    System name:     Linux
    Node name:     OM5000
    Release:     2.6.18-308.el5
    Version:     #1 SMP Fri Jan 27 17:17:51 EST 2012
    Machine:     x86_64
    Using parameter settings in client-side pfile /u01/app/oracle/cfgtoollogs/dbca/OML5K/initOML5KTemp.ora on machine OM5000
    System parameters with non-default values:
    processes = 150
    nls_language = "ENGLISH"
    nls_territory = "AUSTRALIA"
    sga_target = 4G
    control_files = "/u01/app/oracle/oradata/OML5K/control01.ctl"
    control_files = "/u01/app/oracle/fast_recovery_area/OML5K/control02.ctl"
    db_block_size = 8192
    compatible = "11.2.0.0.0"
    db_recovery_file_dest = "/u01/app/oracle/fast_recovery_area"
    db_recovery_file_dest_size= 50000M
    norecovery_through_resetlogs= TRUE
    undo_tablespace = "UNDOTBS1"
    remote_login_passwordfile= "EXCLUSIVE"
    db_domain = ""
    dispatchers = "(PROTOCOL=TCP) (SERVICE=OML5KXDB)"
    audit_file_dest = "/u01/app/oracle/admin/OML5K/adump"
    audit_trail = "DB"
    db_name = "OML5K"
    open_cursors = 300
    pga_aggregate_target = 34558M
    diagnostic_dest = "/u01/app/oracle"
    Mon Aug 13 13:13:14 2012
    PMON started with pid=2, OS id=22030
    Mon Aug 13 13:13:14 2012
    PSP0 started with pid=3, OS id=22032
    Mon Aug 13 13:13:15 2012
    VKTM started with pid=4, OS id=22034 at elevated priority
    VKTM running at (1)millisec precision with DBRM quantum (100)ms
    Mon Aug 13 13:13:15 2012
    GEN0 started with pid=5, OS id=22038
    Mon Aug 13 13:13:15 2012
    DIAG started with pid=6, OS id=22040
    Mon Aug 13 13:13:15 2012
    DBRM started with pid=7, OS id=22042
    Mon Aug 13 13:13:15 2012
    DIA0 started with pid=8, OS id=22044
    Mon Aug 13 13:13:15 2012
    MMAN started with pid=9, OS id=22046
    Mon Aug 13 13:13:15 2012
    DBW0 started with pid=10, OS id=22048
    Mon Aug 13 13:13:15 2012
    DBW1 started with pid=11, OS id=22050
    Mon Aug 13 13:13:15 2012
    DBW2 started with pid=12, OS id=22052
    Mon Aug 13 13:13:15 2012
    DBW3 started with pid=13, OS id=22054
    Mon Aug 13 13:13:15 2012
    LGWR started with pid=14, OS id=22056
    Mon Aug 13 13:13:15 2012
    CKPT started with pid=15, OS id=22058
    Mon Aug 13 13:13:15 2012
    SMON started with pid=16, OS id=22060
    Mon Aug 13 13:13:15 2012
    RECO started with pid=17, OS id=22062
    Mon Aug 13 13:13:15 2012
    MMON started with pid=18, OS id=22064
    Mon Aug 13 13:13:15 2012
    MMNL started with pid=19, OS id=22066
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    ORACLE_BASE from environment = /u01/app/oracle
    Mon Aug 13 13:13:15 2012
    Create controlfile reuse set database "OML5K"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    '/u01/app/oracle/oradata/OML5K/system01.dbf',
    '/u01/app/oracle/oradata/OML5K/sysaux01.dbf',
    '/u01/app/oracle/oradata/OML5K/undotbs01.dbf',
    '/u01/app/oracle/oradata/OML5K/users01.dbf'
    LOGFILE GROUP 1 ('/u01/app/oracle/oradata/OML5K/redo01.log') SIZE 51200K,
    GROUP 2 ('/u01/app/oracle/oradata/OML5K/redo02.log') SIZE 51200K,
    GROUP 3 ('/u01/app/oracle/oradata/OML5K/redo03.log') SIZE 51200K RESETLOGS
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Successful mount of redo thread 1, with mount id 3547724076
    Completed: Create controlfile reuse set database "OML5K"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    '/u01/app/oracle/oradata/OML5K/system01.dbf',
    '/u01/app/oracle/oradata/OML5K/sysaux01.dbf',
    '/u01/app/oracle/oradata/OML5K/undotbs01.dbf',
    '/u01/app/oracle/oradata/OML5K/users01.dbf'
    LOGFILE GROUP 1 ('/u01/app/oracle/oradata/OML5K/redo01.log') SIZE 51200K,
    GROUP 2 ('/u01/app/oracle/oradata/OML5K/redo02.log') SIZE 51200K,
    GROUP 3 ('/u01/app/oracle/oradata/OML5K/redo03.log') SIZE 51200K RESETLOGS
    Stopping background process MMNL
    Stopping background process MMON
    Starting background process MMON
    Starting background process MMNL
    Mon Aug 13 13:13:18 2012
    MMON started with pid=18, OS id=22077
    Mon Aug 13 13:13:18 2012
    MMNL started with pid=19, OS id=22079
    ALTER SYSTEM enable restricted session;
    alter database "OML5K" open resetlogs
    RESETLOGS after incomplete recovery UNTIL CHANGE 995547
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u01/app/oracle/oradata/OML5K/redo01.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Clearing online redo logfile 1 /u01/app/oracle/oradata/OML5K/redo01.log
    Clearing online log 1 of thread 1 sequence number 0
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u01/app/oracle/oradata/OML5K/redo01.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u01/app/oracle/oradata/OML5K/redo01.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Mon Aug 13 13:13:18 2012
    Checker run found 1 new persistent data failures
    Clearing online redo logfile 1 complete
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/oradata/OML5K/redo02.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Clearing online redo logfile 2 /u01/app/oracle/oradata/OML5K/redo02.log
    Clearing online log 2 of thread 1 sequence number 0
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/oradata/OML5K/redo02.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/oradata/OML5K/redo02.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Clearing online redo logfile 2 complete
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/oradata/OML5K/redo03.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Clearing online redo logfile 3 /u01/app/oracle/oradata/OML5K/redo03.log
    Clearing online log 3 of thread 1 sequence number 0
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/oradata/OML5K/redo03.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Errors in file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22071.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/oradata/OML5K/redo03.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Clearing online redo logfile 3 complete
    Online log /u01/app/oracle/oradata/OML5K/redo01.log: Thread 1 Group 1 was previously cleared
    Online log /u01/app/oracle/oradata/OML5K/redo02.log: Thread 1 Group 2 was previously cleared
    Online log /u01/app/oracle/oradata/OML5K/redo03.log: Thread 1 Group 3 was previously cleared
    Setting recovery target incarnation to 2
    Assigning activation ID 3547724076 (0xd375f92c)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: /u01/app/oracle/oradata/OML5K/redo01.log
    Successful open of redo thread 1
    SMON: enabling cache recovery
    [22071] Successfully onlined Undo Tablespace 2.
    Undo initialization finished serial:0 start:256557774 end:256557834 diff:60 (0 seconds)
    Dictionary check beginning
    Tablespace 'TEMP' #3 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Dictionary check complete
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    WARNING: The following temporary tablespaces contain no files.
    This condition can occur when a backup controlfile has
    been restored. It may be necessary to add files to these
    tablespaces. That can be done using the SQL statement:
    ALTER TABLESPACE <tablespace_name> ADD TEMPFILE
    Alternatively, if these temporary tablespaces are no longer
    needed, then they can be dropped.
    Empty temporary tablespace: TEMP
    Database Characterset is US7ASCII
    Create Relation IPS_PACKAGE_UNPACK_HISTORY
    No Resource Manager plan active
    WARNING: Files may exists in db_recovery_file_dest
    that are not known to the database. Use the RMAN command
    CATALOG RECOVERY AREA to re-catalog any such files.
    If files cannot be cataloged, then manually delete them
    using OS command.
    One of the following events caused this:
    1. A backup controlfile was restored.
    2. A standby controlfile was restored.
    3. The controlfile was re-created.
    4. db_recovery_file_dest had previously been enabled and
    then disabled.
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Mon Aug 13 13:13:20 2012
    QMNC started with pid=24, OS id=22087
    LOGSTDBY: Validating controlfile with logical metadata
    LOGSTDBY: Validation complete
    Global Name changed to OML5K
    Completed: alter database "OML5K" open resetlogs
    alter database rename global_name to "OML5K"
    Completed: alter database rename global_name to "OML5K"
    ALTER TABLESPACE TEMP ADD TEMPFILE '/u01/app/oracle/oradata/OML5K/temp01.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    Completed: ALTER TABLESPACE TEMP ADD TEMPFILE '/u01/app/oracle/oradata/OML5K/temp01.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    ALTER DATABASE DEFAULT TABLESPACE "USERS"
    Completed: ALTER DATABASE DEFAULT TABLESPACE "USERS"
    alter database character set INTERNAL_CONVERT ZHS16GBK
    Starting background process CJQ0
    Mon Aug 13 13:13:22 2012
    CJQ0 started with pid=23, OS id=22089
    Mon Aug 13 13:13:23 2012
    db_recovery_file_dest_size of 50000 MB is 0.00% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Mon Aug 13 13:13:27 2012
    Thread 1 advanced to log sequence 2 (LGWR switch)
    Current log# 2 seq# 2 mem# 0: /u01/app/oracle/oradata/OML5K/redo02.log
    Mon Aug 13 13:13:30 2012
    Updating character set in controlfile to ZHS16GBK
    Synchronizing connection with database character set information
    SYS.RULE$ (CONDITION) - CLOB representation altered
    SYS.SCHEDULER$_EVENT_LOG (ADDITIONAL_INFO) - CLOB representation altered
    SYS.SNAP$ (REL_QUERY) - CLOB representation altered
    SYS.SNAP$ (ALIAS_TXT) - CLOB representation altered
    SYS.WRI$_ADV_OBJECTS (ATTR4) - CLOB representation altered
    SYS.WRI$_ADV_OBJECTS (OTHER) - CLOB representation altered
    SYS.WRI$_ADV_DIRECTIVE_META (DATA) - CLOB representation altered
    SYS.WRI$_DBU_FEATURE_METADATA (INST_CHK_LOGIC) - CLOB representation altered
    SYS.WRI$_DBU_FEATURE_METADATA (USG_DET_LOGIC) - CLOB representation altered
    SYS.WRI$_DBU_HWM_METADATA (LOGIC) - CLOB representation altered
    SYS.WRI$_OPTSTAT_HISTHEAD_HISTORY (EXPRESSION) - CLOB representation altered
    Mon Aug 13 13:13:30 2012
    Starting background process SMCO
    Mon Aug 13 13:13:30 2012
    SMCO started with pid=27, OS id=22098
    SYS.WRI$_REPT_FILES (SYS_NC00005$) - CLOB representation altered
    SYS.SUM$ (SRC_STMT) - CLOB representation altered
    SYS.SUM$ (DEST_STMT) - CLOB representation altered
    SYS.ATTRIBUTE_TRANSFORMATIONS$ (XSL_TRANSFORMATION) - CLOB representation altered
    SYS.METASTYLESHEET (STYLESHEET) - CLOB representation altered
    XDB.XDB$RESOURCE (SYS_NC00027$) - CLOB representation altered
    XDB.XDB$XDB_READY (DATA) - CLOB representation altered
    XDB.XDB$DXPTAB (SYS_NC00006$) - CLOB representation altered
    MDSYS.SDO_XML_SCHEMAS (XMLSCHEMA) - CLOB representation altered
    Thread 1 advanced to log sequence 3 (LGWR switch)
    Current log# 3 seq# 3 mem# 0: /u01/app/oracle/oradata/OML5K/redo03.log
    Mon Aug 13 13:13:43 2012
    MDSYS.SDO_COORD_OP_PARAM_VALS (PARAM_VALUE_FILE) - CLOB representation altered
    MDSYS.SDO_GEOR_XMLSCHEMA_TABLE (XMLSCHEMA) - CLOB representation altered
    MDSYS.SDO_STYLES_TABLE (DEFINITION) - CLOB representation altered
    SYSMAN.MGMT_IP_ELEM_DEFAULT_PARAMS (VALUE) - CLOB representation altered
    SYSMAN.MGMT_IP_REPORT_ELEM_PARAMS (VALUE) - CLOB representation altered
    SYSMAN.MGMT_IP_SQL_STATEMENTS (SQL_STATEMENT) - CLOB representation altered
    SYSMAN.MGMT_JOB_LARGE_PARAMS (PARAM_VALUE) - CLOB representation altered
    SYSMAN.MGMT_SEC_INFO (B64_LOCAL_CA) - CLOB representation altered
    SYSMAN.MGMT_SEC_INFO (B64_INTERNET_CA) - CLOB representation altered
    APEX_030200.WWV_FLOW_FLASH_CHARTS (CHART_XML) - CLOB representation altered
    APEX_030200.WWV_FLOW_FLASH_CHART_SERIES (SERIES_QUERY) - CLOB representation altered
    APEX_030200.WWV_FLOW_SHORTCUTS (SHORTCUT) - CLOB representation altered
    APEX_030200.WWV_FLOW_STEPS (HELP_TEXT) - CLOB representation altered
    APEX_030200.WWV_FLOW_STEPS (HTML_PAGE_HEADER) - CLOB representation altered
    APEX_030200.WWV_FLOW_STEP_PROCESSING (PROCESS_SQL_CLOB) - CLOB representation altered
    APEX_030200.WWV_FLOW_PAGE_GENERIC_ATTR (ATTRIBUTE_VALUE) - CLOB representation altered
    APEX_030200.WWV_FLOW_TEMPLATES (HEADER_TEMPLATE) - CLOB representation altered
    APEX_030200.WWV_FLOW_TEMPLATES (FOOTER_TEMPLATE) - CLOB representation altered
    APEX_030200.WWV_FLOW_TEMPLATES (BOX) - CLOB representation altered
    Mon Aug 13 13:13:54 2012
    Thread 1 cannot allocate new log, sequence 4
    Checkpoint not complete
    Current log# 3 seq# 3 mem# 0: /u01/app/oracle/oradata/OML5K/redo03.log
    Mon Aug 13 13:13:57 2012
    APEX_030200.WWV_FLOW_PAGE_PLUGS (PLUG_SOURCE) - CLOB representation altered
    Thread 1 advanced to log sequence 4 (LGWR switch)
    Current log# 1 seq# 4 mem# 0: /u01/app/oracle/oradata/OML5K/redo01.log
    APEX_030200.WWV_FLOW_PAGE_PLUGS (CUSTOM_ITEM_LAYOUT) - CLOB representation altered
    APEX_030200.WWV_FLOW_PAGE_PLUG_TEMPLATES (TEMPLATE) - CLOB representation altered
    APEX_030200.WWV_FLOW_PAGE_PLUG_TEMPLATES (TEMPLATE2) - CLOB representation altered
    APEX_030200.WWV_FLOW_PAGE_PLUG_TEMPLATES (TEMPLATE3) - CLOB representation altered
    APEX_030200.WWV_FLOW_PROCESSING (PROCESS_SQL_CLOB) - CLOB representation altered
    APEX_030200.WWV_FLOW_REGION_REPORT_COLUMN (PK_COL_SOURCE) - CLOB representation altered
    APEX_030200.WWV_FLOW_ROW_TEMPLATES (ROW_TEMPLATE1) - CLOB representation altered
    APEX_030200.WWV_FLOW_ROW_TEMPLATES (ROW_TEMPLATE2) - CLOB representation altered
    APEX_030200.WWV_FLOW_ROW_TEMPLATES (ROW_TEMPLATE3) - CLOB representation altered
    APEX_030200.WWV_FLOW_ROW_TEMPLATES (ROW_TEMPLATE4) - CLOB representation altered
    APEX_030200.WWV_FLOW_BANNER (BANNER) - CLOB representation altered
    APEX_030200.WWV_FLOW_BUTTON_TEMPLATES (TEMPLATE) - CLOB representation altered
    APEX_030200.WWV_FLOW_INSTALL (DEINSTALL_SCRIPT) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (LIST_TEMPLATE_CURRENT) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (LIST_TEMPLATE_NONCURRENT) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (SUB_LIST_ITEM_CURRENT) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (SUB_LIST_ITEM_NONCURRENT) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (ITEM_TEMPLATE_CURR_W_CHILD) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (ITEM_TEMPLATE_NONCURR_W_CHILD) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (SUB_TEMPLATE_CURR_W_CHILD) - CLOB representation altered
    APEX_030200.WWV_FLOW_LIST_TEMPLATES (SUB_TEMPLATE_NONCURR_W_CHILD) - CLOB representation altered
    APEX_030200.WWV_FLOW_WORKSHEETS (SQL_QUERY) - CLOB representation altered
    Mon Aug 13 13:14:08 2012
    APEX_030200.WWV_FLOW_CUSTOM_AUTH_SETUPS (PAGE_SENTRY_FUNCTION) - CLOB representation altered
    APEX_030200.WWV_FLOW_CUSTOM_AUTH_SETUPS (SESS_VERIFY_FUNCTION) - CLOB representation altered
    APEX_030200.WWV_FLOW_CUSTOM_AUTH_SETUPS (PRE_AUTH_PROCESS) - CLOB representation altered
    APEX_030200.WWV_FLOW_CUSTOM_AUTH_SETUPS (AUTH_FUNCTION) - CLOB representation altered
    APEX_030200.WWV_FLOW_CUSTOM_AUTH_SETUPS (POST_AUTH_PROCESS) - CLOB representation altered
    Refreshing type attributes with new character set information
    Completed: alter database character set INTERNAL_CONVERT ZHS16GBK
    Mon Aug 13 13:14:11 2012
    ALTER SYSTEM disable restricted session;
    Mon Aug 13 13:14:12 2012
    Thread 1 advanced to log sequence 5 (LGWR switch)
    Current log# 2 seq# 5 mem# 0: /u01/app/oracle/oradata/OML5K/redo02.log
    Mon Aug 13 13:14:28 2012
    Shutting down instance (immediate)
    Stopping background process SMCO
    Shutting down instance: further logons disabled
    Stopping background process QMNC
    Mon Aug 13 13:14:29 2012
    Stopping background process CJQ0
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 14
    Stopping Job queue slave processes, flags = 7
    Job queue slave processes stopped
    All dispatchers and shared servers shutdown
    ALTER DATABASE CLOSE NORMAL
    Mon Aug 13 13:14:33 2012
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Mon Aug 13 13:14:33 2012
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 5
    Successful close of redo thread 1
    Completed: ALTER DATABASE CLOSE NORMAL
    ALTER DATABASE DISMOUNT
    Shutting down archive processes
    Archiving is disabled
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Mon Aug 13 13:14:34 2012
    Stopping background process VKTM
    System State dumped to trace file /u01/app/oracle/diag/rdbms/oml5k/OML5K/trace/OML5K_ora_22163.trc
    Mon Aug 13 13:14:36 2012
    Instance shutdown complete
    Mon Aug 13 13:14:37 2012
    Starting ORACLE instance (normal)

    All the mesages are dated "Aug 13" which is quite a few months ago ! I see no recent messages.
    You have two CREATE CONTROLFILE calls and one alter database character set INTERNAL_CONVERT ZHS16GBK call.
    Were these part of a Database Creation using DBCA (The Database Creation Assistant) ?
    Hemant K Chitale

  • Perl adcfgclone.pl dbTier fails RC-50014: Fatal: Execution of AutoConfig

    in past we have been successfully doing Rapid clonning of R12.
    but now i am doing Rapid clonning and i am facing the error :
    15% completed RC-50004: Fatal: Error occurred in ApplyDatabase:
    RC-50014: Fatal: Execution of AutoConfig was failed
    ERROR while running Apply...
    Mon Dec 19 08:37:26 2011
    ERROR: Failed to execute /opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/adclone.pl
    Please check logfile.
    i run preclone script on PRODUCTION Server and took a cold backup and copied that backup to TEST server.
    Log file errors :
    ADX Database Utility
    getConnection() -->
    sDbHost : testing
    sDbDomain : fgho.com
    sDbPort : 1521
    sDbSid : PROD
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@testing.fgho.com:1521:PROD
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testing.fgho.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=PROD)))
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testing.fgho.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=PROD.fgho.com)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : testing
    sDbDomain : fgho.com
    sDbPort : 1521
    sDbSid : PROD
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@testing.fgho.com:1521:PROD
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testing.fgho.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=PROD)))
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testing.fgho.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=PROD.fgho.com)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    adcrdb.sh started at Wed Dec 21 09:54:44 PKT 2011
    The environment settings are as follows ...
    ORACLE_HOME : /opt/oracle/db/tech_st/11.1.0
    ORACLE_SID : PROD
    TWO_TASK :
    PATH : /opt/oracle/db/tech_st/11.1.0/perl/bin:/opt/oracle/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/opt/oracle/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:.
    LD_LIBRARY_PATH : /opt/oracle/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/opt/oracle/db/tech_st/11.1.0/lib:/usr/dt/lib:/opt/oracle/db/tech_st/11.1.0/ctx/lib
    Executable : /opt/oracle/db/tech_st/11.1.0/bin/sqlplus
    The log information will be written to
         /opt/oracle/db/tech_st/11.1.0/appsutil/log/PROD_testing/adcrdb_PROD.txt
    Creating the control file for PROD_testing database ...
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Dec 21 09:54:44 2011
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to an idle instance.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 1068937216 bytes
    Fixed Size          2166536 bytes
    Variable Size          427819256 bytes
    Database Buffers     624951296 bytes
    Redo Buffers          14000128 bytes
    Control file created.
    Database altered.
    Tablespace altered.
    Tablespace altered.
    Tablespace altered.
    Tablespace altered.
    Database altered.
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 1068937216 bytes
    Fixed Size          2166536 bytes
    Variable Size          427819256 bytes
    Database Buffers     624951296 bytes
    Redo Buffers          14000128 bytes
    Database mounted.
    PL/SQL procedure successfully completed.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 1068937216 bytes
    Fixed Size          2166536 bytes
    Variable Size          427819256 bytes
    Database Buffers     624951296 bytes
    Redo Buffers          14000128 bytes
    Control file created.
    Database altered.
    Tablespace altered.
    Tablespace altered.
    Tablespace altered.
    Tablespace altered.
    Database altered.
    PL/SQL procedure successfully completed.
    File created.
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    exit_code=0
    Checking for errors ...
    .end std out.
    .end err out.
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : testing
    sDbDomain : fgho.com
    sDbPort : 1521
    sDbSid : PROD
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@testing.fgho.com:1521:PROD
    Connection obtained
    -------------------ADX Database Utility Finished---------------
    Starting Database profiles update: running addbprf.sh
    addbprf.sh started at Wed Dec 21 09:57:02 PKT 2011
    The environment settings are as follows ...
    ORACLE_HOME : /opt/oracle/db/tech_st/11.1.0
    ORACLE_SID : PROD
    TWO_TASK :
    PATH : /opt/oracle/db/tech_st/11.1.0/perl/bin:/opt/oracle/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/opt/oracle/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:.
    LD_LIBRARY_PATH : /opt/oracle/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/opt/oracle/db/tech_st/11.1.0/lib:/usr/dt/lib:/opt/oracle/db/tech_st/11.1.0/ctx/lib
    Executable : /opt/oracle/db/tech_st/11.1.0/bin/sqlplus
    Enter the APPS username:
    Enter the APPS password:
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Dec 21 09:57:03 2011
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Enter value for 1: Enter value for 2: Enter value for 3: Connected.
    PL/SQL procedure successfully completed.
    Commit complete.
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Dec 21 09:57:07 2011
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Enter value for 1: Enter value for 2: Enter value for 3: Connected.
    PL/SQL procedure successfully completed.
    Commit complete.
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    addbprf.sh exiting with status 0
    .end std out.
    stty: standard input: Invalid argument
    stty: standard input: Invalid argument
    .end err out.
    Cleaning up the Data Model
    ===============================================================================
    NetServiceHandler 120.19 started for testing at Wed Dec 21 09:57:08 PKT 2011
    ===============================================================================
    [ Context Information ]
    Host : testing
    Domain : fgho.com
    Out Dir : null
    Tier Type : DATABASE TIER
    Getting connection...
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : testing
    sDbDomain : fgho.com
    sDbPort : 1521
    sDbSid : PROD
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@testing.fgho.com:1521:PROD
    Connection obtained
    -------------------ADX Database Utility Finished---------------
    Connection obtained
    Removing System PROD
    System succesfully removed
    Data Model cleaned
    Closing connection
    Connection Closed
    Updating FND_SQLNET_ACCESS
    You are running txkcreateACL.sh version 120.1
    The environment settings are as follows ...
    ORACLE_HOME : /opt/oracle/db/tech_st/11.1.0
    ORACLE_SID : PROD
    PATH : /opt/oracle/db/tech_st/11.1.0/perl/bin:/opt/oracle/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/opt/oracle/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/opt/oracle/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/usr/lib64/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:.
    Executable : /opt/oracle/db/tech_st/11.1.0/bin/sqlplus
    Executing txkcreateACL.sql ...
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Dec 21 09:57:46 2011
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected.
    ERROR:
    ORA-03114: not connected to ORACLE
    ERROR:
    ORA-03114: not connected to ORACLE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    txkcreateACL.sh: exiting with status 1
    .end std out.
    .end err out.
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /opt/oracle/db/tech_st/11.1.0/appsutil/install/PROD_testing
    txkcreateACL.sh INSTE8_APPLY 1
    AutoConfig is exiting with status 1
    RC-50014: Fatal: Execution of AutoConfig was failed
    Raised by oracle.apps.ad.clone.ApplyDatabase

    alert log contents :
    Wed Dec 21 09:54:47 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /opt/oracle/db/tech_st/11.1.0/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =44
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 11.1.0.7.0.
    Using parameter settings in client-side pfile /opt/oracle/db/tech_st/11.1.0/dbs/initPROD.ora on machine testing.fgho.com
    System parameters with non-default values:
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    shared_pool_size = 400M
    shared_pool_reserved_size= 40M
    nls_language = "american"
    nls_territory = "america"
    nls_sort = "binary"
    nls_date_format = "DD-MON-RR"
    nls_numeric_characters = ".,"
    nls_comp = "binary"
    nls_length_semantics = "BYTE"
    sga_target = 1G
    control_files = "/opt/oracle/db/apps_st/data/cntrl01.dbf"
    control_files = "/opt/oracle/db/apps_st/data/cntrl02.dbf"
    control_files = "/opt/oracle/db/apps_st/data/cntrl03.dbf"
    db_block_checksum = "TRUE"
    db_block_size = 8192
    compatible = "11.1.0"
    log_buffer = 10485760
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = "AUTO"
    undo_tablespace = "APPS_UNDOTS1"
    db_block_checking = "FALSE"
    sec_case_sensitive_logon = FALSE
    session_cached_cursors = 500
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/opt/oracle/db/tech_st/11.1.0/appsutil/outbound/PROD_testing"
    utl_file_dir = "/usr/tmp"
    plsql_native_library_dir = "/opt/oracle/db/tech_st/11.1.0/plsql/nativelib"
    plsql_native_library_subdir_count= 149
    plsql_code_type = "INTERPRETED"
    plsql_optimize_level = 2
    job_queue_processes = 2
    systemtrig_enabled = TRUE
    cursor_sharing = "EXACT"
    parallel_min_servers = 0
    parallel_max_servers = 8
    db_name = "PROD"
    open_cursors = 600
    ifile = "/opt/oracle/db/tech_st/11.1.0/dbs/PROD_testing_ifile.ora"
    sortelimination_cost_ratio= 5
    btree_bitmap_plans = FALSE
    fastfull_scan_enabled = FALSE
    query_rewrite_enabled = "true"
    indexjoin_enabled = FALSE
    sqlexecprogression_cost= 2147483647
    likewith_bind_as_equality= TRUE
    pga_aggregate_target = 1G
    workarea_size_policy = "AUTO"
    optimizerautostats_job = FALSE
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4M
    diagnostic_dest = "/opt/oracle/db/tech_st/11.1.0/admin/PROD_testing"
    tracefiles_public = TRUE
    max_dump_file_size = "20480"
    Wed Dec 21 09:54:48 2011
    PMON started with pid=2, OS id=13123
    Wed Dec 21 09:54:48 2011
    VKTM started with pid=3, OS id=13125
    VKTM running at (100ms) precision
    Wed Dec 21 09:54:48 2011
    DIAG started with pid=4, OS id=13129
    Wed Dec 21 09:54:48 2011
    DBRM started with pid=5, OS id=13131
    Wed Dec 21 09:54:48 2011
    PSP0 started with pid=6, OS id=13133
    Wed Dec 21 09:54:48 2011
    DIA0 started with pid=7, OS id=13135
    Wed Dec 21 09:54:48 2011
    MMAN started with pid=8, OS id=13137
    Wed Dec 21 09:54:48 2011
    DBW0 started with pid=9, OS id=13139
    Wed Dec 21 09:54:48 2011
    DBW1 started with pid=10, OS id=13141
    Wed Dec 21 09:54:48 2011
    LGWR started with pid=11, OS id=13143
    Wed Dec 21 09:54:48 2011
    CKPT started with pid=12, OS id=13145
    Wed Dec 21 09:54:48 2011
    SMON started with pid=13, OS id=13147
    Wed Dec 21 09:54:48 2011
    RECO started with pid=14, OS id=13149
    Wed Dec 21 09:54:48 2011
    MMON started with pid=15, OS id=13151
    Wed Dec 21 09:54:48 2011
    MMNL started with pid=16, OS id=13153
    ORACLE_BASE not set in environment. It is recommended
    that ORACLE_BASE be set in the environment
    Wed Dec 21 09:54:48 2011
    CREATE CONTROLFILE REUSE SET DATABASE "PROD"
    LOGFILE
    GROUP 1 ('/opt/oracle/db/apps_st/data/log01a.dbf', '/opt/oracle/db/apps_st/data/log01b.dbf') SIZE 1048576000,
    GROUP 2 ('/opt/oracle/db/apps_st/data/log02a.dbf', '/opt/oracle/db/apps_st/data/log02b.dbf') SIZE 1048576000
    DATAFILE
    '/opt/oracle/db/apps_st/data/system12.dbf', ( to reduce charachters here i removed data file names and path )
    RESETLOGS MAXDATAFILES 512
    MAXINSTANCES 8
    MAXLOGFILES 32
    MAXLOGHISTORY 14607
    MAXLOGMEMBERS 5
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Setting recovery target incarnation to 1
    Successful mount of redo thread 1, with mount id 182332776
    Completed: CREATE CONTROLFILE REUSE SET DATABASE "PROD"
    LOGFILE
    GROUP 1 ('/opt/oracle/db/apps_st/data/log01a.dbf', '/opt/oracle/db/apps_st/data/log01b.dbf') SIZE 1048576000,
    GROUP 2 ('/opt/oracle/db/apps_st/data/log02a.dbf', '/opt/oracle/db/apps_st/data/log02b.dbf') SIZE 1048576000
    DATAFILE
    '/opt/oracle/db/apps_st/data/system12.dbf',
    '/opt/oracle/db/apps_st/data/a_ref02.dbf'
    RESETLOGS MAXDATAFILES 512
    MAXINSTANCES 8
    MAXLOGFILES 32
    MAXLOGHISTORY 14607
    MAXLOGMEMBERS 5
    alter database open resetlogs
    RESETLOGS after incomplete recovery UNTIL CHANGE 5966705058903
    Wed Dec 21 09:55:37 2011
    Setting recovery target incarnation to 2
    Wed Dec 21 09:55:37 2011
    Assigning activation ID 182332776 (0xade2d68)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: /opt/oracle/db/apps_st/data/log01a.dbf
    Current log# 1 seq# 1 mem# 1: /opt/oracle/db/apps_st/data/log01b.dbf
    Successful open of redo thread 1
    Wed Dec 21 09:55:37 2011
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Wed Dec 21 09:55:37 2011
    SMON: enabling cache recovery
    Incremental checkpoint up to RBA [0x1.3.0], current log tail at RBA [0x1.3.0]
    Successfully onlined Undo Tablespace 368.
    Dictionary check beginning
    Tablespace 'TEMP1' #284 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Tablespace 'TEMP2' #394 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Dictionary check complete
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    WARNING: The following temporary tablespaces contain no files.
    This condition can occur when a backup controlfile has
    been restored. It may be necessary to add files to these
    tablespaces. That can be done using the SQL statement:
    ALTER TABLESPACE <tablespace_name> ADD TEMPFILE
    Alternatively, if these temporary tablespaces are no longer
    needed, then they can be dropped.
    Empty temporary tablespace: TEMP1
    Empty temporary tablespace: TEMP2
    Database Characterset is US7ASCII
    Opening with internal Resource Manager plan
    Starting background process FBDA
    Wed Dec 21 09:55:43 2011
    FBDA started with pid=18, OS id=13206
    replication_dependency_tracking turned off (no async multimaster replication found)
    Wed Dec 21 09:55:49 2011
    Starting background process QMNC
    Wed Dec 21 09:55:49 2011
    QMNC started with pid=19, OS id=13215
    LOGSTDBY: Validating controlfile with logical metadata
    LOGSTDBY: Validation complete
    Wed Dec 21 09:55:59 2011
    Global Name changed to PROD
    Completed: alter database open resetlogs
    alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01.dbf' REUSE
    Completed: alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01.dbf' REUSE
    alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02.dbf' REUSE
    Completed: alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02.dbf' REUSE
    alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01A.dbf' REUSE
    Completed: alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01A.dbf' REUSE
    alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02A.dbf' REUSE
    Completed: alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02A.dbf' REUSE
    ALTER DATABASE RENAME GLOBAL_NAME TO "PROD.fgho.com"
    Completed: ALTER DATABASE RENAME GLOBAL_NAME TO "PROD.fgho.com"
    Stopping background process FBDA
    Shutting down instance: further logons disabled
    Stopping background process QMNC
    Stopping background process MMNL
    Wed Dec 21 09:56:10 2011
    Stopping background process MMON
    Wed Dec 21 09:56:22 2011
    Shutting down instance (immediate)
    License high water mark = 1
    ALTER DATABASE CLOSE NORMAL
    Wed Dec 21 09:56:23 2011
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Wed Dec 21 09:56:23 2011
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 1
    Successful close of redo thread 1
    Completed: ALTER DATABASE CLOSE NORMAL
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Wed Dec 21 09:56:24 2011
    Stopping background process VKTM:
    Wed Dec 21 09:56:26 2011
    Instance shutdown complete
    Wed Dec 21 09:56:27 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /opt/oracle/db/tech_st/11.1.0/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =44
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 11.1.0.7.0.
    Using parameter settings in client-side pfile /opt/oracle/db/tech_st/11.1.0/dbs/initPROD.ora on machine testing.fgho.com
    System parameters with non-default values:
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    shared_pool_size = 400M
    shared_pool_reserved_size= 40M
    nls_language = "american"
    nls_territory = "america"
    nls_sort = "binary"
    nls_date_format = "DD-MON-RR"
    nls_numeric_characters = ".,"
    nls_comp = "binary"
    nls_length_semantics = "BYTE"
    sga_target = 1G
    control_files = "/opt/oracle/db/apps_st/data/cntrl01.dbf"
    control_files = "/opt/oracle/db/apps_st/data/cntrl02.dbf"
    control_files = "/opt/oracle/db/apps_st/data/cntrl03.dbf"
    db_block_checksum = "TRUE"
    db_block_size = 8192
    compatible = "11.1.0"
    log_buffer = 10485760
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = "AUTO"
    undo_tablespace = "APPS_UNDOTS1"
    db_block_checking = "FALSE"
    sec_case_sensitive_logon = FALSE
    session_cached_cursors = 500
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/opt/oracle/db/tech_st/11.1.0/appsutil/outbound/PROD_testing"
    utl_file_dir = "/usr/tmp"
    plsql_native_library_dir = "/opt/oracle/db/tech_st/11.1.0/plsql/nativelib"
    plsql_native_library_subdir_count= 149
    plsql_code_type = "INTERPRETED"
    plsql_optimize_level = 2
    job_queue_processes = 2
    systemtrig_enabled = TRUE
    cursor_sharing = "EXACT"
    parallel_min_servers = 0
    parallel_max_servers = 8
    db_name = "PROD"
    open_cursors = 600
    ifile = "/opt/oracle/db/tech_st/11.1.0/dbs/PROD_testing_ifile.ora"
    sortelimination_cost_ratio= 5
    btree_bitmap_plans = FALSE
    fastfull_scan_enabled = FALSE
    query_rewrite_enabled = "true"
    indexjoin_enabled = FALSE
    sqlexecprogression_cost= 2147483647
    likewith_bind_as_equality= TRUE
    pga_aggregate_target = 1G
    workarea_size_policy = "AUTO"
    optimizerautostats_job = FALSE
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4M
    diagnostic_dest = "/opt/oracle/db/tech_st/11.1.0/admin/PROD_testing"
    tracefiles_public = TRUE
    max_dump_file_size = "20480"
    Wed Dec 21 09:56:27 2011
    PMON started with pid=2, OS id=13257
    Wed Dec 21 09:56:27 2011
    VKTM started with pid=3, OS id=13259
    VKTM running at (100ms) precision
    Wed Dec 21 09:56:27 2011
    DIAG started with pid=4, OS id=13263
    Wed Dec 21 09:56:27 2011
    DBRM started with pid=5, OS id=13265
    Wed Dec 21 09:56:27 2011
    PSP0 started with pid=6, OS id=13267
    Wed Dec 21 09:56:27 2011
    DIA0 started with pid=7, OS id=13269
    Wed Dec 21 09:56:27 2011
    MMAN started with pid=8, OS id=13271
    Wed Dec 21 09:56:27 2011
    DBW0 started with pid=9, OS id=13273
    Wed Dec 21 09:56:27 2011
    DBW1 started with pid=10, OS id=13275
    Wed Dec 21 09:56:27 2011
    LGWR started with pid=11, OS id=13277
    Wed Dec 21 09:56:27 2011
    CKPT started with pid=12, OS id=13279
    Wed Dec 21 09:56:27 2011
    SMON started with pid=13, OS id=13281
    Wed Dec 21 09:56:27 2011
    RECO started with pid=14, OS id=13283
    Wed Dec 21 09:56:27 2011
    MMON started with pid=15, OS id=13285
    Wed Dec 21 09:56:27 2011
    MMNL started with pid=16, OS id=13287
    ORACLE_BASE not set in environment. It is recommended
    that ORACLE_BASE be set in the environment
    Wed Dec 21 09:56:27 2011
    ALTER DATABASE MOUNT
    Changing di2dbun from to PROD
    Setting recovery target incarnation to 2
    Successful mount of redo thread 1, with mount id 182307531
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: ALTER DATABASE MOUNT
    Wed Dec 21 09:56:31 2011
    Shutting down instance (abort)
    License high water mark = 1
    USER (ospid: 13293): terminating the instance
    Instance terminated by USER, pid = 13293
    Wed Dec 21 09:56:32 2011
    Instance shutdown complete
    Wed Dec 21 09:56:33 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /opt/oracle/db/tech_st/11.1.0/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =44
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 11.1.0.7.0.
    Using parameter settings in client-side pfile /opt/oracle/db/tech_st/11.1.0/dbs/initPROD.ora on machine testing.fgho.com
    System parameters with non-default values:
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    shared_pool_size = 400M
    shared_pool_reserved_size= 40M
    nls_language = "american"
    nls_territory = "america"
    nls_sort = "binary"
    nls_date_format = "DD-MON-RR"
    nls_numeric_characters = ".,"
    nls_comp = "binary"
    nls_length_semantics = "BYTE"
    sga_target = 1G
    control_files = "/opt/oracle/db/apps_st/data/cntrl01.dbf"
    control_files = "/opt/oracle/db/apps_st/data/cntrl02.dbf"
    control_files = "/opt/oracle/db/apps_st/data/cntrl03.dbf"
    db_block_checksum = "TRUE"
    db_block_size = 8192
    compatible = "11.1.0"
    log_buffer = 10485760
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = "AUTO"
    undo_tablespace = "APPS_UNDOTS1"
    db_block_checking = "FALSE"
    sec_case_sensitive_logon = FALSE
    session_cached_cursors = 500
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/opt/oracle/db/tech_st/11.1.0/appsutil/outbound/PROD_testing"
    utl_file_dir = "/usr/tmp"
    plsql_native_library_dir = "/opt/oracle/db/tech_st/11.1.0/plsql/nativelib"
    plsql_native_library_subdir_count= 149
    plsql_code_type = "INTERPRETED"
    plsql_optimize_level = 2
    job_queue_processes = 2
    systemtrig_enabled = TRUE
    cursor_sharing = "EXACT"
    parallel_min_servers = 0
    parallel_max_servers = 8
    db_name = "PROD"
    open_cursors = 600
    ifile = "/opt/oracle/db/tech_st/11.1.0/dbs/PROD_testing_ifile.ora"
    sortelimination_cost_ratio= 5
    btree_bitmap_plans = FALSE
    fastfull_scan_enabled = FALSE
    query_rewrite_enabled = "true"
    indexjoin_enabled = FALSE
    sqlexecprogression_cost= 2147483647
    likewith_bind_as_equality= TRUE
    pga_aggregate_target = 1G
    workarea_size_policy = "AUTO"
    optimizerautostats_job = FALSE
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4M
    diagnostic_dest = "/opt/oracle/db/tech_st/11.1.0/admin/PROD_testing"
    tracefiles_public = TRUE
    max_dump_file_size = "20480"
    Wed Dec 21 09:56:33 2011
    PMON started with pid=2, OS id=13297
    Wed Dec 21 09:56:33 2011
    VKTM started with pid=3, OS id=13299
    VKTM running at (100ms) precision
    Wed Dec 21 09:56:33 2011
    DIAG started with pid=4, OS id=13303
    Wed Dec 21 09:56:33 2011
    DBRM started with pid=5, OS id=13305
    Wed Dec 21 09:56:33 2011
    PSP0 started with pid=6, OS id=13307
    Wed Dec 21 09:56:33 2011
    DIA0 started with pid=7, OS id=13309
    Wed Dec 21 09:56:33 2011
    MMAN started with pid=8, OS id=13311
    Wed Dec 21 09:56:33 2011
    DBW0 started with pid=9, OS id=13313
    Wed Dec 21 09:56:33 2011
    DBW1 started with pid=10, OS id=13315
    Wed Dec 21 09:56:33 2011
    LGWR started with pid=11, OS id=13317
    Wed Dec 21 09:56:33 2011
    CKPT started with pid=12, OS id=13319
    Wed Dec 21 09:56:33 2011
    SMON started with pid=13, OS id=13321
    Wed Dec 21 09:56:33 2011
    RECO started with pid=14, OS id=13323
    Wed Dec 21 09:56:33 2011
    MMON started with pid=15, OS id=13325
    Wed Dec 21 09:56:33 2011
    MMNL started with pid=16, OS id=13327
    ORACLE_BASE not set in environment. It is recommended
    that ORACLE_BASE be set in the environment
    Wed Dec 21 09:56:33 2011
    CREATE CONTROLFILE REUSE SET DATABASE "PROD"
    LOGFILE
    GROUP 1 ('/opt/oracle/db/apps_st/data/log01a.dbf', '/opt/oracle/db/apps_st/data/log01b.dbf') SIZE 1048576000,
    GROUP 2 ('/opt/oracle/db/apps_st/data/log02a.dbf', '/opt/oracle/db/apps_st/data/log02b.dbf') SIZE 1048576000
    DATAFILE
    '/opt/oracle/db/apps_st/data/system12.dbf',
    '/opt/oracle/db/apps_st/data/a_ref02.dbf'
    RESETLOGS MAXDATAFILES 512
    MAXINSTANCES 8
    MAXLOGFILES 32
    MAXLOGHISTORY 14607
    MAXLOGMEMBERS 5
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Setting recovery target incarnation to 1
    Successful mount of redo thread 1, with mount id 182334161
    Completed: CREATE CONTROLFILE REUSE SET DATABASE "PROD"
    LOGFILE
    GROUP 1 ('/opt/oracle/db/apps_st/data/log01a.dbf', '/opt/oracle/db/apps_st/data/log01b.dbf') SIZE 1048576000,
    GROUP 2 ('/opt/oracle/db/apps_st/data/log02a.dbf', '/opt/oracle/db/apps_st/data/log02b.dbf') SIZE 1048576000
    DATAFILE
    '/opt/oracle/db/apps_st/data/system12.dbf',
    '/opt/oracle/db/apps_st/data/a_ref02.dbf'
    RESETLOGS MAXDATAFILES 512
    MAXINSTANCES 8
    MAXLOGFILES 32
    MAXLOGHISTORY 14607
    MAXLOGMEMBERS 5
    alter database open resetlogs
    RESETLOGS after incomplete recovery UNTIL CHANGE 5966705066893
    Wed Dec 21 09:56:57 2011
    Setting recovery target incarnation to 2
    Wed Dec 21 09:56:58 2011
    Checker run found 42 new persistent data failures
    Wed Dec 21 09:56:58 2011
    Assigning activation ID 182334161 (0xade32d1)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: /opt/oracle/db/apps_st/data/log01a.dbf
    Current log# 1 seq# 1 mem# 1: /opt/oracle/db/apps_st/data/log01b.dbf
    Successful open of redo thread 1
    Wed Dec 21 09:56:58 2011
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Wed Dec 21 09:56:58 2011
    SMON: enabling cache recovery
    Successfully onlined Undo Tablespace 368.
    Dictionary check beginning
    Tablespace 'TEMP1' #284 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Tablespace 'TEMP2' #394 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Dictionary check complete
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    WARNING: The following temporary tablespaces contain no files.
    This condition can occur when a backup controlfile has
    been restored. It may be necessary to add files to these
    tablespaces. That can be done using the SQL statement:
    ALTER TABLESPACE <tablespace_name> ADD TEMPFILE
    Alternatively, if these temporary tablespaces are no longer
    needed, then they can be dropped.
    Empty temporary tablespace: TEMP1
    Empty temporary tablespace: TEMP2
    Database Characterset is US7ASCII
    Incremental checkpoint up to RBA [0x1.3.0], current log tail at RBA [0x1.2b.0]
    Opening with internal Resource Manager plan
    Starting background process FBDA
    Wed Dec 21 09:56:58 2011
    FBDA started with pid=18, OS id=13347
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Wed Dec 21 09:56:58 2011
    QMNC started with pid=19, OS id=13351
    LOGSTDBY: Validating controlfile with logical metadata
    LOGSTDBY: Validation complete
    Global Name changed to PROD
    Completed: alter database open resetlogs
    alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01.dbf' REUSE
    Completed: alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01.dbf' REUSE
    alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02.dbf' REUSE
    Completed: alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02.dbf' REUSE
    alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01A.dbf' REUSE
    Completed: alter tablespace TEMP1 add tempfile '/opt/oracle/db/apps_st/data/temp01A.dbf' REUSE
    alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02A.dbf' REUSE
    Completed: alter tablespace TEMP2 add tempfile '/opt/oracle/db/apps_st/data/temp02A.dbf' REUSE
    ALTER DATABASE RENAME GLOBAL_NAME TO "PROD.fgho.com"
    Completed: ALTER DATABASE RENAME GLOBAL_NAME TO "PROD.fgho.com"
    Wed Dec 21 09:57:03 2011
    Starting background process CJQ0
    Wed Dec 21 09:57:03 2011
    CJQ0 started with pid=20, OS id=13385
    Wed Dec 21 09:57:49 2011
    Errors in file /opt/oracle/db/tech_st/11.1.0/admin/PROD_testing/diag/rdbms/prod/PROD/trace/PROD_ora_14065.trc:
    ORA-00604: error occurred at recursive SQL level
    ORA-01422: exact fetch returns more than requested number of rows
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0xC] [PC:0x979FFE, qmtRemoveRef()+114]
    Errors in file /opt/oracle/db/tech_st/11.1.0/admin/PROD_testing/diag/rdbms/prod/PROD/trace/PROD_ora_14065.trc (incident=3337):
    ORA-07445: exception encountered: core dump [qmtRemoveRef()+114] [SIGSEGV] [ADDR:0xC] [PC:0x979FFE] [Address not mapped to object] []
    Incident details in: /opt/oracle/db/tech_st/11.1.0/admin/PROD_testing/diag/rdbms/prod/PROD/incident/incdir_3337/PROD_ora_14065_i3337.trc
    to reduce charachters  i removed data file names and path at some places in this alert log file

  • OracleServiceXE Won't Start After Active Directory Install

    Hello Folks,
    Newbie to Oracle but proficient in general I.T. stuff. Client contacted us stating Active Directory role installed on Server 2008 box running as a virtual machine. After which client could no longer remotely access server and subsequently removed Active Directory. Since then, OracleServiceXE will not start and no response on the homepage of Oracle at http://127.0.0.1:8080/apex/f?p=4950.
    I see many other posts here of troubleshooting that led to reinstall of software. We're OK with that. However, I would like to verify that the customer's database will be able to be reattached after the reinstall? If so, what is that process please?
    We're open to troubleshooting as well if there's a relatively easy fix but otherwise open to reinstall.
    We're open to paid support if necessary as client has been down for a few days now.
    Please help!
    Thanks,
    Jon

    clcarter,
    Thank you. I copied the entire database directory to the desktop. Should be good to go there.
    Now, how would one shut down the database, go to a startup mount and alter the database open reset logs?
    Alert log (beginning and end) follows:
    Thu Aug 16 16:01:10 2012
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production.
    Using parameter settings in client-side pfile C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\CONFIG\SCRIPTS\INIT.ORA on machine DISMART
    System parameters with non-default values:
    sessions = 172
    memory_target = 1G
    control_files = "C:\ORACLEXE\APP\ORACLE\ORADATA\XE\CONTROL.DBF"
    compatible = "11.2.0.0.0"
    db_recovery_file_dest = "C:\oraclexe\app\oracle\fast_recovery_area"
    db_recovery_file_dest_size= 10G
    undo_management = "AUTO"
    undo_tablespace = "UNDOTBS1"
    remote_login_passwordfile= "EXCLUSIVE"
    dispatchers = "(PROTOCOL=TCP) (SERVICE=XEXDB)"
    shared_servers = 4
    job_queue_processes = 4
    audit_file_dest = "C:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP"
    db_name = "XE"
    open_cursors = 300
    diagnostic_dest = "C:\ORACLEXE\APP\ORACLE"
    Thu Aug 16 16:01:22 2012
    PMON started with pid=2, OS id=2412
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
    Thu Aug 16 16:01:22 2012
    PSP0 started with pid=3, OS id=3060
    Thu Aug 16 16:01:22 2012
    VKTM started with pid=4, OS id=1128 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Thu Aug 16 16:01:22 2012
    GEN0 started with pid=5, OS id=5772
    Thu Aug 16 16:01:22 2012
    DIAG started with pid=6, OS id=5972
    Thu Aug 16 16:01:22 2012
    DBRM started with pid=7, OS id=5832
    Thu Aug 16 16:01:22 2012
    DIA0 started with pid=8, OS id=5812
    Thu Aug 16 16:01:22 2012
    MMAN started with pid=9, OS id=5200
    Thu Aug 16 16:01:22 2012
    DBW0 started with pid=10, OS id=2036
    Thu Aug 16 16:01:22 2012
    LGWR started with pid=11, OS id=4284
    Thu Aug 16 16:01:22 2012
    CKPT started with pid=12, OS id=5168
    Thu Aug 16 16:01:22 2012
    SMON started with pid=13, OS id=6020
    Thu Aug 16 16:01:22 2012
    RECO started with pid=14, OS id=5940
    Thu Aug 16 16:01:22 2012
    MMON started with pid=15, OS id=480
    Thu Aug 16 16:01:22 2012
    MMNL started with pid=16, OS id=5320
    Thu Aug 16 16:01:22 2012
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    ORACLE_BASE from environment = C:\oraclexe\app\oracle
    Thu Aug 16 16:01:22 2012
    kcbztek_populate_tbskey: db key in controlfile and datafile 1 is inconsistent..
    Full restore complete of datafile 3 to datafile copy C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSAUX.DBF. Elapsed time: 0:00:02
    checkpoint is 354593
    Full restore complete of datafile 4 to datafile copy C:\ORACLEXE\APP\ORACLE\ORADATA\XE\USERS.DBF. Elapsed time: 0:00:09
    checkpoint is 354593
    Thu Aug 16 16:01:53 2012
    Full restore complete of datafile 1 to datafile copy C:\ORACLEXE\APP\ORACLE\ORADATA\XE\SYSTEM.DBF. Elapsed time: 0:00:31
    checkpoint is 354593
    Thu Aug 16 16:02:09 2012
    Full restore complete of datafile 2 to datafile copy C:\ORACLEXE\APP\ORACLE\ORADATA\XE\UNDOTBS1.DBF. Elapsed time: 0:00:47
    checkpoint is 354593
    Thu Aug 16 16:02:09 2012
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oraclexe\app\oracle\oradata\XE\system.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\undotbs1.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\sysaux.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Thu Aug 16 16:02:10 2012
    Successful mount of redo thread 1, with mount id 2672646209
    Completed: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oraclexe\app\oracle\oradata\XE\system.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\undotbs1.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\sysaux.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Shutting down instance (immediate)
    Shutting down instance: further logons disabled
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 1
    All dispatchers and shared servers shutdown
    ALTER DATABASE CLOSE NORMAL
    ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL...
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Thu Aug 16 16:02:14 2012
    Stopping background process VKTM
    Thu Aug 16 16:02:16 2012
    Instance shutdown complete
    Thu Aug 16 16:02:18 2012
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production.
    Using parameter settings in client-side pfile C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\CONFIG\SCRIPTS\INITXETEMP.ORA on machine DISMART
    System parameters with non-default values:
    sessions = 172
    memory_target = 1G
    control_files = "C:\ORACLEXE\APP\ORACLE\ORADATA\XE\CONTROL.DBF"
    compatible = "11.2.0.0.0"
    db_recovery_file_dest = "C:\oraclexe\app\oracle\fast_recovery_area"
    db_recovery_file_dest_size= 10G
    undo_management = "AUTO"
    undo_tablespace = "UNDOTBS1"
    remote_login_passwordfile= "EXCLUSIVE"
    dispatchers = "(PROTOCOL=TCP) (SERVICE=XEXDB)"
    shared_servers = 4
    audit_file_dest = "C:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP"
    db_name = "XE"
    open_cursors = 300
    diagnostic_dest = "C:\ORACLEXE\APP\ORACLE"
    Thu Aug 16 16:02:26 2012
    PMON started with pid=2, OS id=5128
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
    Thu Aug 16 16:02:26 2012
    PSP0 started with pid=3, OS id=5388
    Thu Aug 16 16:02:26 2012
    VKTM started with pid=4, OS id=4004 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Thu Aug 16 16:02:26 2012
    GEN0 started with pid=5, OS id=4976
    Thu Aug 16 16:02:26 2012
    DIAG started with pid=6, OS id=5860
    Thu Aug 16 16:02:26 2012
    DBRM started with pid=7, OS id=5532
    Thu Aug 16 16:02:26 2012
    DIA0 started with pid=8, OS id=2820
    Thu Aug 16 16:02:26 2012
    MMAN started with pid=9, OS id=5088
    Thu Aug 16 16:02:26 2012
    DBW0 started with pid=10, OS id=4236
    Thu Aug 16 16:02:26 2012
    LGWR started with pid=11, OS id=4240
    Thu Aug 16 16:02:26 2012
    CKPT started with pid=12, OS id=4244
    Thu Aug 16 16:02:26 2012
    SMON started with pid=13, OS id=5432
    Thu Aug 16 16:02:26 2012
    RECO started with pid=14, OS id=5076
    Thu Aug 16 16:02:26 2012
    MMON started with pid=15, OS id=5124
    Thu Aug 16 16:02:26 2012
    MMNL started with pid=16, OS id=5924
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    ORACLE_BASE from environment = C:\oraclexe\app\oracle
    Thu Aug 16 16:02:26 2012
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oraclexe\app\oracle\oradata\XE\system.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\undotbs1.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\sysaux.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Successful mount of redo thread 1, with mount id 2672635474
    Completed: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oraclexe\app\oracle\oradata\XE\system.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\undotbs1.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\sysaux.dbf',
    'C:\oraclexe\app\oracle\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Stopping background process MMNL
    Stopping background process MMON
    Starting background process MMON
    Thu Aug 16 16:02:29 2012
    MMON started with pid=15, OS id=5732
    Starting background process MMNL
    Thu Aug 16 16:02:29 2012
    MMNL started with pid=16, OS id=5704
    ALTER SYSTEM enable restricted session;
    alter database "XE" open resetlogs
    RESETLOGS after incomplete recovery UNTIL CHANGE 354593
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    Clearing online redo logfile 1 C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_%U_.LOG
    Clearing online log 1 of thread 1 sequence number 0
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    Clearing online redo logfile 1 complete
    Thu Aug 16 16:02:32 2012
    Checker run found 1 new persistent data failures
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    Clearing online redo logfile 2 C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_%U_.LOG
    Clearing online log 2 of thread 1 sequence number 0
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    Thu Aug 16 16:02:32 2012
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_m000_1808.trc:
    ORA-01155: the database is being opened, closed, mounted or dismounted
    Clearing online redo logfile 2 complete
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    Clearing online redo logfile 3 C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_0_%U_.LOG
    Clearing online log 3 of thread 1 sequence number 0
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_ora_5312.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    Clearing online redo logfile 3 complete
    Online log C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_82TNGPV9_.LOG: Thread 1 Group 1 was previously cleared
    Online log C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_82TNGRDB_.LOG: Thread 1 Group 2 was previously cleared
    Online log C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_3_82TNGSP9_.LOG: Thread 1 Group 3 was previously cleared
    Setting recovery target incarnation to 2
    Thu Aug 16 16:02:37 2012
    Assigning activation ID 2672635474 (0x9f4d2e52)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_82TNGPV9_.LOG
    Successful open of redo thread 1
    Thu Aug 16 16:02:37 2012
    SMON: enabling cache recovery
    Thu Aug 16 16:02:41 2012
    [5312] Successfully onlined Undo Tablespace 2.
    Undo initialization finished serial:0 start:2306864 end:2307738 diff:874 (8 seconds)
    Dictionary check beginning
    Tablespace 'TEMP' #3 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Dictionary check complete
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    WARNING: The following temporary tablespaces contain no files.
    This condition can occur when a backup controlfile has
    been restored. It may be necessary to add files to these
    tablespaces. That can be done using the SQL statement:
    ALTER TABLESPACE <tablespace_name> ADD TEMPFILE
    Alternatively, if these temporary tablespaces are no longer
    needed, then they can be dropped.
    Empty temporary tablespace: TEMP
    Updating character set in controlfile to AL32UTF8
    Create Relation IPS_PACKAGE_UNPACK_HISTORY
    Opening with Resource Manager plan: INTERNAL_PLAN_XE
    Thu Aug 16 16:02:44 2012
    Starting background process VKRM
    Thu Aug 16 16:02:44 2012
    VKRM started with pid=23, OS id=2684
    WARNING: Files may exists in db_recovery_file_dest
    that are not known to the database. Use the RMAN command
    CATALOG RECOVERY AREA to re-catalog any such files.
    If files cannot be cataloged, then manually delete them
    using OS command.
    One of the following events caused this:
    1. A backup controlfile was restored.
    2. A standby controlfile was restored.
    3. The controlfile was re-created.
    4. db_recovery_file_dest had previously been enabled and
    then disabled.
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Thu Aug 16 16:02:47 2012
    QMNC started with pid=24, OS id=3676
    LOGSTDBY: Validating controlfile with logical metadata
    LOGSTDBY: Validation complete
    Global Name changed to XE
    Thu Aug 16 16:02:51 2012
    Starting background process CJQ0
    Thu Aug 16 16:02:51 2012
    CJQ0 started with pid=25, OS id=2536
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
    Thu Aug 16 16:02:57 2012
    Completed: alter database "XE" open resetlogs
    alter database rename global_name to "XE"
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Completed: alter database rename global_name to "XE"
    Thu Aug 16 16:02:57 2012
    Thread 1 advanced to log sequence 2 (LGWR switch)
    Current log# 2 seq# 2 mem# 0: C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_82TNGRDB_.LOG
    alter database drop logfile group 3
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Deleted Oracle managed file C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_3_82TNGSP9_.LOG
    Completed: alter database drop logfile group 3
    ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oraclexe\app\oracle\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Completed: ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oraclexe\app\oracle\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    ALTER SYSTEM disable restricted session;
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Thu Aug 16 16:03:02 2012
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Thu Aug 16 16:03:02 2012
    Errors in file C:\ORACLEXE\APP\ORACLE\diag\rdbms\xe\xe\trace\xe_j003_5264.trc:
    ORA-12012: error on auto execute of job "SYS"."BSLN_MAINTAIN_STATS_JOB"
    ORA-06550: line 1, column 807:
    PLS-00201: identifier 'DBSNMP.BSLN_INTERNAL' must be declared
    ORA-06550: line 1, column 807:
    PL/SQL: Statement ignored
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Thu Aug 16 16:03:11 2012
    db_recovery_file_dest_size of 10240 MB is 0.98% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Thu Aug 16 16:03:14 2012
    XDB installed.
    Thu Aug 16 16:03:15 2012
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    XDB initialized.
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Thu Aug 16 16:03:25 2012
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Thu Aug 16 16:03:28 2012
    Shutting down instance (immediate)
    Shutting down instance: further logons disabled
    Stopping background process QMNC
    Stopping background process CJQ0
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 6
    All dispatchers and shared servers shutdown
    ALTER DATABASE CLOSE NORMAL
    Thu Aug 16 16:03:31 2012
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Thu Aug 16 16:03:31 2012
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 2
    Successful close of redo thread 1
    Completed: ALTER DATABASE CLOSE NORMAL
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Thu Aug 16 16:03:32 2012
    Stopping background process VKTM
    Thu Aug 16 16:03:35 2012
    Instance shutdown complete
    Thu Aug 16 16:03:37 2012
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production.
    Using parameter settings in server-side pfile C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\DATABASE\INITXE.ORA
    System parameters with non-default values:
    sessions = 172
    spfile = "C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\DBS\SPFILEXE.ORA"
    memory_target = 1G
    control_files = "C:\ORACLEXE\APP\ORACLE\ORADATA\XE\CONTROL.DBF"
    compatible = "11.2.0.0.0"
    db_recovery_file_dest = "C:\oraclexe\app\oracle\fast_recovery_area"
    db_recovery_file_dest_size= 10G
    undo_management = "AUTO"
    undo_tablespace = "UNDOTBS1"
    remote_login_passwordfile= "EXCLUSIVE"
    dispatchers = "(PROTOCOL=TCP) (SERVICE=XEXDB)"
    shared_servers = 4
    job_queue_processes = 4
    audit_file_dest = "C:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP"
    db_name = "XE"
    open_cursors = 300
    diagnostic_dest = "C:\ORACLEXE\APP\ORACLE"
    Thu Aug 16 16:03:48 2012
    PMON started with pid=2, OS id=5692
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
    Thu Aug 16 16:03:48 2012
    PSP0 started with pid=3, OS id=5744
    Thu Aug 16 16:03:48 2012
    VKTM started with pid=4, OS id=5576 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Thu Aug 16 16:03:48 2012
    GEN0 started with pid=5, OS id=4756
    Thu Aug 16 16:03:48 2012
    DIAG started with pid=6, OS id=1020
    Thu Aug 16 16:03:48 2012
    DBRM started with pid=7, OS id=5300
    Thu Aug 16 16:03:48 2012
    DIA0 started with pid=8, OS id=5864
    Thu Aug 16 16:03:48 2012
    MMAN started with pid=9, OS id=5636
    Thu Aug 16 16:03:48 2012
    DBW0 started with pid=10, OS id=3564
    Thu Aug 16 16:03:48 2012
    LGWR started with pid=11, OS id=5840
    Thu Aug 16 16:03:48 2012
    CKPT started with pid=12, OS id=5996
    Thu Aug 16 16:03:48 2012
    SMON started with pid=13, OS id=5280
    Thu Aug 16 16:03:48 2012
    RECO started with pid=14, OS id=5512
    Thu Aug 16 16:03:48 2012
    MMON started with pid=15, OS id=3684
    Thu Aug 16 16:03:48 2012
    MMNL started with pid=16, OS id=5104
    Thu Aug 16 16:03:48 2012
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    ORACLE_BASE from environment = C:\oraclexe\app\oracle
    Thu Aug 16 16:03:48 2012
    ALTER DATABASE MOUNT
    Changing di2dbun from to XE
    Successful mount of redo thread 1, with mount id 2672626596
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: ALTER DATABASE MOUNT
    Thu Aug 16 16:03:53 2012
    ALTER DATABASE OPEN
    Thread 1 opened at log sequence 2
    Current log# 2 seq# 2 mem# 0: C:\ORACLEXE\APP\ORACLE\FAST_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_82TNGRDB_.LOG
    Successful open of redo thread 1
    SMON: enabling cache recovery
    [5776] Successfully onlined Undo Tablespace 2.
    Undo initialization finished serial:0 start:2384085 end:2384865 diff:780 (7 seconds)
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    Thu Aug 16 16:03:59 2012
    SMON: enabling tx recovery
    Database Characterset is AL32UTF8
    Opening with Resource Manager plan: INTERNAL_PLAN_XE
    Thu Aug 16 16:04:00 2012
    Starting background process VKRM
    Thu Aug 16 16:04:00 2012
    VKRM started with pid=22, OS id=5816
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Thu Aug 16 16:04:03 2012
    QMNC started with pid=24, OS id=4092
    Thu Aug 16 16:04:06 2012
    Completed: ALTER DATABASE OPEN
    Thu Aug 16 16:04:14 2012
    Starting background process CJQ0
    Thu Aug 16 16:04:14 2012
    CJQ0 started with pid=33, OS id=4932
    Thu Aug 16 16:04:17 2012
    db_recovery_file_dest_size of 10240 MB is 0.98% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified !
    Thu Aug 16 16:04:25 2012
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    Fri Oct 19 15:43:25 2012
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !
    Fri Oct 19 15:43:28 2012
    Fatal NI connect error 12638, connecting to:
    (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 11.2.0.2.0 - Production
    Time: 19-OCT-2012 15:43:28
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12638
    TNS-12638: Credential retrieval failed
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    OER 7451 in Load Indicator : Error Code = OSD-04500: illegal option specified
    O/S-Error: (OS 1) Incorrect function. !

  • PS RapidMart - Error running first Load

    Hi,
    I have Data Services 12.2.3.1, and I'm tryng to configure PS RapidMart.
    When executing the RapidMart job for the first time, I get the following error:
    6288     7008     DBS-070402     6/17/2011 10:01:08 PM     |Sub data flow DF_RoutingOperation_SAP_1|Loader PLPO_R3_RoutingOpera_DT__36_828_32_1
    6288     7008     DBS-070402     6/17/2011 10:01:08 PM     ODBC data source <WIN-M6U5ED03IBN> warning message for operation <bcp_init>: <[Microsoft][ODBC SQL Server Driver]Unable to
    6288     7008     DBS-070402     6/17/2011 10:01:08 PM     resolve column level collations>, SQLState <HY000>.
    7060     6152     DFC-250038     6/17/2011 10:01:18 PM     |Dataflow DF_RoutingOperation_SAP
    7060     6152     DFC-250038     6/17/2011 10:01:18 PM     Sub data flow <DF_RoutingOperation_SAP_1> terminated due to error <70402>.
    7060     4828     FIL-080134     6/17/2011 10:01:18 PM     |Dataflow DF_RoutingOperation_SAP|Pipe Listener for DF_RoutingOperation_SAP_1
    7060     4828     FIL-080134     6/17/2011 10:01:18 PM     Named pipe error occurred: <The pipe has been ended.
    7060     4828     FIL-080134     6/17/2011 10:01:18 PM     >
    4948     6004     DFC-250038     6/17/2011 10:01:19 PM     |Dataflow DF_RoutingOperation_SAP
    4948     6004     DFC-250038     6/17/2011 10:01:19 PM     Sub data flow <DF_RoutingOperation_SAP_1> terminated due to error <70402>.
    I have configured the variables with the following values:
    $G_CCODE = '1000';
    $G_LOAD_TYPE = 'FIRST';
    $G_SDATE = to_date('2009.01.01', 'yyyy.mm.dd');
    $G_INT_ORDER_CATEG_PP='20';
    $G_INT_ORDER_CATEG_PS='20';
    Is there anybody who already has configured PS RapidMart, or is familiar with this error?
    Thanks

    Hi Jeff.
    Thanks for your reply.
    In the RapidMart documentation (SAP BO Project Systems RapidMart XI 3.2 for SAP solutions User Guide) it says to create a SQL Server Data Base with case sensitive collation (in my case I used Latin1_General_BIN).
    I look at the table that is feeded with the Workflow that gets this error, and I didn't find any collation related code.
    I try to create a DataBase with the collation that you refer and I run the ETL, but now it crashes earlier in the process with the error:
    7916     7596     DBS-070401     6/22/2011 4:28:25 PM     |Data flow DF_DocumentCategory_SAP|Loader TimeStampQuery_DOCUMENT_CATEGORY
    7916     7596     DBS-070401     6/22/2011 4:28:25 PM     ODBC data source <WIN-M6U5ED03IBN> error message for operation <SQLExecute>: <[Microsoft][ODBC SQL Server Driver][SQL
    7916     7596     DBS-070401     6/22/2011 4:28:25 PM     Server]Violation of PRIMARY KEY constraint 'XPK_DOC_CATEG'. Cannot insert duplicate key in object 'dbo.DOCUMENT_CATEGORY'.>.
    I think this is because this collation is not case sensitive.
    One special note is that our Job Server is in Windows 2008 R2 64 bits and the SAP Server is on HP-UX ia64. Maybe this collation issue is related with platform differences.
    Thanks
    Edited by: Moisés Pires on Jun 22, 2011 5:56 PM

  • Neues ThinkPad!

    Hallo geschätztes Forum!
    Ich besitze ein IdeaPad s205 für den privaten Gebrauch und ein ThinkPad T42p für den schulischen Gebrauch (Realschule, Oberstufe).
    Doch leider hat das T42p das bekannte USB Problem und einen sehr geschwächten Akku während bei dem IdeaPad die linke Maustaste, der Akku und die Kühlung nicht mehr richtig funktionieren. Beide sind sehr treue Begleiter in allen Lebenslagen doch leider ist ihr eigenes Leben sehr kurz und ich suche nun einen Ersatz.
    Ich suche nun also ein ThinkPad was so viel einstecken kann wie das T42p, 5 Stunden Akkulaufzeit beim Surfen durchsteht, ein Dock unterstützt, von der Leistung her ausreicht für einfache Spiele wie CounterStrikeource und ein Auflösung von mindestens FullHD (besser 1920x1200) bietet. Und das alles für maximal 300€ (Gebraucht) da ich als Schüler sehr wenig verdiene (Ferienjobs etc.).
    Bisher habe ich das T61p und das T500 entdeckt, doch beide leiden unter teils sehr schweren Defekten.
    Ich wollte mich damit nicht irgendwem anvertrauen, sondern den Spezialisten für diese Geräte, ich hoffe ihr könnt mir helfen. Ich hoffe ich bin damit nicht im falschen Forum.
    Schönen Nachmittag,
    Tim Grau
    IdeaPad s205 - 4GB, 500GB HDD, Win7 H.P. 32Bit, Kühlungs-Mod
    ThinkPad SL500 - 2GB, 250GB HDD, Linux Mint 14 KDE
    ThinkPad T42p - 2GB, 60GB HDD, Linux Mint 14 KDE, USB-Defekt
    ThinkPad X560 - 96MB, 10GB HDD, Win98

    Guten Morgen Sardun, also alles bis zum Neustart habe ich auch so durchgeführt. Nach dem Neustart habe ich leicht andere Optionen Die Abweichung von deinem Todo fängt sofort an. Ich habe unter Choose an option folgende Möglichkeiten Continue -  Exit and continue to Win 8.1Use a device - Use a USB drive, network connection or Win recovery DVDTroubleshoot - Refresh or reste your PC, or user advanced toolsTurn off your PC Wenn ich nun Use a device wähle habe ich die liste mit den Geräte wie im Bootmenü (USB FDD, USB HDD, USB CD/DVD, Internal Storage, Network Adapter) hier wird nicht der Typ von meinem USB-Stick angezeigt wie es im Bootmenü ist. Getestet habe ich bei Use a device (FDD, HDD) leider kein Erfolg, das Gerät startet jedesmal normal in Win. Und bei Troubleshoot, habe ich Advanced options folgende Auswahl- System Restore- System Image Recovery- Startup Repair- Command Prompt- UEFI Firmware Settings- Startup Settings Kann eine der o. g. Auswahl helfen?  

  • ThinkPad 10 neues Betriebssystem vom Stick installieren!

    Hallo, ich habe folgendes Problem. Ich möchte auf einem ThinkPad 10 mit der 4GB Variante ein anderes Betriebssystem installieren. Zurzeit ist dort die Win 8.1 Pro 32bit drauf es soll die Win 8.1 Pro 64bit drauf. Ich habe nun einen USB-Stick erstellt und auch im Bios die Bootreihenfolge verändert sowie Secure Boot deaktiviert. Leider boote das Tablet nicht vom Stick. Hat jemand eine Idee wie ich das Betriebssystem installiert bekomme. PS. Per DVD klappt es auch nicht!  

    Guten Morgen Sardun, also alles bis zum Neustart habe ich auch so durchgeführt. Nach dem Neustart habe ich leicht andere Optionen Die Abweichung von deinem Todo fängt sofort an. Ich habe unter Choose an option folgende Möglichkeiten Continue -  Exit and continue to Win 8.1Use a device - Use a USB drive, network connection or Win recovery DVDTroubleshoot - Refresh or reste your PC, or user advanced toolsTurn off your PC Wenn ich nun Use a device wähle habe ich die liste mit den Geräte wie im Bootmenü (USB FDD, USB HDD, USB CD/DVD, Internal Storage, Network Adapter) hier wird nicht der Typ von meinem USB-Stick angezeigt wie es im Bootmenü ist. Getestet habe ich bei Use a device (FDD, HDD) leider kein Erfolg, das Gerät startet jedesmal normal in Win. Und bei Troubleshoot, habe ich Advanced options folgende Auswahl- System Restore- System Image Recovery- Startup Repair- Command Prompt- UEFI Firmware Settings- Startup Settings Kann eine der o. g. Auswahl helfen?  

  • W700 Win7 x64 blue screen after screen replacement

    Hopefully somebody has a solution for this issue. Recently I sent my W700 in for a screen replacement and when I received it back, I installed my HD (Win7 x64 Ultimate) and the system would blue screen.
    I tried all the different start up options and all failed with a blue screen
    The blue screen goes away so fast I cannot see what it is telling me
    Sometimes as it is attemption to boot I will see a screen that states "The boot selection failed because a required device is inaccessible"
    I attempted a repair and see the following (the repair fails)
    Windows Boot Mgr
    ID 9DEA862C-5CDD-4E70-ACC1-F32B344D4795
    Startup option will be added
    Name: Win Recovery Env (Recovered)
    Path: Recovery\103c3ec-e604-11de-a4f7-8c999d1797b9\Winre.wim
    Windows Device: Partition-E476835 MB)
    A copy of the current boot configuration data will be saved as D:\Boot\BCD.Backup.0001
    I click Repair & Restart, the system blue screens when it boots
    In that I was using my "production disk" I switched to the previous Win7 x64 Ultimate drive I had in the system - same failure and results with this drive as well
    I then switched to the Vista drive that was in the system when I received it 0 same failure and results with this drive as well
    I then installed a new 500GB drive and started a new build - this worked but I'm having trouble getting Outlook x32 2010 to work with my previous Outlook.pst file
    I've restored the MBR and the 100MB partition on one of my Win7 drives using the MBR and 100MB partition from the new working drive - still I get the blue screen.
    I need one of two solutions (as I see it)
    Get my production Win7 x64 drive working (this is the drive that blue screens)
    Get the new HD with the new Win7 build working with Outlook.
    I've talked to the support center they don't know what is going on but offered to ship the W700 back and look at it. If they could not resolve the issue they would reimage the HD. This is not an acceptable solution. I already know that if I rebuild the HD it will work. 
    jgt1942

    Your computer is experiencing problems with the installed updates. Do check existing updates list and remove all recently installed updates. There is a good possibility that some updates wouldn't work properly or they are not properly installed. For diagnostic information please visit here.
    1. Click Start, type "installed updates" in the Search Box.
    2. Press ENTER.
    3. Right click an update, select Uninstall.

  • Cannot create recovery disk after update to Win 8.1 on G580

    Friends
    I have a Lenovo G580 that came with Win 8.0 preinstalled. I upgraded it to Win 8.1 over the Internet.
    When I try to run the "Create recovery disk" I get the error that states that "We cannot create a recovery drive for this PC. Some required files are missing..."
    I found out that the winre.wim file that is supposed to be in the C:\Windows\System32\Recovery folder is not there. I cannot locate it anywhere on the C or D drives either. I believe there is a copy on one or more of the recovery partitions but I do not know how to get that file from those partitons.
    I am confused as to why there are seven partitions on that one drive:
    1 Recovery partition 1000 MB
    2 EFI system partition 260 MB
    3 OEM partition 1000 MB
    4. Recovery partition 350 MB
    5. Recovery partition 20 GB
    6. Lenovo D: 25 GB
    7. Windows 8 C: 250 GB
    Can someone help me and give me some instructions on how I can fix the system to find the winre.wim file?
    Thanks for any good input.
    Calle

    Hi Calle,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that the error message is displayed in your G580 Laptop, as the OS (Operating System) installed is Windows 8.1 or Windows 8. Recovery discs cannot be created only a “Recovery Media” can be created using USB Flash drive, below is the link to create USB recovery drive.
    Create a USB Recovery Drive
    Do post us back if the issue persists.
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • HT201210 I am trying to restore software on my iPad which is connected to my PC with iTunes when i'm in recovery mode a warning comes up "The iPad could not be restored an unknown error occurred (1604) I have followed all suggestions  but still my iPad is

    I am trying to restore software on my iPad which is connected to my PC with iTunes when i'm in recovery mode a warning comes up
    "The iPad could not be restored an unknown error occurred (1604) This i have discovered probably a USB timing problem ?
    I have followed all suggestions  but still my iPad screen is locked with a iTunes logo and a USB cable beneath it, wish I had never bothered
    to update it now. Any help would be appreciated. rg

    When I restart my iPad the connect to iTunes comes up and stays on until it shuts down again, I have read a report from Apple support suggesting I reinstall iTunes so I might try that again and also your suggestion which i shall also try, but thanks again - rg1547

  • Hp pavilion dv6 recovery system with win 7 dvd image not found

    Hello everyone, I have a hp pavilion dv6 I going to restore the operating system win 7 that I previously saved in an image of the system in 2 DVDs. I need to restore the entire computer because I do not want to lose all installations made within a year , including software installations regularly purchased online which do not have the original CDs . I tried to go in :
    1 - "Backup and Restore Computer"
    2 - Control Panel and select the " Restore system settings or your computer "
    3 - then " advanced recovery methods "
    4 - next page select " Use a system image you created earlier to recover your computer "
    5 - At this point it asks me to do a backup, but I do not care because the computer is pretty much with the factory settings as has just returned from assistance hp and after ignoring the message I restart the computer in recovery mode expecting to reinstall the system with the image .
    After a series of steps at the time to reload the image from the second DVD that I had previously saved , the computer can not find even one image to be restored where am I wrong?
    Thanks Acitano

    Hi Acitano,
    I understand you are having issue with restoring your computer. Here is a document on how to do that when windows 7 will not start normally.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01835735&lc=en&product=5218386&tmp...
    Hope this helps.
    Thanks
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for

  • Lumia 900 suggestions from an owner, if Nokia want...

    I got my Lumia 900 this weekend and have been using it non-stop for a day. My previous phone is an iPhone 3GS, a nearly three year old phone that the Lumia should beat hands down; the Lumia barely beats a 3 year old 3GS. THE GOOD Here are the ways in

  • ALV Report in EXCEL Form

    Hi,   I want to open the ALV Report o/p in excel formate I have serch in SDN  but not getting the excel optin in view tab  as per given reply is SDN the setting s required r open office excel -> tools -> macro -> security security level -> medium tru

  • A question about Flash 5 (Help appreciated)

    Many years ago I bought Macromedia Flash 5, and never got around to doing anything with it.... Lately I've gained a lot of interest in learning how to animate and develop small applications like games and I figured flash would be a good place to star

  • Getting A Macbook, Need Help Transfering Files

    Ok I'm getting a MacBook for X-Mas (that is if Santa comes through :)) and I want to know the best way to transfer some of my files on my pc to my new MacBook. Specificly I'd like to transfer some of the videos in my iTunes library over to my new MB.

  • The new version of iTunes won´t run and i get an error message

    that says the program has detected "a problem with your audio configuration". How can i fix this without loosing songs etcetera?