BC4J & JNDI Database Configuration Setting

Hallo Everybody,
My Application reads from connections.xml the jdbc connection settings,
in order to connect to the oracle database.
I don't like the fact that I have to force my Customer to edit this File by Hand for the JDBC Settings.
I would like to use a "JNDI Datasource Name" for example jdbc/MyDatabase that will evaluated
from the Applicationserver (not from bc4j interal JNDI!!!!)
In this case, the Customer can define the jdbc Connection Settings in his Applicationserver
by creating a "Resource-Reference" for a javax.sqlDataSource with the name "jdbc/MyDatabase" .
( This is also Possible in Tomcat. )
This is the usual way to configure jdbc Connections in a managed Enviroment.
How can I say to the Applicaton Module "please obtain your jdbc-connections over the datasource java/MyDataBase" ???
Is this in bc4j Framework possible ? ( note: I'm new to bc4j but not to j2ee )
Thank for any Hint,
regarts,
Manolis
(sorry for my bad english, learned it through compiler error messages ;-) )

It worked !!!
Starting from a working Projekt that gets Connections over a JDBC Configuration,
I changed then bc4j.xcfg (I had not to recompile)
to
<?xml version = '1.0' encoding = 'windows-1252'?>
<BC4JConfig>
<AppModuleConfigBag>
<AppModuleConfig name="SimpleAppModuleLocal">
<ApplicationName>com.company.AppModule</ApplicationName>
<DeployPlatform>LOCAL</DeployPlatform>
<JDBCDataSource>DataSourceDef</JDBCDataSource>
</AppModuleConfig>
</AppModuleConfigBag>
<ConnectionDefinition name="DataSourceDef">
<ENTRY name="DsName" value=<b>"java:comp/env/jdbc/MyConcectionDS"</b>/>
</ConnectionDefinition>
</BC4JConfig>
I'm using Tomcat, and my server.xml looks like :
<context name="/examples" ....>
<Resource name="jdbc/aixBOMSDS" auth="Container"
type="javax.sql.DataSource"/>
<ResourceParams name=<b>"jdbc/MyConcectionDS"</b>>
     <parameter><name>user</name><value>scott</value></parameter>
     <parameter><name>password</name><value>tiger</value></parameter>
     <parameter><name>driverClassName</name>
     <value>oracle.jdbc.driver.OracleDriver</value></parameter>
     <parameter><name>driverName</name>
     <value>jdbc:oracle:thin:@myhost:1521:mysid</value></parameter>
<parameter>
          <name>maxActive</name>
          <value>8</value>
     </parameter>
     <parameter>
          <name>maxIdle</name>
          <value>4</value>
     </parameter>
</ResourceParams>
</context>
and the web.xml in the /examples context :
<webapp>
<resource-ref>
<res-ref-name><b>jdbc/MyConcectionDS</b></res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</webapp>
thanks,
Manolis Afentakis

Similar Messages

  • How to save Database Configuration setting to a Crystal Report Instance

    Hello,
    I'm using .net c# to create and run a schedule of a crystal report.
    I'm able to connect to BOE and succesffuly create the schedule instance and pass the parameters. but it's failing to run because I'm not providing it with the Database Logon credentials.
    I know there is a way to set the database confiuration on the report in CMC, but we don't want to do that so we can have a trail of who ran the report. We want to pass that through code when scheduling an instance. Can someone tell me how to do so.
    Thanks!

    ceReportObjects = ceInfoStore.Query(sQuery);
    //check for returned reports
    if(ceReportObjects.Count > 0)
         ceReportObject = ceReportObjects[1];
         ceReport = (Report)ceReportObject;
         //grab the report logons
         dbLogons = ceReport.ReportLogons;
         dbLogon = dbLogons[1];
         //set custom values
         //** NOTE: **
         //The easiest way to determine the proper custom logon values is to
         //successfully set custom logon values through the CMC first, then
         //transpose those values to this application
         dbLogon.UseOriginalDataSource = false;
         dbLogon.CustomDatabaseDLLName = "crdb_ado.dll";
         dbLogon.CustomServerName = "servername";
         dbLogon.CustomDatabaseName = "database";
         dbLogon.CustomUserName = "username";
         dbLogon.CustomPassword = "password";
         dbLogon.TableLocationPrefixes[1].MappedTablePrefix = "DatabaseName.dbo.";
         dbLogon.TableLocationPrefixes[1].UseMappedTablePrefix = true;
         //Create an interface to the scheduling options for the report.
         SchedulingInfo ceSchedulingInfo;
         ceSchedulingInfo = ceReport.SchedulingInfo;
         //run the report right now
         ceSchedulingInfo.RightNow = true;
         //run the report once only
         ceSchedulingInfo.Type = CeScheduleType.ceScheduleTypeOnce;
         //schedule report
         ceInfoStore.Schedule(ceReportObjects);
    Taken from a sample contained [here|https://smpdl.sap-ag.de/~sapidb/012002523100005921432008E/bexi_csharp_smpl.zip]

  • BC4J and JNDI DataSource Configuration

    Hi,
    I need help in making the BC4J use a DataSource for creating connections. Could you anyone tell me step by step instructions to do it?
    I have created a Database Connection using JDBC for creating a BC4J App Module, View Objects etc.
    Then I created a Business Component Package by using the wizard. Everything worked fine till now. But I was to use a connection pool that is created in my App Server which happens to be a WebLogic 7.0 App Server. I have created a JDBCConnection pool and a JDBCDataSource in the App Server. The configuration for it is as follows in the weblogic configuration file.
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    MaxCapacity="5" Name="OracleConnectionPool"
    Password="{3DES}n51DlVgPmmQ="
    Properties="user=empac;dll=ocijdbc9;protocol=oci"
    Targets="myserver" URL="jdbc:oracle:oci:@DB921C"/>
    <JDBCDataSource JNDIName="OCIDataSource" Name="OCIDataSource"
    PoolName="OracleConnectionPool" Targets="myserver"/>
    I wanted to edit the "Configurations" to specify the JDBC DataSource. When I saved the configuration for the App Module this is how my bc4j.xcfg looks.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig>
    <AppModuleConfigBag>
    <AppModuleConfig name="BuyerModuleLocal">
    <java.naming.security.principal>system</java.naming.security.principal>
    <DeployPlatform>LOCAL</DeployPlatform>
    <jbo.TypeMapEntries>Java</jbo.TypeMapEntries>
    <JDBCDataSource>OCIDataSource</JDBCDataSource>
    <jbo.project>BC4JTry</jbo.project>
    <AppModuleJndiName>com.explore.bc4j.BuyerModule</AppModuleJndiName>
    <ApplicationName>com.explore.bc4j.BuyerModule</ApplicationName>
    <java.naming.security.credentials>security</java.naming.security.credentials>
    </AppModuleConfig>
    </AppModuleConfigBag>
    <ConnectionDefinition name="DB921C">
    <ENTRY name="JDBC_PORT" value="1521"/>
    <ENTRY name="ConnectionType" value="JDBC"/>
    <ENTRY name="HOSTNAME" value="joshua"/>
    <ENTRY name="user" value="empac"/>
    <ENTRY name="ConnectionName" value="DB921C"/>
    <ENTRY name="SID" value="DB921C"/>
    <ENTRY name="JdbcDriver" value="oracle.jdbc.driver.OracleDriver"/>
    <ENTRY name="password" value="empac"/>
    <ENTRY name="ORACLE_JDBC_TYPE" value="thin"/>
    <ENTRY name="DeployPassword" value="true"/>
    </ConnectionDefinition>
    </BC4JConfig>
    When I tried to run a testClient which uses the App Module it is failing giving me an exception saying could not lookup for the DataSource. In one of the detailed error messages, I got this error.
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    I checked the "Configurations" window and it was having
    "oracle.jbo.common.JboInitialContextFactory" for the property "java.naming.factory.initial".
    Could anyone tell me how to solve this issue. I did read the BC4J & JNDI Datasource configuration thread in the same forum and unfortunately that did not help.
    Krish

    What does you test client code look like and can you give us the complete stack trace.
    Dhiraj

  • Configuration setting that needs to be changed to allow flexibility copy and to paste formatted text

    what is the configuration setting in Contribute that needs to be changed to allow me flexibility copy and to paste formatted text?
    Example I am unable to copy and paste formatted text within contribute and the line that is represented under the heading below
    Research Analysis
    This is the  research and analysis page. The most recent analysis for all companies listed on the

    I'm not familiar with 'styled text'- which does not mean much other than it's on a very long list of things I don't know. But I do know you can cut several steps out here:
    If your script works so far then you can clean it up:
    tell application "FileMaker Developer"
    open "MacintoshHD:Users:stuart:Desktop:Practice.fp7"
    set mytext to record 2 of table 1 of database 1 as styled text
    end tell
    tell application "Microsoft Word"
    activate
    set myRange to create range active document start 0 end 0
    insert text (mytext) at myRange
    end tell
    Also try:
    set mytext to contents of record 2 of table 1 of database 1 as styled text
    Reese

  • 8.1.5 Install Problem: Database Configuration Assistant

    I have problems installing Oracle 8.1.5 on Linux.
    On the "Configuration tools" screen, I get the following
    error for the 'Oracle Database Configuration Assistant':
    "A required command line argument is missing"
    The installation claims the error is not critical.
    When I try to access the database with SQL*Plus and the default
    SYS/CHANGE_ME_ON_INSTALL login, I get the following error:
    ORA01033: Oracle intialization or shutdown in progress.
    I cannot start or stop the database.
    When I use "connect internal" in srvmgr, and try to do "startup",
    I get "insufficient privileges".
    When I use "connect SYSTEM/CHANGE_ME_ON_INSTALL", I get ORA01033
    again.
    My system configuration:
    RedHat 6.0
    2x Pentium II 266
    192 MB RAM
    Java JRE 1.6.5
    Kernel 2.2.10
    Hints etc. appreciated.
    null

    I have exactly the same setup (ie 2.2.10 etc) with
    exactly the same error message on install. In fact
    as far as I can tell no database was created because
    of this error. I run the "dbassist" sepeartely after the
    install and I get :
    " JNLS Excetion:oracle.....
    Unable to find any National Character Sets.
    Please Check your Oracle Installation"
    This is a stock redhat 6.0 install with the addition
    of the redhat errata updates(ie enlightenment-0.15.5-36
    , X, kde etc) and kernel 2.2.10.
    Yes logged in as the "oracle" user which also has group
    dba priv.
    Michael (guest) wrote:
    : The default password for sys is change_on_install, not
    : change_me_on_install, although a regular "connect internal"
    : should still work regardless (it won't for future versions, but
    : in 8.1.5, it should still work at least). Are you logged into
    : the OS as the "oracle" account (or whatever you used as the
    : install account)? Is this user a member of the "dba" group?
    : Also, make sure the permissions/ownerships of the files are
    : correct--your umask should have been 022 on the install account
    : before the install. The install manual states the correct
    : permissions on important files, and ownerships should pretty
    much
    : all (if not all) be oracle:dba.
    : If a shutdown was initiated, was it long ago? Live Oracle dbs
    : can take a while to shutdown, but if this is a new install and
    : not live or anything, it shouldn't take that long.
    : Sven Neuhaus (guest) wrote:
    : : I have problems installing Oracle 8.1.5 on Linux.
    : : On the "Configuration tools" screen, I get the following
    : : error for the 'Oracle Database Configuration Assistant':
    : : "A required command line argument is missing"
    : : The installation claims the error is not critical.
    : : When I try to access the database with SQL*Plus and the
    default
    : : SYS/CHANGE_ME_ON_INSTALL login, I get the following error:
    : : ORA01033: Oracle intialization or shutdown in progress.
    : : I cannot start or stop the database.
    : : When I use "connect internal" in srvmgr, and try to do
    : "startup",
    : : I get "insufficient privileges".
    : : When I use "connect SYSTEM/CHANGE_ME_ON_INSTALL", I get
    : ORA01033
    : : again.
    : : My system configuration:
    : : RedHat 6.0
    : : 2x Pentium II 266
    : : 192 MB RAM
    : : Java JRE 1.6.5
    : : Kernel 2.2.10
    : : Hints etc. appreciated.
    null

  • Crystal Report Server: Cannot save Database Configuration in CMC

    I already posted this question as SAP internal CSN message (message number 1896093 2009) but did not get any answer so far.
    I have installed a test version (which I'd like to become permanent some     
    day...) of Crystal Reports Server 2008 on a local machine to be able to      
    share Crystal reports within our department.                                 
    I created a couple of reports which I would like to get updated              
    regularly. The issue is here that I get a logon screen to the underlying     
    SQL Server as soon as a user clicks on "Refresh" when viewing a report       
    from InfoView. The SQL Server is running on integrated security              
    via SSO, which I cannot change...                                            
    To get around this issue I would like to change the default Database         
    Configuration of the reports. Hence I do the following:                      
    1) I open the Central Mangement Console                                      
    2) I select one of my reports                                                
    3) Rightclick on Properties                                                  
    4) On the Default tab I select Database Configuration                        
    5) the config is set to "Logon Screen" and I ant to change this to SSO,      
    so I set this                                                                
    6) Now I click on Save                                                                               
    => The setting is reverted to the old "Logon Screen" settin1g                                                                               
    This behavior is the same for all the reports I'm using.                                                                               
    Looking forward to any help, kind regards                                    
    Wolfgang
    P.S.: Ultimately this issue arises, because I cannot refresh my crystal report data in batch job mode, because the reports are reading data from an SQL server, which allows SSO-logon (integrated security) only. Thus I have to open each and every report for update manually and click on the refresh button.
    Edited by: Ralf Wolfgang Geithner on Jul 3, 2009 11:00 AM

    Hi Manish,
    thanks for your answer. Unfortunately I'm still stuck in this matter.
    Does this happen with the sample reports too? I think it will be a good approach to try this to see if your system is behaving differently for sample reports and reports published from outside
    I did not really try this, but viewing and editing my reports in Crystal Reports 2008 Designer works perfectly fine. As well can the user view my reports in the InfoViewApp.
    Also, does it revert to the login screen setting immediately after you click Save or does it show the setting as changed after clicking Save but, does not retain it when you come back and check the report settings again?
    The data is reverted immediately after clicking "Save"
    Kind reagrds
    Wolfgang

  • Database configuration assistant privlege problem

    I am installing Oracle 9i R2 (9.2.4) install on Redhat 7.3.
    I am following the guides at:
    http://www.puschitz.com/InstallingOracle9i.shtml
    I launched the oracle runInstaller, I can go through to the point where I choose Database configuration which I select(Software only) and click next.
    It failes with the following error dialog:
    Error: You do not have sufficient privileges to write to the specified path. in compnonent Database Configuration Assistant 9.2.0.1.0. Installation cannot continue for this component.
    O Stop installation of all products
    O Stop installation of this component only
    OK
    I continue the installation. Many things are installed, but at the end of the installation, it s written "Oracle installation Failed".
    Does anyone know where my permissions problem is and the way to complete the install succesfully?
    (how can I create the my first database, sqlplus seems not installed )
    Thank you.
    Edouard.

    The problem could arise not having set ORACLE_BASE environment variable : in this case the Installer could try creating directories under root (/).
    But there is Bug No. 3547724 as well : NEW 9.2.0.4 FOR LINUX 'REKIT' FAILS TO INSTALL DBCA - INSUFFICIENT PRIVILEGES. In this case the suggested workaround is to install 9.2.0.1, then patch 9.2.0.4 .

  • Oracle 11g "Oracle Database Configuration Assistant" failed

    Hi
    am trying to install oracle 10g databse .
    am getting Configuration assistant "Oracle Database Configuration Assistant" failed
    in log file i see
    [Thread-19] [18:32:29:343] [BasicStep.execute:202] Executing Step : CLONE_DB_CREATION_RMAN_RESTORE
    [Thread-19] [18:32:29:343] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-01092
    [Thread-19] [18:32:29:343] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-01034
    [Thread-19] [18:32:29:343] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-03114
    [Thread-19] [18:32:29:343] [StepErrorHandler.setFatalErrors:322] setting Fatal Error: ORA-12560
    [Thread-19] [18:32:29:343] [StepErrorHandler.setIgnorableErrors:250] setting Ignorable Error: ORA-01109
    i have created microsoft loop back adapator and configured TCP/IP.
    what would be the problem?

    At the Oracle Support site https://support.oracle.com
    To access the document, you will need a valid CSI (Customer Support Identifier), which is given when you purchase a support contract from Oracle.
    If you do not have a CSI, I would recommend that you completely uninstall the product and reinstall again by following the Install Guide at http://www.oracle.com/pls/db102/portal.portal_db?selected=11
    HTH
    Srini

  • Database Configuration Assistant in Red Hat 7.1

    Hi,
    I'm trying to install 9i database in Red Hat 7.1
    The instalation of the source files works fine.
    Now i'm trying to create the database with "Database Configuration Assistant - DCA". After all parameters are set, the DCA trys to create the database.
    However when it trys to "Creating and Starting Oracle Instance", the system goes to 100% processor and the machine does not responde anymore.
    The hardware resources are the follow:
    PentiumIII - 600
    512 Mb RAM
    5GB disk free ...
    SO - Red Hat 7.1
    Any help are welcome,
    Thanks,
    Pedro Ribeiro

    I've tried to install 9i on SeaWolf. Unfortunately it hangs on 13% install progress. This problem has repeated
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Vladimir Krymov ([email protected]):
    From release notes Ive understood that only SuSe 7.1 was certified for 9i. What about other clones? Did anybody try 9i on Red Hat 7.1?<HR></BLOCKQUOTE>
    null

  • 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.

  • OWB 11.1.0.6.0 with database character set AL32UTF8 is not working

    Hi ,
    we are working for a project for Turkey.
    if we insert Turkish characters in database ,in sqldevelpoer we are able to see the correct data. but when i load a file from preprocessor in OWB Process Flow, the characters which are in Turkish got changed to different characters in database. our databse character set is AL32UTF8. could you please throw some light on this please.
    Many thanks,
    kiranmai.

    hi ,
    ya we are using the correct dataset only in preprocessr configuration. actually it was a problem with OWB only ,
    i have changed database character set to WE8ISO8859P9,then i am able to se correct Trukey chars in database. i think it was a SR for oracle .

  • Arabic text shows junk in database character set

    Hi,
    Workion EBS Ver11.5.0
    NLS_CHARACTERSET :AR8ISO8859P6
    NLS_LANG : AMERICAN_AMERICA.WE8ISO8859P1
    i have a trial balance report, in that description text is displaying like this ????? ??? ?????? - ???? ????? ???
    to rectify this, what steps should i do to display in arabic text and it should support both arabic and english.
    could anyone please help me in this.
    Thanks and Regards
    Khaleel

    First you should make sure your client machine is able to display arabic data.
    Second you likely need to change NLS_LANG character set part to the right character set, possibly AR8ISO8859P6 or another character set compatible with your database character set.
    Please read carefully OTN NLS_FAQ http://www.oracle.com/technology/tech/globalization/htdocs/nls_lang%20faq.htm.
    If you are working with Oracle E-Businees Suite, there may be some additional rules to configure application server to display correctly arabic data.

  • Database Configuration Asssistant error while installation Oracle 10g r2

    I'm try install Oracle 10g Release2 on Windos XP PRO SP2 system.
    I'm select in installation all options by default.
    Oracle software is install successfully. Then automatically run Database Configuration Assistant, that must be install example instance.
    But it show error window: "ORA-00959: ?????? 'EXAMPLE' ?? ??????????".

    Frist of all the actual error message in English would be,
    ORA-00959: tablespace <strings> does not exist
    Cause: A statement specified the name of a tablespace that does not exist.
    Action: Enter the name of an existing tablespace. For a list of tablespace names, query the data dictionary.
    In your case that will be tablespace EXAMPLE.
    How did you get this error, is this some tablespace you are trying to create?
    If you want to see the Russian language you can set the Launage setting of your PC.
    Control Panel >> Regional and Lauguage Options >> Advanced Tab
    and choose Russian from drop down.

  • Delete a specified data sorce in the database configuration

    Hi @all,
    I created  and published successfulyl a Crystal Report on a Business Objects D-System! In the database configuration of the these crystal report in the CMC, we use the option "Prompt the user for database logon".
    But it appears two data sources in the left box, where I can just modify some options, when I click on it.
    The first data source is an IP-adress of the DEV-System, which is obviously the meta-information of the Crystal Report.
    The second datasource is the AS, which I set in BW under the TC /crystal/rptadmin "Set BW source parameters".
    How can I delete the first data source with IP-adress?
    When I transport the Crystal Reports to the  Business Objects P-System, these IP-adress is still set as in the D-System and is not translated! How can I solve this problem?
    Best regards,
    Dirk

    Hi Ingo,
    I solve it by myself.
    The problem was the use of an function module. If I save the Crystal Report for the P-System, it runs and the IP-adress will be translate.
    Best regards,
    Dirk

  • Database Configuration utility - huray? :-/

    Hello (again, sigh),
    I am installing PeopleSoft FCM 9.1 and yes, having no experience with installing PeopleSoft I decided to use the Database Configuration utility, using the article provided by Nicolas Gasparotto as a guide:
    http://gasparotto.blogspot.com/2009/12/db-wizard-850-for-oracle-on-linux.html
    along with the Oracle Documentation. In the guide above, I should be up to step 9.
    this is the log I get after failing to create the database :
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Aug 2 15:39:29 2010
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> spool createdb.log
    SQL>
    SQL> startup nomount pfile=$ORACLE_HOME/dbs/initFC91DB.ora
    ORA-48108: invalid value given for the diagnostic_dest init.ora parameter
    ORA-48140: the specified ADR Base directory does not exist [/u01/app/oracle/product/11.2.0/dbhome_1/dbs/<ORACLE_BASE>]
    ORA-48187: specified directory does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 1
    SQL>
    SQL> create database   FC91DB
      2        maxdatafiles  1021
      3        maxinstances  1
      4        maxlogfiles   8
      5        maxlogmembers 4
      6        CHARACTER SET UTF8
      7        NATIONAL CHARACTER SET UTF8
      8  DATAFILE '/oradata/FC91DB/system01.dbf' SIZE 2000M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
      9  EXTENT MANAGEMENT LOCAL
    10  SYSAUX DATAFILE '/oradata/FC91DB/sysaux01.dbf' SIZE 120M REUSE AUTOEXTEND ON NEXT     10240K MAXSIZE UNLIMITED
    11  DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE '/oradata/FC91DB/temp01.dbf' SIZE 20M REUSE AUTOEXTEND ON NEXT     640K MAXSIZE UNLIMITED
    12  UNDO TABLESPACE "PSUNDOTS" DATAFILE '/oradata/FC91DB/psundots01.dbf' SIZE 300M REUSE AUTOEXTEND ON NEXT  5120K MAXSIZE UNLIMITED
    13  LOGFILE GROUP 1 ('/oradata/FC91DB/redo01.log') SIZE 100M,
    14            GROUP 2 ('/oradata/FC91DB/redo02.log') SIZE 100M,
    15            GROUP 3 ('/oradata/FC91DB/redo03.log') SIZE 100M;
    create database   FC91DB
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    SQL> spool off
    SQL> exit
    DisconnectedOk so Oracle is not available, but:
    [oracle@vm-psfin91-db InstData]$ sqlplus SYS/system@SEED as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Aug 2 15:46:49 2010
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>SEED is just a small database I created earlier to test connectivity between my servers - just a little crutch for me to at least see some progress. But it shows that Oralce is available doesn't it?
    What can I check/recheck?
    Seems like I'm starting to be a regular here at the forums bragging for help :D
    Thanks coping with me,
    Honza.

    >
    Are you going to use DBWizard ? Something is wrong then, your db name is in upper case which is not supported by the Wizard (point 8.2 of my article you linked).
    >
    Nicolas, your article mentions that the name is supposed to be in upper case, which mine is. And it seems like you also used an upper case name in the end: O2H91WZD. So now I'm a bit confused as to what is actually supported. I believe it's supposed to be upper case, there was no error message about the uppercase name.
    >
    Did you set the env. variables ORACLE_HOME and ORACLE_BASE properly ? Which user are you connected with ? Did you updated the tnsnames.ora ?
    Could you also post the content of the file $ORACLE_HOME/dbs/initFC91DB.ora ?
    >
    ORACLE_HOME and ORACLE_BASE are correct, that I'm sure of. And, if they weren't I wouldn't be able to connect to my test SEED database. As far as ORACLE_SID goes, I did change it accordingly depending on wether I was connecting to FC91DB and SEED.
    >
    PS : what is SEED when you create database FC91DB ? What ORACLE_SID value did you set up front ?
    >
    SEED is just a test database I created in the very beginning when setting up my Application and Database server environment - just to test connectivity on both sides. It has no use other then that. When I created FC91DB I simply added an entry in my tnsnames.ora and created a init.ora file, then set ORACLE_SID accoringly.
    I can post back my tnsnames and init files once I get back to the server, thank you for input so far.

Maybe you are looking for