Moving controlfiles in Oracle DB 10.2.0.4

Dear Expert, <br><br>
Please help me, how to move controlfile from C:\oracle\CE2\origlogA\cntrl\filename.DBF to
D:\oracle\CE2\origlogA\cntrl\filename.DBF.  We are using Windows Server 2003 64 bit, and Oracle 10.2.0.4. Please guide me <br><br>
Regards
Febri Ishani

Hi,
You can change the location of the control file by following the procedure below.
Logon to the server as <SID>ADM
Take a copy of init<SID>.ora and the current control file.
Connect to the SQLPLUS and then execute the following,
backup control file to trace;
create pfile from spfile;(this replaces existing init<SID>.ora with new file)
shutdown immediate;
Now edit the pfile (init<SID>.ora) and modify the controlfile location.
Copy the controlfile physically to the new location. After the changes proceed as follows,
Connect to the SQLPLUS and then execute the following,
startup pfile='location of init<SID>.ora';
create spfile from pfile;
shutdown immediate;
startup;
NB: Make sure that u have taken a copy of the existing pfile before doing any creating and editing a new one.
Good Luck!!!
Regards,
Varadharajan M

Similar Messages

  • Which CKM is used for moving data from Oracle to delimited file ?

    Hi All
    Please let me know Which CKM is used for moving data from Oracle to delimited file ?
    Also is there need of defining each columns before hand in target datastore. Cant ODI take it from the oracle table itself ?

    Addy,
    A CKM is a Check KM which is used to validate data and log errors. It is not going to assist you in data movement. You will need an LKM SQL to File append as answered in another thread.
    Assuming that you have a one to one mapping, to make things simpler you can duplicate the Oracle based model and create a file based model. This will take all the column definitions from the Oracle based model.
    Alternatively, you can also use an ODI tool odiSQLUnload to dump the data to a file
    HTH

  • Have you moved from Unix/Oracle to Windows/SQL Server

    I am looking for people that have moved from Unix/Oracle to Windows/SQL Server...
    Would you do it again ?
    Did you save money ?
    Were you using Zones to virutalize on Unix ?
    Did you gain or loose overall Performance ?
    Have you had to perform a recovery on SQL Server ? 
    Have you done a recovery in Oracle ?
    Were you using Rman ?
    Which worked better ?
    We are going through an analysis of does it really make sense, save money and effect performance to move from a strong unix/oracle environment to a MS/SQL environment.
    THanks Rob
    [email protected]

    Hi,
    All our R/3 legacy systems are Windows/Oracle.
    All the new systems (BW, SRM, CRM, XI) are Windows/MSSQL.
    It was an order from the management to make the switch because of the high prices of Oracle licences.
    The official motto is now Oracle on Unix only and SQL server on Windows only.
    We get the same level of performance as with Oracle, but we, old SAP Oracle grumpy admins, are much more comfortable with Oracle admin than SQL server admin.
    imho, SQL server may seem simplier but it is much easier to look under the hood whith Oracle.
    We have to reinvent the wheel and it's kind of frustrating but we will cope with it...
    I would say that SQL server is not a good choice for BW usage because there is a lot more litterature on BW database optimisation for Oracle than MSSQL.
    The official SAP class does not speak at all about SQL server but has several chapters on Oracle...
    Regards,
    Olivier

  • AUTO-EXPANSION OF CONTROLFILE IN ORACLE 8.X

    제품 : ORACLE SERVER
    작성날짜 : 2004-06-17
    Oracle7.x에서는 재생성하지 않는 한 controlfile의 size는 변경되지 않았다.
    이는 controlfile이 생성되는 시점에 size와 관련되는 각 option 사항
    (maxdatafiles, maxloghistory 등)에 의해서 전체 size가 fix 되기 때문이며,
    이후에 controlfile의 size가 늘어나야만 하는 작업이 수행된다면(예를 들어
    maxdatafiles에 지정된 숫자 이상으로 datafile을 생성할 경우) error(예를
    들어 ORA-1118 'cannot add any more database files: limit of %s
    exceeded')를 유발하게 된다.
    이 경우 controlfile을 재생성해야만 문제를 해결할 수 있었다.
    Oracle8.x에서는 이와는 달리 필요할 경우 자동적으로 controlfile의 size가
    증가하게 된다.
    controlfile size가 자동적으로 증가하는 시점에 alert log file에는
    다음과 같은 형태의 log를 남기게 된다.
    kccrsz: expanded controlfile section 11 from 10 to 20 records
    requested to grow by 10 record(s); added 3 block(s) of records
    controlfile에 기록되는 정보는 다음의 두가지로 분류할 수 있다.
    1. Non-circular reuse (예: datafile record)
    만약 Oracle8.x에서 새로운 datafile을 추가하는 시점에, datafile에 대한
    정보를 기록하기 위한 빈 slot이 controlfile에 존재하지 않는다면
    자동적으로 datafile정보를 저장하는 section이 expand되어 새로운 정보를
    기록할 수 있게된다.
    이 type의 record(slot)은 자신이 정보를 담고있는 object(예: datafile)가
    database에서 제거되기 전에는 재사용이 불가능하다.
    2. Circular reuse (예: archivelog record)
    Circular reuse type의 record는 재사용(overwrite)이 가능하다.
    즉, 새로운 entry가 저장될 빈 slot이 없을 경우 가장 오래된 slot이
    overwrite된다.
    예를 들어, 새로운 archive log가 발생되었는데 archived log에 대한 정보를
    기록하는 controlfile의 section에는 비어있는 slot이 없을 경우, 가장
    오래된 archived log entry가 overwrite된다.
    조금더 자세한 예를 이용하여 Oracle7.x와 Oracle8.x의 차이점을 설명하면
    다음과 같다.
    가정1 : 매주 15개의 archive log file이 생성된다.
    가정2 : database를 생성하면서 controlfile의 archived log에 대한 slot을
    10개로 하였다. (maxloghistory)
    Oracle7.x를 사용하는 경우, 매주 5개의 archived log record들은 새로운
    record에 의해서 overwirte된다.
    Oracle8.x를 사용하면서 다음과 같은 parameter를 initSID.ora file에
    설정하였다면,
    control_file_record_keep_time=7
    모든 circurlar reuse type의 controlfile record들을 최소한 7일간은
    overwrite하지 않고 유지하겠다는 의미이다. (7일 이후에는 새로운 record에
    의해서 overwrite될 수 있도록 한다.)
    이렇게 controlfile record를 특정 기간동안 유지를 하기 위해서는 필요에
    따라서 새로운 record를 기록할 수 있는 slot를 자동으로 추가할 수가
    있어야 한다. 그리고 이 과정에 의해서 controlfile의 size가 자동으로
    증가할 수 있다.
    위의 예의 경우, archived log에 대한 각 record들을 1주일 동안은 유지를
    해야하기 때문에, 첫 주에 archived log를 위한 slot이 5개가 더 할당될
    것이다.
    controlfile의 각 record section에 대한 정보는
    v$controlfile_record_section을 참조한다.

    Did you apply any patches to Solaris 8? I have installed oracle on my Solaris 8 PC, but am having trouble getting the oracle univeral installer to install the sample database. I'm getting an ora-03113 end-of-file on communication chanel error.
    To help get answers, do a search for oracle in this forum. There were a few good postings that reveal some myths in the oracle install documentation.
    fyi... you could readup on the following apps in the on-line doc: lsnrctl, sqlplus, svrmgrl, netasst, dbassist.

  • Moving the HFM Oracle Database from One Server to Another

    Our Oracle DBAs have requested that our HFM Oracle db in TEST be moved to another server. When we tried this in our DEV environment, we had major issues afterwards and some of the software needed to be re-installed. Does anyone have any recommendations on how what we need to do on the Hyperion side prior and post db move to make the transition smooth? In addition to HFM, we have Essbase, Planning, Workspace, Interactive Reporting, Financial Reporting and Web Analytics.
    Thanks.
    Terri Taylor

    If all of the database files, including the binaries, are on a SAN you might be able to...
    1. Cold backup of everything - database files and binaries.
    2. Dismount the SAN volumes from the old server.
    3. Mount the SAN volumes to the new server - using the same mount points.
    4. Start up the database on the new server.
    If the OS version/release are the same between new and old, that should be about all you need to do.
    If the OS is same but upgraded to new version/release you will want to relink the Oracle executables before starting up.

  • Moving table from oracle 10g to sql server 2005 plz help!!!

    Hi All,
    I have a table in oracle that i have to move to sql server.
    I have exported the table and the dmp file is around 150 MB.
    I do not know how to import this file into sql server.
    Can some one kindly update me as to which is the best way to do this,
    i know the best people to answer this would be the sql server techs but just wanted to try my luck on OTN.
    regards,

    Hello,
    you could use the Database Gateway for MS SQL Server, create a database link that uses the gateway, and then transfer the data from Oracle to SQL Server using in SQLPlus a command like the following:
    copy from scott/tiger@ora102 -
    insert TEST1@dg4msql -
    using select * from test1@ora102 ;
    Another solution is using a PL/SQL block, and how to do it is described in the following note in My Oracle Support:
    "Insert Into Remote Table Select * From Local Table" Gives Error ORA-02025 Using DG4MSQL (Doc ID 790572.1)
    I don't know whether it is the "best way to do it", but it is an alternative.
    For inserting a flat file into SQL Server you really need to check with Microsoft. Or you can use 3rd party software: http://www.dbload.com/
    Best regards
    Wolfgang

  • Controlfile recovery (Oracle 9i Solaris 9)

    Hi Guys,
    In my environment I had 2 control files 1 and 2. I think 1 got corrupted. so I deleted it then made a copy of 1 to 2. But now nothing seems to work.
    SQL> shutdown immediate;
    ORA-00210: cannot open the specified controlfile
    ORA-00202: controlfile: '/database/oradata/lldev/control02.lldev'
    ORA-27041: unable to open file
    SVR4 Error: 13: Permission denied
    Additional information: 3
    SQL>
    Pls assist.
    Thank you All.

    To summarize, did you -
    1) copy the control file while the database was up?
    2) Copy the correct control file and not the corrupted one.
    Best practice is to shutdown the database add a new location with the correct control file copy and hash the corrupt file location. Once the startup is proper, the corrupt control file can be deleted and the corresponding entry removed from the initialization parameters at next database restart.
    Could you also post the relevant alert log entries?

  • Moving from Apex&oracle express 10g to Apex&oracle express 11gr2

    Hi,
    I have an Apex application running on 10g express
    Now I have another server and I want to move on Apex 4 with 11gexpress r2
    I did an application export from within apex, then Import in 11g.
    No errors everything is fine.
    How about all the tables?
    I read topics on forum but still I'm not sure
    Kindest regards,
    Florin

    Hi,
    You need export application parsing schema from 10G XE and then import those to target DB.
    http://www.oracle-base.com/articles/10g/OracleDataPump10g.php
    This might also help how deploy your application
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/deploy.htm#BABGJIAD
    Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0

  • How can I convert a mysql sql script to a oracle sql script

    Hi,
    We have a bunch of tables with data running on a mysql server.
    This should now be moved to an oracle 9 db.
    are there any tools to convert the import script of a mysql db
    to a format of the sql script that work for oracle ?
    Thanks
    Michael

    Oracle has a tool called Migration Toolbench, which supports MySQL 3.22 and 3.23:
    http://otn.oracle.com/tech/migration/workbench/content.html
    On this same topic, I was wondering if anybody has tried migrating from PostgreSQL to Oracle 9i. The workbench doesn't seem to support it, and feeding a pg_dump file directly into SQL*Plus is not working.

  • How to take a Hot backup of Oracle database

    1: put the db in archive log mode
    2: set the db_sid to correct one
    3: login to sqlplus
    4: verify the name of the db that you are connected to
    select name from v$database;
    5: check if the db is in archive log made
    select log_mode from v$database;
    if not in archive log mode
    another command to check
    archive log list;
    6: find where on disk oracle writes archive log when it is in archive log mode
    sql> show parameter log_archive_dest_1;
    if the value is found to be 0, that means no values will be recorded, so we need to change it
    sql> alter system set log_archive_dest_1='LOCATION=c:\database\oradata\finance\archived_logs\'
    scope=spfile;
    7: shutdown immediate; < this is done just to prepare the db for hot backups >
    8: startup the db in mount mode
    startup mount;
    ( 3 startup types : nomount - just starts the instance, mount - locates the control files and open up according to the values, open - finds the datafiles from the control files and opens up the db )
    9: put the db in archive log mode
    alter database archivelog;
    10: open the database
    alter database open;
    11: check the status of the db
    select log_mode from v$database;
    SQL> archive log list;
    12: create a directory for archived log
    check if its empty, if empty we need to switch
    sql> alter system archive log current;
    run it 5 times < need to put / and enter > , then check the archive log dir , we will find files
    13: make a table in the database and insert data in it
    create table employees (fname varchar(2));
    check the table
    desc employees;
    insert values
    insert into employees values ('Mica');
    14: tablespace must be in hot backup mode
    check the status
    select * from v$backup;
    if found not active, then we need to change
    we cannot put the db in hot backup mode, unless it is archive log mode
    change to hot backup mode
    alter database begin backup;
    check the status
    select * from v$backup;
    15: now we can only COPY DBF FILES
    copy *dbf <distination location>
    16: need to take the db out to hot backup mode
    alter database end backup;
    17: need to make another archive log switch
    alter system archive log current;
    18: need to copy control files now, need to do a binary bckup
    alter database backup controlfile to '<location>\controlbackup';
    19: insert more values to the table
    insert into employess values ('NASH')
    COMMIT;
    make another archive log switch : alter system archive log current;
    do the same process for more values
    20 : backup all the archive logs to a new location
    21: shutdown the db and simulate a hw error, delete all the files from the database folder
    22: try to start the sqlplus and db ::: error
    23: copy all the backups to the db dir
    need to copy the control files, rename the binary backup of the control file and make the copies as needed
    24: try to mount the db, error < must use reset logs or noreset logs >
    25: need to do a recovering of the database
    shutdown
    restore the archive logs
    startup mount;
    recover database until cancel using backup controlfile;
    it will ask for a log file :
    yes for recovery
    cancel for cancelling recovery
    26: check status: open the database in readonly
    alter database open read only;
    check the tables to see the data
    shutdown immediate
    shartup mount;
    recover again : recover database until cancel using backup controlfile;
    if oracle is asking for a log that do nto exist , all we have to do is type cancel
    27: open the database
    alter database open;
    need to do reset logs
    alter database open resetlogs;
    28: check the db that you are connected, check the tables
    thanks and regards
    VKN
    site admin
    http://www.nitrofuture.com

    A very long list ... let me make it shorter.
    SQL> archive log list;If I see this:
    Database log mode              No Archive ModeI put the database into archivelog mode and leave it there forever.
    If it is in archivelog mode:
    RMAN> TARGET SYS/<password>@<service_name> NOCATALOG
    RMAN> BACKUP DATABASE PLUS ARCHIVELOG;Though there are a lot of things one could do better such as incrementals with block change tracking, creating an RMAN catalog, etc.

  • Error when transporting Oracle datasource and transformation.

    I am doing transports in BI 7.0 from DEV to PRD. While moving transformation for Oracle Data Source to PRD, I am facing the method of execution error in transport. Please note for the same target we are using two transformations from different Oracle data sources. One is getting transported to PRD.  while the other one is failing with error message source system does not exist.
    Please help me to solve this issue. Points will be assigned.

    Hi Davis,
    Before transporting transformation make sure either of source or target should availble in target system.
    suppose you have a transformation between Data source and Data Target, first transport Data source, then transport Transformation along with data target.
    Before tansporting Transformation either source or target should be avaialble in QA system..then only transportation will happen smoothly..
    Hope this helps.
    regards
    SK

  • Sql server 2005 dts export to Oracle 10

    can the sql developer migration tool read a DTS export file or can it only connect to a running sql server db for the migration?
    I have a need to dts out some tables from sql server, and put them in an update package to load them into Oracle at another site where I may not have a sql server db or a network connection back to my sql server db. Some of the text fields have embedded Carriage Returns and other control characters, so I can't do a ascii export. Any suggestions would be appreciated.

    Hi <Please Supply Name>,
    Unfortunately SQL Developer Migration Workbench cannot read DTS files, but there are other solutions.
    Migrating the Database (DDL)
    You can do this 2 ways depending on your preference or where you have SQL Developer installed.
    1)SQL Developer on your SQL Server machine (Note you need access to an Oracle database, but not your target Oracle database): You could capture/convert and create the generation script using SQL Developer on the same machine as your SQL Server, and then just bring the generation script to your Oracle database to run.
    2) SQL Developer on your Oracle machine.You could perform an offline capture .This involves SQL Developer creating some scripts for you, you copy them to your SQL Server Machine to run. Te scripts dump the DDL of your SQL Server database out to files. These files can then be moved to your Oracle machine and "Captured" using SQL Developer. You then proceed to do the migration on your Oracle machine.
    Heres a viewlet of someone migrating their SQL Server databases using the "Offline Capture" method
    http://www.oracle.com/technology/tech/migration/workbench/viewlets/oflauncher.html
    Migrating the Data
    There is only 1 way to perform an "Offline Data Move"
    SQL Developer can generate the scripts for you once you have migrated your database DDL. These scipts utilise SQL Servers BCP tool and Oracle SQL*Loader tool.
    Heres a viewlet of someone moving their SQL Server data offline using this method
    http://www.oracle.com/technology/tech/migration/workbench/viewlets/ofdm.html
    I hope this helps
    Dermot.
    Message was edited by:
    dooneill

  • Which LKM is to be used for data from oracle to file

    Hi All
    I am new to ODI. Please help me in understanding this tool.
    I want to know Which LKM is to be used for moving data from oracle to a comma seperated file etc.

    Hi John
    Thanks a ton... I was able to move ahead. I executed thinking all params are correct.
    But it did not go thru and gave me this error:-
    936 : 42000 : java.sql.SQLException: ORA-00936: missing expression
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_describe(T4CPreparedStatement.java:503)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:965)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:535)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1051)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3026)
         at com.sunopsis.sql.SnpsQuery.executeQuery(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • Can any one help me on this error while installing SAP on Oracle

    Here is the error i am getting
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_5.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_5 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_6.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_6 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_7.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_7 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_8.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_8 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_9.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_9 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_10.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_10 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_11.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_11 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_12.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_12 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_13.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_13 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_14.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_14 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_15.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_15 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_16.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_16 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata1\gsk620_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk620_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk620_2.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk620_2 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk620_3.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk620_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk620_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk620_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_5.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_5 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_6.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_6 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_7.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_7 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_8.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_8 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_9.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_9 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_10.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_10 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_11.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_11 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_12.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_12 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_13.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_13 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_14.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_14 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_15.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_15 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_16.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_16 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata1\gsk620_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk620_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk620_2.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk620_2 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk620_3.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk620_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk620_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk620_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk620_5.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk620_5 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk620_6.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk620_6 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk620_7.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk620_7 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk620_8.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk620_8 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk620_9.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk620_9 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gskusr_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gskusr_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\roll_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\roll_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\temp_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\temp_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata1\system_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\system_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2010-08-30 08:59:16
    Processing of all file system node operations of table tORA_DatabaseServerNodes succeeded.
    INFO 2010-08-30 08:59:17
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2010-08-30 08:59:18
    Creating file D:\oracle\ora81\database\initGSK.ora.
    INFO 2010-08-30 08:59:19
    Creating file D:\oracle\ora81\database\initGSK.sap.
    INFO 2010-08-30 08:59:20
    Copying file D:/Kernal/NT/COMMON/INSTALL/INITSID.DBA to: D:\oracle\ora81/database/initGSK.dba.
    INFO 2010-08-30 08:59:20
    Creating file D:\oracle\ora81\database\initGSK.dba.
    INFO 2010-08-30 08:59:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 08:59:22
    Moving file D:/oracle/ora81/database/initGSK.ora to: orig_init_ora_tmp.txt.
    INFO 2010-08-30 08:59:22
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initGSK.ora.
    INFO 2010-08-30 08:59:22
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2010-08-30 08:59:23
    Creating file C:\SAPinst ORACLE KERNEL\oradim.log.
    INFO 2010-08-30 08:59:28
    See 'D:\oracle\ora81/bin/oradim -new -sid GSK -STARTMODE auto' output in 'C:\SAPinst ORACLE KERNEL\oradim.log'.
    INFO 2010-08-30 08:59:28
    'D:\oracle\ora81/bin/oradim -new -sid GSK -STARTMODE auto' returned with '0'.
    INFO 2010-08-30 08:59:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 08:59:34
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:31
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2010-08-30 09:23:34
    See 'D:\oracle\ora81/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2010-08-30 09:23:34
    'D:\oracle\ora81/bin/lsnrctl start' returned with '0'.
    INFO 2010-08-30 09:23:35
    Copying file D:/Kernal/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:38
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2010-08-30 09:23:41
    Database Load
    INFO 2010-08-30 09:23:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:47
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Task files created
    INFO 2010-08-30 09:23:50
    Command files created
    INFO 2010-08-30 09:23:31
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2010-08-30 09:23:34
    See 'D:\oracle\ora81/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2010-08-30 09:23:34
    'D:\oracle\ora81/bin/lsnrctl start' returned with '0'.
    INFO 2010-08-30 09:23:35
    Copying file D:/Kernal/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:38
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2010-08-30 09:23:41
    Database Load
    INFO 2010-08-30 09:23:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:47
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Task files created
    INFO 2010-08-30 09:23:50
    Command files created
    INFO 2010-08-30 09:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 12:33:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    host name is airtel
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    showing dlg dNT_SAPComponent_Waps_Instance_Dirinfo
    TRACE
    waiting for an answer from gui
    TRACEgot notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    releasing notifyLock
    TRACE
    t_DriveMapping_SHARED.updateRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_SapTransHost'), updating
    TRACE
    The step InvokeDialog with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|InvokeDialog has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|writeTable
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateExpression(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel'), updating
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    host name is airtel
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    showing dlg dNT_SAPComponent_Waps_Instance_Dirinfo
    TRACE
    waiting for an answer from gui
    TRACEgot notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    releasing notifyLock
    TRACE
    t_DriveMapping_SHARED.updateRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_SapTransHost'), updating
    TRACE
    The step InvokeDialog with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|InvokeDialog has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|writeTable
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateExpression(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel'), updating
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_DEFAULTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_INSTANCEPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_DEFAULTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_INSTANCEPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), completing
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD
    TRACE
    The step getCD with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables
    TRACE
    The step fillContextTables with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|DatabaseTablespaces|ind|ind|ora|ind|ind|0|copyMissingTablespaceValues
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE dbSid = 'GSK'
    TRACE
    Found datafile for tablespace PSAPGSKindex = 1
    TRACE
    Found datafile for tablespace PSAPGSKindex = 2
    TRACE
    Found datafile for tablespace PSAPGSKindex = 3
    TRACE
    Found datafile for tablespace PSAPGSKindex = 4
    TRACE
    Found datafile for tablespace PSAPGSKindex = 5
    TRACE
    Found datafile for tablespace PSAPGSKindex = 6
    TRACE
    Found datafile for tablespace PSAPGSKindex = 7
    TRACE
    Found datafile for tablespace PSAPGSKindex = 8
    TRACE
    Found datafile for tablespace PSAPGSKindex = 9
    TRACE
    Found datafile for tablespace PSAPGSKindex = 10
    TRACE
    Found datafile for tablespace PSAPGSKindex = 11
    TRACE
    Found datafile for tablespace PSAPGSKindex = 12
    TRACE
    Found datafile for tablespace PSAPGSKindex = 13
    TRACE
    Found datafile for tablespace PSAPGSKindex = 14
    TRACE
    Found datafile for tablespace PSAPGSKindex = 15
    TRACE
    Found datafile for tablespace PSAPGSKindex = 16
    TRACE
    Found datafile for tablespace PSAPGSK620index = 1
    TRACE
    Found datafile for tablespace PSAPGSK620index = 2
    TRACE
    Found datafile for tablespace PSAPGSK620index = 3
    TRACE
    Found datafile for tablespace PSAPGSK620index = 4
    TRACE
    Found datafile for tablespace PSAPGSK620index = 5
    TRACE
    Found datafile for tablespace PSAPGSK620index = 6
    TRACE
    Found datafile for tablespace PSAPGSK620index = 7
    TRACE
    Found datafile for tablespace PSAPGSK620index = 8
    TRACE
    Found datafile for tablespace PSAPGSK620index = 9
    TRACE
    Found datafile for tablespace PSAPGSKUSRindex = 1
    TRACE
    Found datafile for tablespace PSAPROLLindex = 1
    TRACE
    Found datafile for tablespace PSAPTEMPindex = 1
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE tblspName = 'SYSTEM' AND dbSid = 'GSK'
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD
    TRACE
    The step getCD with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables
    TRACE
    The step fillContextTables with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|DatabaseTablespaces|ind|ind|ora|ind|ind|0|copyMissingTablespaceValues
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE dbSid = 'GSK'
    TRACE
    Found datafile for tablespace PSAPGSKindex = 1
    TRACE
    Found datafile for tablespace PSAPGSKindex = 2
    TRACE
    Found datafile for tablespace PSAPGSKindex = 3
    TRACE
    Found datafile for tablespace PSAPGSKindex = 4
    TRACE
    Found datafile for tablespace PSAPGSKindex = 5
    TRACE
    Found datafile for tablespace PSAPGSKindex = 6
    TRACE
    Found datafile for tablespace PSAPGSKindex = 7
    TRACE
    Found datafile for tablespace PSAPGSKindex = 8
    TRACE
    Found datafile for tablespace PSAPGSKindex = 9
    TRACE
    Found datafile for tablespace PSAPGSKindex = 10
    TRACE
    Found datafile for tablespace PSAPGSKindex = 11
    TRACE
    Found datafile for tablespace PSAPGSKindex = 12
    TRACE
    Found datafile for tablespace PSAPGSKindex = 13
    TRACE
    Found datafile for tablespace PSAPGSKindex = 14
    TRACE
    Found datafile for tablespace PSAPGSKindex = 15
    TRACE
    Found datafile for tablespace PSAPGSKindex = 16
    TRACE
    Found datafile for tablespace PSAPGSK620index = 1
    TRACE
    Found datafile for tablespace PSAPGSK620index = 2
    TRACE
    Found datafile for tablespace PSAPGSK620index = 3
    TRACE
    Found datafile for tablespace PSAPGSK620index = 4
    TRACE
    Found datafile for tablespace PSAPGSK620index = 5
    TRACE
    Found datafile for tablespace PSAPGSK620index = 6
    TRACE
    Found datafile for tablespace PSAPGSK620index = 7
    TRACE
    Found datafile for tablespace PSAPGSK620index = 8
    TRACE
    Found datafile for tablespace PSAPGSK620index = 9
    TRACE
    Found datafile for tablespace PSAPGSKUSRindex = 1
    TRACE
    Found datafile for tablespace PSAPROLLindex = 1
    TRACE
    Found datafile for tablespace PSAPTEMPindex = 1
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE tblspName = 'SYSTEM' AND dbSid = 'GSK'
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE dbSid = 'GSK'
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tORA_SapdataNodes WHERE OpMode = 'CHECKFREESPACE'
    TRACE
    Computed SAPDATADIR sizes in tORA_SapdataNodes. Result:
    TRACE
      <table name="tORA_SapdataNodes"><!--  points to base table      :tORA_SapdataNodes  belongs to client         :R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|DatabaseTablespaces|ind|ind|ora|ind|ind|0  Row count of client table :12  Row count of base   table :12>    <columns>      <column name="WapsSystemName"><!  points to base table attribute :WapsSystemName>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="WapsInstanceName"><!  points to base table attribute :WapsInstanceName>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="WapsInstanceHost"><!  points to base table attribute :WapsInstanceHost>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="Key"><!  points to base table attribute :Key>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />          <property name ="DEF_PROPER" value ="SAPDATA4" />        </defaultproperties>      </column>      <column name="CaseInsensitive"><!  points to base table attribute :CaseInsensitive>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="Condition"><!  points to base table attribute :Condition>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="CopyIfNewer"><!  points to base table attribute :CopyIfNewer>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="FollowLinks"><!  points to base table attribute :FollowLinks>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="MoveByChance"><!  points to base table attribute :MoveByChance>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeAccessTime"><!  points to base table attribute :NodeAccessTime>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeCreationTime"><!  points to base table attribute :NodeCreationTime>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeModificationTime"><!  points to base table attribute :NodeModificationTime>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPoint"><!  points to base table attribute :NodeMountPoint>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPointFreeSpace"><!  points to base table attribute :NodeMountPointFreeSpace>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPointType"><!  points to base table attribute :NodeMountPointType>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPointUsedSpace"><!  points to base table attribute :NodeMountPointUsedSpace>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeName"><!  points to base table attribute :NodeName>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodePermission"><!  points to base table attribute :NodePermission>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeSize"><!  points to base table attribute :NodeSize>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeTarget"><!  points to base table attribute :NodeTarget>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeType"><!  points to base table attribute :NodeType>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeVersion"><!  points to base table attribute :NodeVersion>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NotOnNfs"><!  points to base table attribute :NotOnNfs>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="OpMode"><!  points to base table attribute :OpMode>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="Recursive"><!  points to base table attribute :Recursive-->        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>    </columns>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA1      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8450000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata1      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA2      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8800000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata2      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA3      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">9200000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata3      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA4      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">10000000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata4      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA5      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8000000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata5      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA6      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8030000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata6      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA1_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata1      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA2_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata2      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA3_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata3      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA4_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata4      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA5_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata5      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA6_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata6      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>  </table>
    TRACE
    C:\WINDOWS\system32/sapmmc.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmc.dll is not newer than C:\WINDOWS\system32/sapmmc.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmc.dll to C:\WINDOWS\system32/sapmmc.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcada.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcada.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcada.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcada.dll is not newer than C:\WINDOWS\system32/sapmmcada.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcada.dll to C:\WINDOWS\system32/sapmmcada.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcdb6.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcdb6.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcdb6.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcdb6.dll is not newer than C:\WINDOWS\system32/sapmmcdb6.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcdb6.dll to C:\WINDOWS\system32/sapmmcdb6.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcinf.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcinf.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcinf.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcinf.dll is not newer than C:\WINDOWS\system32/sapmmcinf.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcinf.dll to C:\WINDOWS\system32/sapmmcinf.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcms.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcms.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcms.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcms.dll is not newer than C:\WINDOWS\system32/sapmmcms.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcms.dll to C:\WINDOWS\system32/sapmmcms.dll: source is not newer than the target. Nothing to do.
    INFO 2010-08-30 08:59:04
    Processing of all file system node operations of table t_SAPComponent_Archives_Copy_SHARED succeeded.
    TRACE
    The step sCopySAPMMCdlls with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Archives|ind|ind|ind|ind|ind|0|SAPComponent_Archives_Waps_Hook|ind|ind|ind|waps|ind|0|sCopySAPMMCdlls has been executed successfully.
    TRACE
    The step sExtractOracleClientSoftware with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Archives|ind|ind|ind|ind|ind|0|SAPComponent_Archives_Db_Hook|ind|ind|ora|waps|ind|0|sExtractOracleClientSoftware has been executed successfully.
    WARNING 2010-08-30 08:59:05
    PROBLEM: 'SAPCAR' not found. CAUSE: Unable to find application via absolute path in filesystem. Application could perhaps be found using environment variable path or is really missing. Trying to call the application nevertheless.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tSqlStatements WHERE stmtID = 'SHUTDOWN_ABORT'
    TRACE
    COraSqlStatement::execute: Executing statement <SHUTDOWN ABORT>
    TRACE
    Temporary SQL script file: <ora_stmt_scr_tmp.sql>
    TRACE

    hi,
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    please check your environment variables

  • Oracle 8i database data recover problem

    Hi hi,
    I've recently encountered a problem on how to restoring data from old oracle folders to a new oracle 8i database.
    Originally, my oracle 8i was installed in windows 2000 server on a harddisk (J:\oracle old) separated from that the OS (windows 2000 server) resided. Recently, the harddisk with the OS has been permanantly demaged and I've installed windows 2000 server on a new harddisk (C:\winnt), reinstalled the oracle database (J:\oracle).
    However, is there any way to recover the data from an instance of the original database to the newly created database.
    I will be grateful for any suggestion? Thanks a lot.

    CREATE CONTROLFILE
    Caution:
    Oracle recommends that you perform a full backup of all files in the database before using this statement. For more information, see Oracle9i User-Managed Backup and Recovery Guide.
    Purpose
    Use the CREATE CONTROLFILE statement to re-create a control file in one of the following cases:
    All copies of your existing control files have been lost through media failure.
    You want to change the name of the database.
    You want to change the maximum number of redo log file groups, redo log file members, archived redo log files, datafiles, or instances that can concurrently have the database mounted and open.
    Note:
    If it is necessary to use the CREATE CONTROLFILE statement, do not include in the DATAFILE clause any datafiles in temporary or read-only tablespaces. You can add these types of files to the database later.
    An alternative to the CREATE CONTROLFILE statement is ALTER DATABASE BACKUP CONTROLFILE TO TRACE, which generates a SQL script in the trace file to re-create the controlfile. If your database contains any read-only or temporary tablespaces, that SQL script will also contain all the necessary SQL statements to add those files back into the database.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_54a.htm#SQLRF01203
    Joel P�rez

Maybe you are looking for

  • How to  make a good voip server +applet ?

    Here is my applet wich I made http://84.244.8.225/test.html It works a bit Here the code: http://84.244.8.225/javamic4.txt Any ideas/suggestions to make it better... (for example how to make a good server (windows) ?) Thx! Edited by: FrederikPot on S

  • Error while sending the mail( Database error for ADDR_PERS_COMP_COMM_GE)

    Hello guys, I am facing the error    " Database error for <ADDR_PERS_COMP_COMM_GET> <0> " as a pop-up message. below is my program. types: BEGIN OF t_p0002,         pernr type PERSNO,       "Personnel number         nachn TYPE PAD_NACHN,    "Last Nam

  • IPod Wifi, Ad-Hoc + ICS/Proxy

    Ello people, so i have an issue id like to resolve, trying to get my ipod online using an ad-hoc connection has proven quite a difficult thing. my current setup is: a laptop connected to the internet with a wifi card, setup with an Ad-Hoc connection.

  • Time machine thinks I have OSX Lion

    Last night I tried to upgrade the hard drive on my macbook pro. I pressed "back up now" with time machine to make sure I had a current snapshot of the system. Then I replaced the hard drive, booted off the time machine and tried to restore the system

  • No Picture Previews in Lightroom 3?

    Hi there I have just installed Lightroom 3 - on PC laptop - and imported some images from the Picture Folder on the OS drive Everything seems to be fine except (and its a major except) there are absolutely no thumbnails or previews of these pictures