Database Configuration Assistant ora-12514 error

When I create a new database through Database Configuration Assistant using "Create a Database" or configurate the orcl database using "Configure Database options"
Preparing to Configure Database is OK.
Completing Database Configuration is failed.
It shows the following message:
Enterprise manager configuration failed due to the following error -
Listener is not up or database service is not registered with it.
Start the Listener and register database service and run EM Configuration Assistant again.
After open emConfig.log, it shows "ora-12514".
When using the SQL Developer, the new instance can be connected.
However, I cannot change the new instance in the dbconsole.
Please help to solve the problem.
Edited by: user1039548 on 2011年12月5日 上午1:16

Thanks for your guideline.
Repository created
Other problem is:
Failed to unlock all EM-related accounts
In console:
Dec 6, 2011 7:08:08 PM oracle.sysman.emcp.EMReposConfig createRepository
INFO: Creating the EM repository (this may take a while) ...
Dec 6, 2011 7:11:39 PM oracle.sysman.emcp.EMReposConfig invoke
INFO: Repository successfully created
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMReposConfig invoke
SEVERE: Failed to unlock all EM-related accounts
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMConfig perform
SEVERE: Failed to unlock all EM-related accounts
Refer to the log file at C:\app\John\cfgtoollogs\emca\webprob\emca_2011_12_06_
19_07_42.log for more details.
Could not complete the configuration. Refer to the log file at C:\app\John\cfg
toollogs\emca\webprob\emca_2011_12_06_19_07_42.log for more details.
In emca log:
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
CONFIG: Failed to unlock mgmt_view account
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMReposConfig invoke
SEVERE: Failed to unlock all EM-related accounts
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMConfig perform
SEVERE: Failed to unlock all EM-related accounts
Refer to the log file at C:\app\John\cfgtoollogs\emca\webprob\emca_2011_12_06_19_07_42.log for more details.
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMConfig perform
CONFIG: Stack Trace:
oracle.sysman.emcp.exception.EMConfigException: Failed to unlock all EM-related accounts
     at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:349)
     at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:158)
     at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253)
     at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:590)
     at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1453)
     at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:574)
     at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:522)
Dec 6, 2011 7:11:47 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
CONFIG: Restoring oracle.installer.oui_loc to C:\app\John\product\11.2.0\dbhome_1\oui
I have found the web information but cannot solve it.

Similar Messages

  • Oracle Database - Database Configuration Assistant

    Hello,
    When I was installing Oracle Database (at Install Product), it reached Database Configuration Assistant with an error pop out: ORA-12638: Credential retrieval failed. Please advise me, thank you in advance~

    This question does not have to be raised in Peoplesoft forum. Please ask this to the Database General forum, thanks.
    Thread locked.
    Nicolas.

  • Database configuration Assistant

    Hii,
    I successfully installed my Oracle 10g in my Windows vista Business . So while creating the global database by Database configuration Assistant i got error 12560: TSN Protocol Adapter Error. i checked my ORACLE_HOME as well as ORACLE_SID paths.. but still now i unable to create my global database .. plz help me..
    Thanx....

    Pl do not post duplicate threads - 12560 ORA TNS Protocol adapter Error

  • ORA-12514 Error when using Net Configuration Assistant

    I have recently installed Oracle 11g on a Windows 2008 server and am now trying to connect via the Oracle client on my local machine.
    Here is how I've been using Net Configuration Assistant so far:
    Listener Configuration
    The name of my listener is LISTENER_PROXIMA (proxima is the name of the server). Does this need to be named something else? Something specific?
    I'm using TCP to connect.
    I'm using standard port 1521.
    Naming Methods
    Local Naming and Easy Connect Naming
    Local Net Service Name
    Service name is ADMI04 (checked this against the lsnrstl service status on the server and it's correct)
    Using TCP
    Using the hostname proxima.domain-name.com
    I'm attempting to connect as SYS (but have tried others with the same result)
    When I go to test the connection I keep getting the ORA-12514 error. Does anyone know what I should do? Reinstall the listener? If so, are there any suggestions or guidance for that?
    Thank you.

    =================================
    A couple of important points.
    First, the listener is a server side only process. It's entire purpose in life is to receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It creates the connection. It doesn't sustain the connection. One listener, with the default name of LISTENER, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners or to name the listener as if it belongs to a particular database. That would be like the telephone company building a separate switchboard for each customer.
    Second, the tnsnames.ora file is a client side issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
    Assume you have the following in your tnsnames.ora:
    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
      )Now, when you issue a connect, say like this:
    $> sqlplus scott/tiger@larrytns will look in your tnsnames.ora for an entry called 'larry'. Next, tns sends a request to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
    Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
    Next, the request arrives at port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, you'll be connected.
    What can go wrong?
    First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
    Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
    Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
    Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"
    =====================================

  • ORA-01017 error in Database Configuration Assistant when installing Oracle

    I am installing Oracle 9i, 9.0.1.1, on an NT Workstation.
    When I get to the Database Configuration Assistant step, after the software has been installed, I get an error when the database is being created:
    ORA-01017 Invalid Username/Password; Login denied
    I have tried several times with different database creations. The first time I got the error was when I did a custom database creation, the other time was when I created a general purpose database, which clones an existing database onto the NT workstation.
    The NT system that I am using had an earlier version of Oracle installed on it, which I completely uninstalled.
    Any ideas what might be wrong?

    Deepak_DBA wrote:
    hi,
    you might have deleted the instance manually..
    oradim -delete -sidHence,
    ebrian wrote:
    Did you already remove the Windows service associated with the database?

  • 11g fails in Database Configuration Assistant with ORA-01919

    I'm installing 11g on a 32-bit CentOS (redhat) box, and the Database Configuration Assistant is failing with
    ORA-01919: role 'XDBADMIN' does not exist
    I can in fact read, so I do know what's causing this particular error (and all the cascading errors if I hit the "ignore" button) but I don't know what I missed earlier in the installation process that should have created this role.
    The Database Configuration Assistant is at 46% completion when it throws up this error.
    Looking in the logs under /usr/lib/oracle/xe/app/oracle/cfgtoollogs/dbca/orcl/mkplug_v3_orcl.log
    I see this particular error in
    specify password for OE as parameter 1:
    PROMPT password for SYS as parameter 2:
    SP2-0306: Invalid option.
    Usage: CONN[ECT] [logon] [AS {SYSDBA|SYSOPER|SYSASM}]
    where <logon>  ::= <username>[/<password>][@<connect_identifier>] [edition=value] | /
    GRANT xdbadmin TO oe
    ERROR at line 1:
    ORA-01919: role 'XDBADMIN' does not exist
    GRANT create any directory TO oe
    ERROR at line 1:
    ORA-01031: insufficient privilegesBut I think this is a secondary error. The log file's first entry is an error:
    SP2-0306: Invalid option.
    Usage: CONN[ECT] [logon] [AS {SYSDBA|SYSOPER|SYSASM}]
    where <logon>  ::= <username>[/<password>][@<connect_identifier>] [edition=value] | /
    20090714 07:01:02
    1 row selected.
    old   1: CREATE USER hr IDENTIFIED BY &&password_hr
    new   1: CREATE USER hr IDENTIFIED BY change_on_install
    User created.
    ....Any help where I can look to get closer to the original error?
    Thanks!

    You should check out metalink doc id 742014.1, "XDB 11g Install and Deinstall Note."
    Hopefully this helps.

  • Database Configuration Assistant Error

    Hello, I am trying to create a database from a given template using the Database Configuration Assistant, but when I get to the end of the configuration and click on "Finish" nothing happens. I can click as many times as I want, but no error messages show and oracle does not begin creating my database.
    I have also tried creating the database on my own (without the template), but I get the same result.
    Can anyone help me?
    Thanks,
    Komyg

    I haven't found any logs in my ORACLE_HOME/assistants/dbca/logs, but I checked for other logs and found this one: C:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\trace.log:
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [DBCAWizard.removePageFromList:1254]  DBCAWizard->removePageFromList: The page to be removed = NetworkConfPage
    [main] [17:47:52:218] [CommandLineArguments.process:563]  CommandLineArguments->process: number of arguments = 0
    [main] [17:47:55:203] [Host.checkOPS:2053]  Inside checkOPS
    [main] [17:47:55:203] [Host.checkOPS:2065]  Trying to check cluster existence
    [main] [17:47:55:937] [Library.getInstance:95]  Created instance of Library.
    [main] [17:47:55:937] [Library.load:195]  Loading orauts.dll...
    [main] [17:47:55:937] [Library.load:201]  oracleHome C:\oracle\product\10.2.0\db_1
    [main] [17:47:55:937] [sPlatform.isHybrid:63]  osName=Windows XP osArch=x86 rc=false
    [main] [17:47:55:953] [Library.load:220]  Loading  library C:\oracle\product\10.2.0\db_1\bin\orauts.dll
    [main] [17:47:55:953] [Library.load:244]  Loaded library C:\oracle\product\10.2.0\db_1\bin\orauts.dll from path=
    C:\oracle\product\10.2.0\db_1\bin
    [main] [17:47:55:953] [Library.load:195]  Loading MSVCR71.dll...
    [main] [17:47:55:953] [Library.load:201]  oracleHome C:\oracle\product\10.2.0\db_1
    [main] [17:47:55:953] [sPlatform.isHybrid:63]  osName=Windows XP osArch=x86 rc=false
    [main] [17:47:55:953] [Library.load:220]  Loading  library C:\oracle\product\10.2.0\db_1\bin\MSVCR71.dll
    [main] [17:47:56:750] [Library.load:244]  Loaded library C:\oracle\product\10.2.0\db_1\bin\MSVCR71.dll from path=
    C:\oracle\product\10.2.0\db_1\bin
    [main] [17:47:56:750] [Library.load:195]  Loading orawsec10.dll...
    [main] [17:47:56:750] [Library.load:201]  oracleHome C:\oracle\product\10.2.0\db_1
    [main] [17:47:56:750] [sPlatform.isHybrid:63]  osName=Windows XP osArch=x86 rc=false
    [main] [17:47:56:750] [Library.load:220]  Loading  library C:\oracle\product\10.2.0\db_1\bin\orawsec10.dll
    [main] [17:47:56:750] [Library.load:244]  Loaded library C:\oracle\product\10.2.0\db_1\bin\orawsec10.dll from path=
    C:\oracle\product\10.2.0\db_1\bin
    [main] [17:47:56:750] [Library.load:195]  Loading orasrvm10.dll...
    [main] [17:47:56:750] [Library.load:201]  oracleHome C:\oracle\product\10.2.0\db_1
    [main] [17:47:56:750] [sPlatform.isHybrid:63]  osName=Windows XP osArch=x86 rc=false
    [main] [17:47:56:750] [Library.load:220]  Loading  library C:\oracle\product\10.2.0\db_1\bin\orasrvm10.dll
    [main] [17:47:56:781] [Library.load:244]  Loaded library C:\oracle\product\10.2.0\db_1\bin\orasrvm10.dll from path=
    C:\oracle\product\10.2.0\db_1\bin
    [main] [17:47:56:781] [Version.isPre10i:189]  isPre10i.java: Returning FALSE
    [main] [17:47:56:781] [WindowsSystem.regKeyExists:997]  WindowsSystem.regKeyExists: mainkey= HKEY_LOCAL_MACHINE subkey = Software\Oracle\Ocr
    [main] [17:47:56:781] [WindowsSystem.getCSSConfigType:1154]  configType=null
    [main] [17:47:56:781] [Host.checkOPS:2071]  cluster existence:false
    [main] [17:47:56:781] [Host.checkOPS:2109]  Cluster installed=false
    [AWT-EventQueue-0] [17:48:8:343] [InitParamHandler.endElement:506]  CustomSGA flag: false
    [AWT-EventQueue-0] [17:48:8:343] [InitParamHandler.endElement:507]  Database Type: MULTIPURPOSE
    [AWT-EventQueue-0] [17:48:8:343] [InitParamHandler.endElement:508]  Mem Percentage: 20
    [AWT-EventQueue-0] [17:48:8:343] [InitParamHandler.endElement:526]  distributing Memory: 214640230
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:232]  IN threadID:1 group#=1
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:232]  IN threadID:1 group#=2
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:241]  Current threadID=1
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:248]  Current threadID=1 ==> redoGroups[0]=1
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:258]  vRedoGroups:[1]
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:288]  setAttribute: bExists=false
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:232]  IN threadID:1 group#=3
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:241]  Current threadID=1
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:248]  Current threadID=1 ==> redoGroups[0]=1
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:248]  Current threadID=1 ==> redoGroups[1]=2
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:258]  vRedoGroups:[1, 2]
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.setAttribute:288]  setAttribute: bExists=false
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.removeDatafile:879]  datafile: path= name=I:\oradata\{DB_UNIQUE_NAME}\sysaux01.dbf
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.removeDatafile:879]  datafile: path= name=I:\oradata\{DB_UNIQUE_NAME}\system01.dbf
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.removeDatafile:879]  datafile: path= name=I:\oradata\{DB_UNIQUE_NAME}\temp01.dbf
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.removeDatafile:879]  datafile: path= name=I:\oradata\{DB_UNIQUE_NAME}\undotbs01.dbf
    [AWT-EventQueue-0] [17:48:8:359] [StorageAttributes.removeDatafile:879]  datafile: path= name=I:\oradata\{DB_UNIQUE_NAME}\users01.dbf
    [AWT-EventQueue-0] [17:48:8:656] [DatabaseNamePage.onNameChanged:752]  m_oldGDBName = IWEGFDEV
    [AWT-EventQueue-0] [17:48:12:578] [DatabaseNamePage.onNameChanged:752]  m_oldGDBName = IWEGFDEV
    [AWT-EventQueue-0] [17:48:12:734] [OracleHome.isRacEnabled:147]  bRacOn = false
    [AWT-EventQueue-0] [17:48:12:828] [ManagementOptionsPage.initializePage:401]  Enumerating Agents
    [AWT-EventQueue-0] [17:48:31:765] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:31:765] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:31:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:48:31:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:31:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:31:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:31:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:48:31:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:48:31:796] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:48:31:796] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:48:33:468] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:33:468] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:33:468] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:33:468] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:33:468] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:33:468] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:48:34:625] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:34:625] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:34:625] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:34:625] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:34:625] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:34:921] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:34:921] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:34:921] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:34:921] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:34:921] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:234] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:234] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:234] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:234] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:234] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:48:35:828] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:48:35:843] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:48:35:859] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:48:35:859] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:48:35:859] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:48:35:859] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:48:36:546] [Verifier.processRawConfigFile:3523]  StorageType == 0
    [AWT-EventQueue-0] [17:48:36:546] [DatabaseOptionPage.doNext:224]  processRawConfigFile=false
    [AWT-EventQueue-0] [17:48:44:437] [InitParametersPage.validate:219]  InitParametersPage->validate: in SPFile condition
    [AWT-EventQueue-0] [17:48:44:437] [InitParametersPage.validate:223]  original spFileName with variables ={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:48:44:437] [Verifier.validateSPFile:4667]  The SPFILE={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:48:44:437] [NativeResult.<init>:57]  NativeResult: is0|No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition
    [AWT-EventQueue-0] [17:48:44:437] [NativeResult.<init>:65]  The status string is: 0
    [AWT-EventQueue-0] [17:48:44:437] [ClusterUtils.isRaw:743]  File "C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora" is not a raw device, "No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition".
    [AWT-EventQueue-0] [17:48:44:437] [InitParametersPage.validate:275]  InitParametersPage->validate: calling createUndoAttributes
    [AWT-EventQueue-0] [17:48:44:953] [StoragePage.selectAndExpandItem:324]  item=oracle.sysman.emSDK.client.dataComponent.dataDrivenTree.TreeParentNode[label=Storage,index=0]
    [AWT-EventQueue-0] [17:48:44:984] [StoragePage.selectAndExpandItem:333]  item.isExpanded=true
    [AWT-EventQueue-0] [17:48:44:984] [StoragePage.selectAndExpandItem:345]  selection.isSelected(item)=false
    [AWT-EventQueue-0] [17:48:51:218] [StorageAttributes.updateDatafileAttr:754]  original.name=I:\oradata\{DB_UNIQUE_NAME}\sysaux01.dbf currattr.name=c:\oradata\{DB_UNIQUE_NAME}\sysaux01.dbf
    [AWT-EventQueue-0] [17:48:51:218] [StorageAttributes.updateDatafileAttr:773]  dfAttr: path= name=c:\oradata\{DB_UNIQUE_NAME}\sysaux01.dbf
    [AWT-EventQueue-0] [17:48:51:218] [StorageAttributes.updateDatafileAttr:775]  original: path= name=I:\oradata\{DB_UNIQUE_NAME}\sysaux01.dbf
    [AWT-EventQueue-0] [17:48:51:218] [StorageAttributes.removeDatafile:879]  datafile: path= name=c:\oradata\{DB_UNIQUE_NAME}\sysaux01.dbf
    [AWT-EventQueue-0] [17:48:54:484] [StorageAttributes.updateDatafileAttr:754]  original.name=I:\oradata\{DB_UNIQUE_NAME}\system01.dbf currattr.name=c:\oradata\{DB_UNIQUE_NAME}\system01.dbf
    [AWT-EventQueue-0] [17:48:54:484] [StorageAttributes.updateDatafileAttr:773]  dfAttr: path= name=c:\oradata\{DB_UNIQUE_NAME}\system01.dbf
    [AWT-EventQueue-0] [17:48:54:500] [StorageAttributes.updateDatafileAttr:775]  original: path= name=I:\oradata\{DB_UNIQUE_NAME}\system01.dbf
    [AWT-EventQueue-0] [17:48:54:500] [StorageAttributes.removeDatafile:879]  datafile: path= name=c:\oradata\{DB_UNIQUE_NAME}\system01.dbf
    [AWT-EventQueue-0] [17:48:56:625] [StorageAttributes.updateDatafileAttr:754]  original.name=I:\oradata\{DB_UNIQUE_NAME}\temp01.dbf currattr.name=c:\oradata\{DB_UNIQUE_NAME}\temp01.dbf
    [AWT-EventQueue-0] [17:48:56:625] [StorageAttributes.updateDatafileAttr:773]  dfAttr: path= name=c:\oradata\{DB_UNIQUE_NAME}\temp01.dbf
    [AWT-EventQueue-0] [17:48:56:625] [StorageAttributes.updateDatafileAttr:775]  original: path= name=I:\oradata\{DB_UNIQUE_NAME}\temp01.dbf
    [AWT-EventQueue-0] [17:48:56:625] [StorageAttributes.removeDatafile:879]  datafile: path= name=c:\oradata\{DB_UNIQUE_NAME}\temp01.dbf
    [AWT-EventQueue-0] [17:48:59:46] [StorageAttributes.updateDatafileAttr:754]  original.name=I:\oradata\{DB_UNIQUE_NAME}\undotbs01.dbf currattr.name=c:\oradata\{DB_UNIQUE_NAME}\undotbs01.dbf
    [AWT-EventQueue-0] [17:48:59:46] [StorageAttributes.updateDatafileAttr:773]  dfAttr: path= name=c:\oradata\{DB_UNIQUE_NAME}\undotbs01.dbf
    [AWT-EventQueue-0] [17:48:59:46] [StorageAttributes.updateDatafileAttr:775]  original: path= name=I:\oradata\{DB_UNIQUE_NAME}\undotbs01.dbf
    [AWT-EventQueue-0] [17:48:59:46] [StorageAttributes.removeDatafile:879]  datafile: path= name=c:\oradata\{DB_UNIQUE_NAME}\undotbs01.dbf
    [AWT-EventQueue-0] [17:49:1:421] [StorageAttributes.updateDatafileAttr:754]  original.name=I:\oradata\{DB_UNIQUE_NAME}\users01.dbf currattr.name=c:\oradata\{DB_UNIQUE_NAME}\users01.dbf
    [AWT-EventQueue-0] [17:49:1:421] [StorageAttributes.updateDatafileAttr:773]  dfAttr: path= name=c:\oradata\{DB_UNIQUE_NAME}\users01.dbf
    [AWT-EventQueue-0] [17:49:1:421] [StorageAttributes.updateDatafileAttr:775]  original: path= name=I:\oradata\{DB_UNIQUE_NAME}\users01.dbf
    [AWT-EventQueue-0] [17:49:1:421] [StorageAttributes.removeDatafile:879]  datafile: path= name=c:\oradata\{DB_UNIQUE_NAME}\users01.dbf
    [AWT-EventQueue-0] [17:49:3:703] [StoragePage.validate:925]  StoragePage: In validate function
    [AWT-EventQueue-0] [17:49:3:750] [Verifier.validateTemplate:1629]  StorageType == 0
    [AWT-EventQueue-0] [17:49:3:750] [CreationOptionPage.setSaveTemplateVisible:464]  Setting save template visible = true
    [AWT-EventQueue-0] [17:49:4:640] [DBCAWizard.onFinish:1139]  m_bFinishClicked: false
    [TaskScheduler timer] [17:49:4:640] [OracleHome.isRacEnabled:147]  bRacOn = false
    [TaskScheduler timer] [17:49:4:656] [Verifier.validateTemplate:1629]  StorageType == 0
    [TaskScheduler timer] [17:49:4:671] [Verifier.calculateDatafilePathsAndSizes:2791]  canonicalPath=C:\
    [TaskScheduler timer] [17:49:4:671] [Verifier.calculateDatafilePathsAndSizes:2791]  canonicalPath=C:\
    [TaskScheduler timer] [17:49:4:671] [Verifier.calculateDatafilePathsAndSizes:2791]  canonicalPath=C:\
    [TaskScheduler timer] [17:49:4:671] [Verifier.calculateDatafilePathsAndSizes:2791]  canonicalPath=C:\
    [TaskScheduler timer] [17:49:4:671] [Verifier.calculateDatafilePathsAndSizes:2791]  canonicalPath=C:\
    [AWT-EventQueue-0] [17:49:11:453] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:13:468] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:14:593] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:17:718] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:18:15] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:18:359] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:18:578] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:18:812] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:19:593] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:20:546] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:22:125] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:22:328] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:22:515] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:22:703] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:22:875] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:23:31] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:23:203] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:23:359] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:23:796] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:23:984] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:24:171] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:24:343] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:24:921] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:25:78] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:25:234] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:25:375] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:25:500] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:43:921] [StoragePage.validate:925]  StoragePage: In validate function
    [AWT-EventQueue-0] [17:49:43:921] [Verifier.validateTemplate:1629]  StorageType == 0
    [AWT-EventQueue-0] [17:49:43:921] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:46:390] [StoragePage.validate:925]  StoragePage: In validate function
    [AWT-EventQueue-0] [17:49:46:390] [Verifier.validateTemplate:1629]  StorageType == 0
    [AWT-EventQueue-0] [17:49:47:296] [InitParametersPage.validate:219]  InitParametersPage->validate: in SPFile condition
    [AWT-EventQueue-0] [17:49:47:296] [InitParametersPage.validate:223]  original spFileName with variables ={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:49:47:296] [Verifier.validateSPFile:4667]  The SPFILE={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:49:47:296] [NativeResult.<init>:57]  NativeResult: is0|No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition
    [AWT-EventQueue-0] [17:49:47:296] [NativeResult.<init>:65]  The status string is: 0
    [AWT-EventQueue-0] [17:49:47:296] [ClusterUtils.isRaw:743]  File "C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora" is not a raw device, "No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition".
    [AWT-EventQueue-0] [17:49:47:296] [InitParametersPage.validate:275]  InitParametersPage->validate: calling createUndoAttributes
    [AWT-EventQueue-0] [17:49:47:296] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:48:296] [InitParametersPage.validate:219]  InitParametersPage->validate: in SPFile condition
    [AWT-EventQueue-0] [17:49:48:296] [InitParametersPage.validate:223]  original spFileName with variables ={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:49:48:296] [Verifier.validateSPFile:4667]  The SPFILE={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:49:48:296] [NativeResult.<init>:57]  NativeResult: is0|No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition
    [AWT-EventQueue-0] [17:49:48:296] [NativeResult.<init>:65]  The status string is: 0
    [AWT-EventQueue-0] [17:49:48:296] [ClusterUtils.isRaw:743]  File "C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora" is not a raw device, "No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition".
    [AWT-EventQueue-0] [17:49:48:296] [InitParametersPage.validate:275]  InitParametersPage->validate: calling createUndoAttributes
    [AWT-EventQueue-0] [17:49:48:828] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:49:50:609] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:49:51:781] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:53:734] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:53:734] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:53:734] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:53:734] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:53:734] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:53:734] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:49:54:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:54:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:49:54:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:54:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:781] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:49:54:796] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:49:54:796] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:49:56:484] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:58:312] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:49:59:765] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:0:984] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible CWMLITE
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ISEARCH
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ORACLE_TEXT
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible ODM
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible OMS
    [AWT-EventQueue-0] [17:50:6:656] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SAMPLE_SCHEMA
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible SPATIAL
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible IMEDIA
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible JSERVER
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible XDB_PROTOCOLS
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible EM_REPOSITORY
    [AWT-EventQueue-0] [17:50:6:671] [StepManager.areDependentsFeasible:517]  StepManager ->areDependentsFeasible NET_EXTENSIONS
    [AWT-EventQueue-0] [17:50:6:671] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:50:6:671] [DBOptionsTabPage$SelectionHelper.loadTableSpaces:657]  DB has temp tbs:=TEMP undo tbs:=UNDOTBS1
    [AWT-EventQueue-0] [17:50:8:687] [Verifier.processRawConfigFile:3523]  StorageType == 0
    [AWT-EventQueue-0] [17:50:8:687] [DatabaseOptionPage.doNext:224]  processRawConfigFile=false
    [AWT-EventQueue-0] [17:50:9:796] [InitParametersPage.validate:219]  InitParametersPage->validate: in SPFile condition
    [AWT-EventQueue-0] [17:50:9:796] [InitParametersPage.validate:223]  original spFileName with variables ={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:50:9:796] [Verifier.validateSPFile:4667]  The SPFILE={ORACLE_HOME}\database\spfile{SID}.ora
    [AWT-EventQueue-0] [17:50:9:796] [NativeResult.<init>:57]  NativeResult: is0|No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition
    [AWT-EventQueue-0] [17:50:9:796] [NativeResult.<init>:65]  The status string is: 0
    [AWT-EventQueue-0] [17:50:9:796] [ClusterUtils.isRaw:743]  File "C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora" is not a raw device, "No such device or address, C:\oracle\product\10.2.0\db_1\database\spfileIWEGFDEV.ora does not point to a logical partition".
    [AWT-EventQueue-0] [17:50:9:796] [InitParametersPage.validate:275]  InitParametersPage->validate: calling createUndoAttributes
    [AWT-EventQueue-0] [17:50:9:796] [StoragePage.selectAndExpandItem:324]  item=oracle.sysman.emSDK.client.dataComponent.dataDrivenTree.TreeParentNode[label=Storage,index=0]
    [AWT-EventQueue-0] [17:50:9:859] [StoragePage.selectAndExpandItem:333]  item.isExpanded=true
    [AWT-EventQueue-0] [17:50:9:859] [StoragePage.selectAndExpandItem:345]  selection.isSelected(item)=false
    [AWT-EventQueue-0] [17:50:14:15] [StoragePage.validate:925]  StoragePage: In validate function
    [AWT-EventQueue-0] [17:50:14:15] [Verifier.validateTemplate:1629]  StorageType == 0
    [AWT-EventQueue-0] [17:50:14:15] [CreationOptionPage.setSaveTemplateVisible:464]  Setting save template visible = true
    [AWT-EventQueue-0] [17:50:15:125] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:15:562] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:15:796] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:16:15] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:16:250] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:16:453] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:16:656] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:16:875] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:17:62] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:17:234] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:17:437] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:17:625] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:17:828] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:18:15] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:18:187] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:18:359] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:18:515] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:18:671] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:18:828] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:19:0] [DBCAWizard.onFinish:1139]  m_bFinishClicked: true
    [AWT-EventQueue-0] [17:50:31:671] [DBCAWizard.onFinish:1139]  m_bFinishClicked: trueApparently it is the Wizard log, and it indicates that I have pressed the finished button several times.

  • Error  when creating data base using Database Configuration Assistant

    Hi!
    I have installed Oracle 9i release 2 in Windows Xp, I want to create a db from the Database Configuration Assistant but they appear the following errors:
    ORA 01034
    ORA 01501
    ORA1109
    I press the button to ignore but they continue appearing.. when the process arrives the 12% they stopped.... When i installed the Oracle appeared a pair of errors but when i press the Ignore button the process continued and finish satisfactorily....
    Any Suggestion???
    Thanks...
    Tere Blanco

    Oracle error description
    ORA-01034 ORACLE not available
    Cause: Oracle was not started.
    Possible causes include the following:
    1) The SGA requires more space than was allocated for it.
    2) The operating-system variable pointing to the instance is improperly defined.
    Action: Refer to accompanying messages for possible causes and correct the problem mentioned in the other messages. If Oracle has been initialized, then on some operating systems, verify that Oracle was linked correctly. See the platform-specific Oracle documentation.
    -aijaz

  • Install error - database configuration assistant

    HI. During install a 10g oracle database, the universal installer prompt me that one of required component , DATABASE CONFIGURATION ASSISTANT, is not properly installed. The first warning has been submitted with popup that reported " ORA - 22288 , file or LOB operation filed ......
    My current OS is Windows 2000 Advanced Server SP4.
    Please , help me.
    Tanks!

    HI, tanks for your interest!
    I have tried to retry the "reccomended" component installation ( dabase configuration assistant) but the result have been the same!
    follow an extract of log file...
    Il listener è stato avviato alla porta:1521
    Avvio listener di Oracle Net:
    Controllo del listener in esecuzione:
    F:\oracle\product\10.2.0\db_1\bin\lsnrctl start LISTENER
    Controllo del listener completato.
    Avvio del listener non riuscito. Il listener può essere già in esecuzione.
    Configurazione del listener completata.
    Configurazione della denominazione locale predefinita completata.
    Configurazione di Oracle Net Services completata. Il codice di uscita è 0
    INFO: Configuration assistant "Oracle Net Configuration Assistant" succeeded
    INFO: Command = C:\WINNT\system32\cmd /c call F:\oracle\product\10.2.0\db_1/bin/dbca.bat -progress_only -createDatabase -templateName General_Purpose.dbc -gdbName orcl -sid orcl -sysPassword 05837d92bc1e15c52e043487527ddab44d -systemPassword 05837d92bc1e15c52e043487527ddab44d -sysmanPassword 05f5436fbcdeda00ccb795c17e87b43fae -dbsnmpPassword 05f5436fbcdeda00ccb795c17e87b43fae -emConfiguration LOCAL -datafileJarLocation F:\oracle\product\10.2.0\db_1\assistants\dbca\templates -datafileDestination F:\oracle\product\10.2.0\oradata -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords true -sampleSchema true -recoveryAreaDestination NO_VALUE
    Command = C:\WINNT\system32\cmd /c call F:\oracle\product\10.2.0\db_1/bin/dbca.bat has failed
    INFO: Configuration assistant "Oracle Database Configuration Assistant" failed
    *** Starting OUICA ***
    Oracle Home set to F:\oracle\product\10.2.0\db_1
    Configuration directory is set to F:\oracle\product\10.2.0\db_1\cfgtoollogs. All xml files under the directory will be processed
    INFO: The "F:\oracle\product\10.2.0\db_1\cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    SEVERE: OUI-25031:Some of the configuration assistants failed. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK
    INFO: Starting to execute configuration assistants ......
    tanks

  • Oracle 11g oui-25031 error (oracle database configuration assistant)

    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/oracle/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled.
    This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any)
    before executing the same.
    The "/oracle/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script
    ->/oracle/app/oracle/product/11.1.0/db_1/oui/bin/runConfig.sh ORACLE_HOME=/oracle/app/oracle/product/11.1.0/db_1 MODE=perform ACTION=configure RERUN=false
    runConfig.sh ORACLE_HOME=/oracle/app/oracle/product/11.1.0/db_1 MODE=perform ACTION=configure RERUN=false
    ->
    oracle.sysman.oii.oiii.OiiiInventoryDoesNotExistException: 인벤토리 포인터 위치 /etc/oraInst.loc을(를) 읽을 수 없거나 존재하지 않습니다.
    at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiIns tallAreaControl.java:1717)
    at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicS tandardInventorySession.java:292)
    at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicS tandardInventorySession.java:231)
    at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicS tandardInventorySession.java:180)
    at oracle.sysman.oii.oiic.OiicRunConfig.loadInventory(OiicRunConfig.java :278)
    at oracle.sysman.oii.oiic.OiicRunConfig.main(OiicRunConfig.java:1004)
    Exception in thread "main" java.lang.NullPointerException
    at oracle.sysman.oii.oiic.OiicRunConfig.getArgumentList(OiicRunConfig.ja va:519)
    at oracle.sysman.oii.oiic.OiicRunConfig.main(OiicRunConfig.java:1007)
    hi!
    i install oracle database 11g 1R .
    error occur during installing oracle database.
    please solve it!!

    OS version is fedora 3.
    uname -a: Linux db9.sangjicom.ac.kr 2.6.9-1.667 #1 Tue Nov 2 14:41:25 EST 2004 i686 i686 i386 GNU/Linux
    ORACLE_HOME is registred ORACLE_HOME=/oracle/app/oracle/product/11.1.0/db_1 in bash_profile.
    Inventory is /oracle/app/Inventory.

  • DB 12c: Error - Database Configuration Assistance

    Hi,
    I'm trying to install the Database 12c in windows 8 pro.
    Installs okay to give error setup Database Configuration Assistance; Error in Process: "E:\app\....\dbhome_1\perl\bin\perl.exe"
    How to solve this problem?
    Regards

    Hi,
    Even i got the same error. when i unchecked the option "Create as Container Database" then database has been created without any error.
    But if we check the above option still we will get the error related to perl.exe
    Someone from Oracle team need to help with fixing issue related to perl.exe
    Regards,
    Pradeep

  • Problems with Database Configuration Assistant - Error in Process

    Hello guys,
    I'm getting this error when i try to create a new Database with the Database Configuration Assistant:
    Error in Process: E:\ORACLE\product\11.2.0\dbhome_1\bin\orapwd.exe
    Unable to find error file %ORACLE_HOME%\RDBMS\opw<lang>.msb
    What should I do in this case? Any idea?
    Thanks

    Please re-check the ORACLE_HOME variable and restart the process. This will resolve your issue.

  • ORA-12514 Error in remote office

    I installed and created a 10g (rel2) database while connected to my office's network. Because my company uses DHCP I had to create a loopback connector and give it a fixed IP address. Everything went as expected.
    Now I've travelled to a remote location and, even though the Oracle instance is on my laptop, I'm getting an ORA-12514 error (TNS:listener does not currently know of service requested in connect string). I'm using Windows XP Pro and this is what I get from doing a lsnrctl status:
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 14-JAN-2008 14:29:25
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    The command completed successfully
    This is my listener.ora file:
    # listener.ora Network Configuration File: C:\Ora10gHomes\product\10.2.0\db_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\Ora10gHomes\product\10.2.0\db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = llsmith-069940.cgifederal.com)(PORT = 1521))
    As you can see, it isn't creating a service for anything other than the EXTPROC entry. I tried doing a TNSPING on the SID (LAKOTA) and got this:
    TNS Ping Utility for 32-bit Windows: Version 10.1.0.4.2 - Production on 14-JAN-2
    008 14:24:50
    Copyright (c) 1997, 2003, Oracle. All rights reserved.
    Used parameter files:
    C:\Ora10gHomes\DevSuiteHome\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = llsmith-069940.cgifederal.com)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = lakota.cgifederal.com)))
    OK (40 msec)
    So now I'm stumped. I've tried stopping and starting the listener, but nothing changed. Is it because I'm physically connected to a different network than when I installed the software and created the database? If that's the case, is there a work-around because I'm going to be travelling a LOT more than I'm going to be in the home office and I need access to my oracle instance no matter where I am or what backbone I'm connected to. Any and all assistance gratefully appreciated.
    Leigh Smith

    You are trying to connect to a service named: lakota.cgifederal.com but from the output of the listener status it can be seen that the instance has not yet been registered against the listener. Your listener is at 1521 port, this means that can be self registered against it. Just make sure your instance is started.
    There is a command to force instance registration, it is from the sql command prompt connected with either sys or system issue: alter system register Automatic instance registration should take less than a minute, if after the time has expired and issuing the command don't work, then if required, instead of relying on automatic instance registration, you can change it to be manually configured. You can do this from the network manager.
    ~ Madrid

  • Suddenly getting ORA-12514 error Oracle 11gr2

    I installed Oracle 11g r2 fine, had 2 databases (se3 and mydb, both have db_domain .orcl i.e. mydb.orcl and se3.orcl) running on it fine till yesterday. but suddenly im getting ORA-12514 error (TNS:listener doesn't know of service requested in connect descriptor)..
    My tnsnames.ora file:
    # tnsnames.ora Network Configuration File: G:\oracledb\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    LISTENER_MYDB =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    MYDB =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = mydb.orcl)
    SE3 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = se3.orcl)
    LISTENER_SE3 =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    and my listener.ora file is as follows:
    # listener.ora Network Configuration File: G:\oracledb\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:G:\oracledb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = G:\oracledb
    * i have both of databases up and running(confirmed through administration assistant), the listener is up.. im able to execute "tnsping mydb/se3".. i'm not able to connect to either one of them through sqlplus/sql developer.. The result of "lsnrctl service" is as follows:
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
      TNS-00511: No listener
       32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0
             LOCAL SERVER
    The command completed successfully
    PLEASE HELP ME FRIENDS!! I HAVE A PROJECT DUE IN EARLY OCTOBER

    Hi,
    Instead of this:
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:G:\oracledb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    have the following in your listener file
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:G:\oracledb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
       (SID_DESC =
          (SID_NAME = mydb)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
        (SID_DESC =
          (SID_NAME = se3)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)   
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    Also, dont have 'localhost' in your listener.ora file, provide the actual IP or hostanme. NEVER YOU should have
    localhost.
    Restart listener and try.
    Thanks &
    Best Regard,

  • Problem using template in database configuration assistant Oracle 10g

    Hi,
    I created a database using the database configuration assistant for Oracle 10g on a Windows Server 2003 box. The database I created worked perfectly, and I had saved it as a template so I could save some time when creating similar databases (which I have to do on occasion)
    When I try to use the template though, I get an error (at about 4% through the database creation) saying:
    ORA-01501: CREATE DATABASE failed
    ORA-09314: sltln: error translating logical name
    I'm creating this new database on the same server as the one I created my previous database on and NOTHING has changed on it, I did this just minutes apart and can duplicate it at will (just try and use a template)
    Heres the template file contents (KM1.dbt)
    <DatabaseTemplate name="KM1" description="" version="10.1.0.2.0">
    <CommonAttributes>
    <option name="ISEARCH" value="false"/>
    <option name="OMS" value="false"/>
    <option name="JSERVER" value="false"/>
    <option name="SPATIAL" value="false"/>
    <option name="ODM" value="false">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="IMEDIA" value="false"/>
    <option name="XDB_PROTOCOLS" value="false">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="ORACLE_TEXT" value="false">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="SAMPLE_SCHEMA" value="false"/>
    <option name="CWMLITE" value="false">
    <tablespace id="SYSAUX"/>
    </option>
    <option name="EM_REPOSITORY" value="true">
    <tablespace id="SYSAUX"/>
    </option>
    </CommonAttributes>
    <Variables/>
    <CustomScripts Execute="false"/>
    <InitParamAttributes>
    <InitParams>
    <initParam name="O7_DICTIONARY_ACCESSIBILITY" value="TRUE"/>
    <initParam name="background_dump_dest" value="{ORACLE_BASE}\admin\{DB_UNIQUE_NAME}\bdump"/>
    <initParam name="compatible" value="10.1.0.2.0"/>
    <initParam name="core_dump_dest" value="{ORACLE_BASE}\admin\{DB_UNIQUE_NAME}\cdump"/>
    <initParam name="db_block_size" value="8" unit="KB"/>
    <initParam name="db_cache_size" value="24" unit="MB"/>
    <initParam name="db_create_file_dest" value="E:\oradata"/>
    <initParam name="db_create_online_log_dest_1" value="C:\Oradata"/>
    <initParam name="db_create_online_log_dest_2" value="D:\Oradata"/>
    <initParam name="db_create_online_log_dest_3" value="E:\Oradata"/>
    <initParam name="db_domain" value="JACOBSONCO.COM"/>
    <initParam name="db_file_multiblock_read_count" value="16"/>
    <initParam name="db_name" value="UDC7"/>
    <initParam name="db_recovery_file_dest" value="E:\UDC7\flash_recovery_area"/>
    <initParam name="db_recovery_file_dest_size" value="2048" unit="MB"/>
    <initParam name="java_pool_size" value="0" unit="MB"/>
    <initParam name="job_queue_processes" value="10"/>
    <initParam name="large_pool_size" value="8" unit="MB"/>
    <initParam name="open_cursors" value="1000"/>
    <initParam name="pga_aggregate_target" value="24" unit="MB"/>
    <initParam name="processes" value="150"/>
    <initParam name="remote_login_passwordfile" value="EXCLUSIVE"/>
    <initParam name="shared_pool_size" value="80" unit="MB"/>
    <initParam name="sort_area_size" value="65536"/>
    <initParam name="undo_management" value="AUTO"/>
    <initParam name="undo_tablespace" value="UNDOTBS1"/>
    <initParam name="user_dump_dest" value="{ORACLE_BASE}\admin\{DB_UNIQUE_NAME}\udump"/>
    </InitParams>
    <MiscParams>
    <databaseType>MULTIPURPOSE</databaseType>
    <maxUserConn>20</maxUserConn>
    <percentageMemTOSGA>40</percentageMemTOSGA>
    <customSGA>true</customSGA>
    <characterSet>WE8MSWIN1252</characterSet>
    <nationalCharacterSet>AL16UTF16</nationalCharacterSet>
    <archiveLogMode>false</archiveLogMode>
    <initParamFileName>{ORACLE_BASE}\admin\{DB_UNIQUE_NAME}\pfile\init.ora</initParamFileName>
    </MiscParams>
    <SPfile useSPFile="true">{ORACLE_HOME}\database\spfile{SID}.ora</SPfile>
    </InitParamAttributes>
    <StorageAttributes>
    <ControlfileAttributes id="Controlfile">
    <maxDatafiles>100</maxDatafiles>
    <maxLogfiles>16</maxLogfiles>
    <maxLogMembers>3</maxLogMembers>
    <maxLogHistory>1</maxLogHistory>
    <maxInstances>8</maxInstances>
    <image name="&lt;OMF_CONTROL_0>" filepath="{ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\"/>
    <image name="&lt;OMF_CONTROL_1>" filepath="{ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\"/>
    <image name="&lt;OMF_CONTROL_2>" filepath="{ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\"/>
    </ControlfileAttributes>
    <DatafileAttributes id="&lt;OMF_SNIKEB_DATAFILE_0>">
    <tablespace>SNIKEB</tablespace>
    <temporary>false</temporary>
    <online>true</online>
    <status>0</status>
    <size unit="MB">300</size>
    <reuse>false</reuse>
    <autoExtend>false</autoExtend>
    <increment unit="KB">-2</increment>
    <maxSize unit="KB">-1</maxSize>
    </DatafileAttributes>
    <DatafileAttributes id="&lt;OMF_SYSAUX_DATAFILE_0>">
    <tablespace>SYSAUX</tablespace>
    <temporary>false</temporary>
    <online>true</online>
    <status>0</status>
    <size unit="MB">120</size>
    <reuse>true</reuse>
    <autoExtend>true</autoExtend>
    <increment unit="KB">10240</increment>
    <maxSize unit="MB">-1</maxSize>
    </DatafileAttributes>
    <DatafileAttributes id="&lt;OMF_SYSTEM_DATAFILE_0>">
    <tablespace>SYSTEM</tablespace>
    <temporary>false</temporary>
    <online>true</online>
    <status>0</status>
    <size unit="MB">300</size>
    <reuse>true</reuse>
    <autoExtend>true</autoExtend>
    <increment unit="KB">10240</increment>
    <maxSize unit="MB">-1</maxSize>
    </DatafileAttributes>
    <DatafileAttributes id="&lt;OMF_TEMP_DATAFILE_0>">
    <tablespace>TEMP</tablespace>
    <temporary>false</temporary>
    <online>true</online>
    <status>0</status>
    <size unit="MB">20</size>
    <reuse>true</reuse>
    <autoExtend>true</autoExtend>
    <increment unit="KB">640</increment>
    <maxSize unit="MB">-1</maxSize>
    </DatafileAttributes>
    <DatafileAttributes id="&lt;OMF_UNDOTBS1_DATAFILE_0>">
    <tablespace>UNDOTBS1</tablespace>
    <temporary>false</temporary>
    <online>true</online>
    <status>0</status>
    <size unit="MB">200</size>
    <reuse>true</reuse>
    <autoExtend>true</autoExtend>
    <increment unit="KB">5120</increment>
    <maxSize unit="MB">-1</maxSize>
    </DatafileAttributes>
    <DatafileAttributes id="&lt;OMF_USERS_DATAFILE_0>">
    <tablespace>USER_DATA</tablespace>
    <temporary>false</temporary>
    <online>true</online>
    <status>0</status>
    <size unit="MB">5</size>
    <reuse>true</reuse>
    <autoExtend>true</autoExtend>
    <increment unit="KB">1280</increment>
    <maxSize unit="MB">-1</maxSize>
    </DatafileAttributes>
    <TablespaceAttributes id="SNIKEB">
    <online>true</online>
    <offlineMode>1</offlineMode>
    <readOnly>false</readOnly>
    <temporary>false</temporary>
    <defaultTemp>false</defaultTemp>
    <undo>false</undo>
    <local>true</local>
    <blockSize>-1</blockSize>
    <allocation>1</allocation>
    <uniAllocSize unit="KB">-1</uniAllocSize>
    <initSize unit="KB">-1</initSize>
    <increment unit="KB">-1</increment>
    <incrementPercent>-1</incrementPercent>
    <minExtends>-1</minExtends>
    <maxExtends>-2</maxExtends>
    <minExtendsSize unit="KB">-1</minExtendsSize>
    <logging>true</logging>
    <recoverable>false</recoverable>
    <maxFreeSpace>0</maxFreeSpace>
    <autoSegmentMgmt>true</autoSegmentMgmt>
    <datafilesList>
    <TablespaceDatafileAttributes id="&lt;OMF_SNIKEB_DATAFILE_0>">
    <id>1</id>
    </TablespaceDatafileAttributes>
    </datafilesList>
    </TablespaceAttributes>
    <TablespaceAttributes id="SYSAUX">
    <online>true</online>
    <offlineMode>1</offlineMode>
    <readOnly>false</readOnly>
    <temporary>false</temporary>
    <defaultTemp>false</defaultTemp>
    <undo>false</undo>
    <local>true</local>
    <blockSize>-1</blockSize>
    <allocation>1</allocation>
    <uniAllocSize unit="KB">-1</uniAllocSize>
    <initSize unit="KB">64</initSize>
    <increment unit="KB">64</increment>
    <incrementPercent>50</incrementPercent>
    <minExtends>1</minExtends>
    <maxExtends>4096</maxExtends>
    <minExtendsSize unit="KB">64</minExtendsSize>
    <logging>true</logging>
    <recoverable>false</recoverable>
    <maxFreeSpace>0</maxFreeSpace>
    <autoSegmentMgmt>true</autoSegmentMgmt>
    <datafilesList>
    <TablespaceDatafileAttributes id="&lt;OMF_SYSAUX_DATAFILE_0>">
    <id>-1</id>
    </TablespaceDatafileAttributes>
    </datafilesList>
    </TablespaceAttributes>
    <TablespaceAttributes id="SYSTEM">
    <online>true</online>
    <offlineMode>1</offlineMode>
    <readOnly>false</readOnly>
    <temporary>false</temporary>
    <defaultTemp>false</defaultTemp>
    <undo>false</undo>
    <local>true</local>
    <blockSize>-1</blockSize>
    <allocation>3</allocation>
    <uniAllocSize unit="KB">-1</uniAllocSize>
    <initSize unit="KB">64</initSize>
    <increment unit="KB">64</increment>
    <incrementPercent>50</incrementPercent>
    <minExtends>1</minExtends>
    <maxExtends>-1</maxExtends>
    <minExtendsSize unit="KB">64</minExtendsSize>
    <logging>true</logging>
    <recoverable>false</recoverable>
    <maxFreeSpace>0</maxFreeSpace>
    <autoSegmentMgmt>true</autoSegmentMgmt>
    <datafilesList>
    <TablespaceDatafileAttributes id="&lt;OMF_SYSTEM_DATAFILE_0>">
    <id>-1</id>
    </TablespaceDatafileAttributes>
    </datafilesList>
    </TablespaceAttributes>
    <TablespaceAttributes id="TEMP">
    <online>true</online>
    <offlineMode>1</offlineMode>
    <readOnly>false</readOnly>
    <temporary>true</temporary>
    <defaultTemp>true</defaultTemp>
    <undo>false</undo>
    <local>true</local>
    <blockSize>-1</blockSize>
    <allocation>1</allocation>
    <uniAllocSize unit="KB">-1</uniAllocSize>
    <initSize unit="KB">64</initSize>
    <increment unit="KB">64</increment>
    <incrementPercent>0</incrementPercent>
    <minExtends>1</minExtends>
    <maxExtends>0</maxExtends>
    <minExtendsSize unit="KB">64</minExtendsSize>
    <logging>true</logging>
    <recoverable>false</recoverable>
    <maxFreeSpace>0</maxFreeSpace>
    <autoSegmentMgmt>true</autoSegmentMgmt>
    <datafilesList>
    <TablespaceDatafileAttributes id="&lt;OMF_TEMP_DATAFILE_0>">
    <id>-1</id>
    </TablespaceDatafileAttributes>
    </datafilesList>
    </TablespaceAttributes>
    <TablespaceAttributes id="UNDOTBS1">
    <online>true</online>
    <offlineMode>1</offlineMode>
    <readOnly>false</readOnly>
    <temporary>false</temporary>
    <defaultTemp>false</defaultTemp>
    <undo>true</undo>
    <local>true</local>
    <blockSize>-1</blockSize>
    <allocation>1</allocation>
    <uniAllocSize unit="KB">-1</uniAllocSize>
    <initSize unit="KB">512</initSize>
    <increment unit="KB">512</increment>
    <incrementPercent>50</incrementPercent>
    <minExtends>8</minExtends>
    <maxExtends>4096</maxExtends>
    <minExtendsSize unit="KB">512</minExtendsSize>
    <logging>true</logging>
    <recoverable>false</recoverable>
    <maxFreeSpace>0</maxFreeSpace>
    <autoSegmentMgmt>true</autoSegmentMgmt>
    <datafilesList>
    <TablespaceDatafileAttributes id="&lt;OMF_UNDOTBS1_DATAFILE_0>">
    <id>-1</id>
    </TablespaceDatafileAttributes>
    </datafilesList>
    </TablespaceAttributes>
    <TablespaceAttributes id="USER_DATA">
    <online>true</online>
    <offlineMode>1</offlineMode>
    <readOnly>false</readOnly>
    <temporary>false</temporary>
    <defaultTemp>false</defaultTemp>
    <undo>false</undo>
    <local>true</local>
    <blockSize>-1</blockSize>
    <allocation>1</allocation>
    <uniAllocSize unit="KB">-1</uniAllocSize>
    <initSize unit="KB">128</initSize>
    <increment unit="KB">128</increment>
    <incrementPercent>0</incrementPercent>
    <minExtends>1</minExtends>
    <maxExtends>4096</maxExtends>
    <minExtendsSize unit="KB">128</minExtendsSize>
    <logging>true</logging>
    <recoverable>false</recoverable>
    <maxFreeSpace>0</maxFreeSpace>
    <autoSegmentMgmt>true</autoSegmentMgmt>
    <datafilesList>
    <TablespaceDatafileAttributes id="&lt;OMF_USERS_DATAFILE_0>">
    <id>-1</id>
    </TablespaceDatafileAttributes>
    </datafilesList>
    </TablespaceAttributes>
    <RedoLogGroupAttributes id="1">
    <reuse>false</reuse>
    <fileSize unit="KB">10240</fileSize>
    <Thread>1</Thread>
    <member ordinal="0" memberName="OMF_1_REDOLOG_MEMBER_0" filepath="{ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\"/>
    </RedoLogGroupAttributes>
    <RedoLogGroupAttributes id="2">
    <reuse>false</reuse>
    <fileSize unit="KB">10240</fileSize>
    <Thread>1</Thread>
    <member ordinal="0" memberName="OMF_2_REDOLOG_MEMBER_0" filepath="{ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\"/>
    </RedoLogGroupAttributes>
    <RedoLogGroupAttributes id="3">
    <reuse>false</reuse>
    <fileSize unit="KB">10240</fileSize>
    <Thread>1</Thread>
    <member ordinal="0" memberName="OMF_3_REDOLOG_MEMBER_0" filepath="{ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\"/>
    </RedoLogGroupAttributes>
    </StorageAttributes>
    </DatabaseTemplate>
    can anyone explain why I keep getting this error?
    Thanks

    Error:     ORA-9314
    Text:     sltln: error translating logical name
    Cause:     Internal buffer may have overflowed
    Action:     See OSD error accompanying this message
    Check alertlog and trace files.
    Message was edited by:
    FeNiCrC_Neil

Maybe you are looking for

  • Problem in assigning Infoobjects to Catalog using BAPI_IBOJ_CHANGE

    Hi Gurus, I am creating infoobjects using BAPI_IOBJ_CREATE and assigning the created infoobjects to a catalog using BAPI_IOBJ_CHANGE. But, while assign the info objects to a catalog, if the catalog already contains infoobjects they get unassigned, an

  • CUP- Request not picking approvers from BRF+ - 10.0

    Hi, We are on SP7 - GRC 10.0 We created the BRF+ conditions with business process and given user id as the Agent condition for approver. MSMP workflow was created with the above agent. When we create a request it is getting successfully created but n

  • Copy AP Configuration Templates-WCS 7.0.172.0

    I am wondering if anyone has seen a way to copy an AP configuration template. We have several distribution centers and the templates are essentially identical other than the Template name and the AP Group VLAN (different for each DC). We set up a new

  • Throws Core Dump for OCISessionBegin() on Linux for Oracle Client v10.2.0.2

    hi, The OCI method, OCISessionBegin() is throwing an core dump on 10g client in Linux on C++, but the same code works fine for 8i and 9i client. Core dumps for 10g Client. 10g tnsnames.ora file is same as of 9i. I just debeggued with the core and say

  • Installing two language versions of InDesign CC

    Hi, I'm working on a project that requires Japanese and English in the same document. As the English version of InDesign does not have the same level of typographical support for Asian charactors as the CJK versions, I want to know if I can install t