I can no longer see FaceBook notifications in my notification area on my desk top. Can any one help me with this?

I can no longer see any Notifications from my FaceBook account in the notifications area on my Mac. I have it in the Notifications Area and it is still not providing me my notifications. Any suggestions?

Hi Tammy56,
Welcome to the Support Communities!
The article below may be able to help you with this.
Click on the link to see more details and screenshots. 
iCloud: Troubleshooting iCloud Calendar
http://support.apple.com/kb/TS3999?viewlocale=en_US
Cheers,
- Judy

Similar Messages

  • HT204302 i get a message when I plug in my ipod to my laptop saying "cannot use this ipod because apple mobile device is not started" can any one help me with this...I have never had this happen before

    Hello anyone
    I get a message when i plug in my ipod touch saying "cannot use this ipod because apple mobile service is not started" can anyone please help me with this problem...I had this message once before but I forgot how to correct it

    From the More Like This section on the right:
    I get error message when I plug in iPhone 4s saying "This iPhone cannot be used because the Apple Mobile Device service is not started"
    can't get my ipod to connect to tunes error message "cannot be used because the apple mobile device service is not started"  fixes? Using Win XP
    im trying to connect my ipod to itunes and its saying it cannot connect because the "Apple Mobile Device is not started" help
    Or see: iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • Can any one help me with this chat server

    The code below is of a client and server but the problem is that the msg can be sent only from the server and not the client I want that whenever a msg is sent from the server the control for writing the msg should go on to the client n den vise versa n should continue till the connection is terminated..plz help me....!
    CoDES
    for client
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.InetAddress;
    import java.net.Socket;
    import java.net.UnknownHostException;
    class client {
    public static void main(String[] args) throws IOException {
    Socket s =null;
    BufferedReader b=null;
    try{
    s=new Socket( InetAddress.getLocalHost(),98);
    b=new BufferedReader(new InputStreamReader(s.getInputStream()));
    catch(UnknownHostException u) {
    System.err.println("i dont know host");
    System.exit(0);
    String inp;
    while((inp=b.readLine())!=null){
    System.out.println(inp);
    b.close();
    s.close();
    FOR SERVER$
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.nio.channels.ServerSocketChannel;
    public class server {
    public static void main(String[] args) throws IOException {
    ServerSocket s1=null;
    try{
    s1=new ServerSocket(98);
    }catch(IOException u1)
    System.err.println("could not find port 98");
    System.exit(1);
    Socket c=null;
    try{
    c=s1.accept();
    System.out.println("connection from"+c);
    catch(IOException e)
    System.out.println("accept failed");
    System.exit(1);
    PrintWriter out=new PrintWriter(c.getOutputStream(),true);
    BufferedReader in=new BufferedReader(new InputStreamReader(c.getInputStream()));
    String I;
    BufferedReader sin=new BufferedReader(new InputStreamReader(System.in));
    System.out.println("i am ready to type now");
    while((I=sin.readLine())!=null) {
    out.println(I);
    out.close();
    sin.close();
    c.close();
    s1.close();
    }

    What you need is to have two loops running at the same time. One for receiving messages and other for waiting user input. This can be done by using separate threads.
    For example after client has made connection to server, start a new thread that runs loop for receiving messages from the socket and printing them to System.out. Then in the default thread start loop for reading users input. The server could have similar structure.
    So, what I think you are looking for are threads.

  • Can any one help me in this code

    Hi all,
    I have created a selection screen and my aim is to display some fields or some block dynamically by choosing some radio button is it possible.
    can any one help me in this.
    REPORT  z_g_test.
    TABLES: spfli,sbook,sscrfields.
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK 1.
    PARAMETERS:rad1 RADIOBUTTON GROUP g1 USER-COMMAND us1,
               rad2 RADIOBUTTON GROUP g1 DEFAULT 'X' .
    SELECTION-SCREEN BEGIN OF SCREEN 001 as subscreen ."WITH FRAME TITLE text-002.
    SELECT-OPTIONS: s_fldate FOR sbook-fldate.
    SELECTION-SCREEN END OF SCREEN 001.
    DATA ok_code LIKE sy-ucomm.
    INITIALIZATION.
    START-OF-SELECTION.
      SELECT * FROM spfli WHERE carrid IN s_carrid.
      ENDSELECT.
    END-OF-SELECTION.
      WRITE:spfli-carrid.
    AT SELECTION-SCREEN.
      CASE sscrfields-ucomm.
          WHEN'US1'.
    *      call screen 001 starting at 55 40.
      ENDCASE.
    Is i am going on the right way
    Regards,
    Lisa.
    Message was edited by: Lisa Roy
    Message was edited by: Lisa Roy
    Message was edited by: Lisa Roy

    This is what I meant. Copy this and try as it is and see if it serves your purpose.
    REPORT ztest1 .
    TABLES: spfli, sscrfields, sbook.
    SELECTION-SCREEN BEGIN OF TABBED BLOCK tabb1 FOR 4 LINES.
    SELECTION-SCREEN TAB (25) tabs1 USER-COMMAND ucomm1
                         DEFAULT SCREEN 001.
    SELECTION-SCREEN TAB (25) tabs2 USER-COMMAND ucomm2
                         DEFAULT SCREEN 002.
    SELECTION-SCREEN END OF BLOCK tabb1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE abc.
    PARAMETERS: p_date LIKE sy-datum.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF SCREEN 001 AS SUBSCREEN .
    SELECT-OPTIONS: s_fldate FOR sbook-fldate.
    SELECTION-SCREEN END OF SCREEN 001.
    SELECTION-SCREEN BEGIN OF SCREEN 002 AS SUBSCREEN .
    SELECT-OPTIONS:s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF SCREEN 002.
    INITIALIZATION.
      tabs1 = 'Search by flight date'.
      tabs2 = 'Search by flight number'.
      abc   = 'Some other parameters'.
    AT SELECTION-SCREEN OUTPUT.
      CASE sscrfields-ucomm.
        WHEN 'UCOMM1'.
          tabb1-prog = sy-repid.
          tabb1-dynnr   = 001.
          tabb1-activetab = 'TABS1'.
        WHEN 'UCOMM2'.
          tabb1-prog = sy-repid.
          tabb1-dynnr   = 002.
          tabb1-activetab = 'TABS2'.
      ENDCASE.

  • I want to create org data profile in service scenario, with price determination from sales org, distribution centre , can any one help me with these

    i want to create org data profile in service scenario, with price determination from sales org, distribution centre , can any one help me with these
    IF I CREATE SERVICE ORG WITH SERVICE SCENARIO ORG DATA PROFILE,
    MY PRICING IS NOT GETTING DETERMINED AS IT IS LINKED TO SALES ORG AND DISTRIBUTION CHANNEL THROUGH PRICING DETERMINATION SO HOW TO DO THE CUSTOMIZATION FOR THIS SITUATION
    WITH REGARDS,
    SATHISH

    Hi Satish,
    Please assign the org det. rules to org det. profile with Sales and Service scenarios and then assign the org. det. profile to transaction type. The below screenshot is just for your reference.
    Hope it would fix your issue.
    Regards,

  • After a few minutes on safari it freezes everything i can't even force quit i have to shut off by holding the power button down please help me with this. thanks

    everything freezes i can't even force quit i have to shut off by holding the power button down please help me with this. thanks

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • TS1424 I get "We could not complete your iTunes Store request. An unknown error occurred (4002)  Can any person help me with this on, please?

    I get "We could not complete your iTunes Store request. An unknown error occurred (4002)  Can any person help me with this on, please?

    Turning off iTunes Match and Genius and then turning them back on appears to have worked for some people e.g.
    https://discussions.apple.com/message/22059685#22059685
    https://discussions.apple.com/message/18427550#18427550

  • I can no longer receive Facebook messages in the notification center after upgrading to Mavericks

    Hi everibody! As in the heading, i can no longer receive Fb messages in the notification center, but i can still receive push notifications for facebook likes and comments. Is someone able to fix this issue?

    The problem has been solved with the help of a MobileMe online counsellor. My MobileMe account had in fact been hacked into and the fraudster had been redirecting my e-mail messages to a phony account that he controlled. We took the forward off and reset all my passwords and security questions, which solved the immediate problem.
    Thx.

  • I can no longer see my account name, but get a Guest user account, I can no longer see my account name, but get a Guest user account

    I can no longer see my account name so I can gain access to my information, but now all I get is a Guest user account and it won't let me log into that account. All it lests me do is re-start the computer and use it in restricted mode. Can someone please help me!

    Recommendation for your consideration
    Hopefully your original user account was an "administrator". I have two admin accts in case one admin. acct gets "trashed.
    Lets see what other forum members offer: my solution requires use of terminal and works. CLI (Command Line Interface) might be intimidating for you but we'll see what others possibly offer.
    As I say the solution I have works well and will allow you to create new user(s) replacing your former users whatever type they were. I promise to check back today if no solution to you is offered...
    Let 'er rip and...
    cheers

  • I can no longer see my pointer and pull down windows pop up on everything!!! HELP

    I can no longer see my pointer and when I go to say "applications" a pop up or pull down menu open up...a tiny noe with words. Before a window with icons would open up and I liked that. Its also happening with the internet. instead of having apointer I see nothing and a pull down menu appears. I can't shoose anything because there is no pointer. What setting is this and how do I change it back? I want a normal pointer where I click on link and they open new links then I can type where I click too.

    dunno....could be a gamble...you might have Simple Finder turned on, or accessibilty (for those with vision problems, etc). I think pressing Command+Shift+F8 (that's fn+f8 key) ought to turn it off. If you're really stuck
    command+Shift+3 or command+Shift+4 will let you take a screenshot of your desktop which you might be able to post here. Also, check your views setting (Command+J key) which will let you display icons and stuff)
    maybe you hit that by accident
    good luck
    John B

  • My display text of macbook pro 10.7.5 appears blurred , can any body help me with this issue. Everything i open now - chrome, safari - appears blurred

    Everything on my macbook air 10.7.5 appears blurred. I tried searching a few things but didnt get any success.
    Can anybody please help me with this ?

    Nothing looks blurred to me on the screen shot you posted.  However, I did notice that some of the fonts in the tabs are faded.  Which browser are you using?  You should post in a browser forum about that and also the blurring that you see. 
    Since your Finder fonts looks blurry to you, go to System Preferences/Personal/Appearance - play around with the text smoothing setting.  If that does not work, play around with the resolution settings - System Preferences/Displays/Display 

  • I am restoreing my iphone 3g and on the instaling frameware i keep getting a code 1604 can any one help me with what i am ment to do when i get this error

    as title can any one help me thank you

    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.

  • I have installed IOS 7 in my 4S but still when i connect it to itunes i am not able to copy music from my Itunes to my Phone any idea why? can some one help me with this. I am using Mac book Pro.

    Hi All,
    Issue 1:
    I have installed IOS 7 in my 4s and when i connect it to my  Mac itunes it detects my phone but i am not able to copy  from the itunes  version 11.1 (126).
    can some one check why i am not able to transfer pics or music from my Mac to iPhone 4s and can let me know on this please.
    Issue 2:
    And to all my apps i am not getting automatic  pop up when i receive a message, It says "Please connect to itunes to use push Notification" can some one say how to go about his.
    Issue 3:
    when i try to launch my facetime from my phone.After entering my user name and password it not launching my Facetime or imessage. dont know whats the reason, I am not able to use both Facetime and imessage from my iphone 4s.
    Looking forward for your reply.
    reagrds
    sathish

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • 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

  • Can any one help me read this panic report

    Ok first let me tell you the story how i got this mac. The ex owner decided to put it on his driveway for some reason and totally forgot he put it there when he came out of his driveway with his pick up truck and boom this mac actually looks like it was ran over lol so he gave it to a friend of mine(as a gift don't know why) he couldn't fix it so then my friend gave it to me i got it up and running everything kinda works even tho the logic board and the casing are bended so this is how how got to the mac world I've played games with it watched movies and use several programs. now my problem is that i use to have mac os lion and now i upgraded to yosemite now every time try to start the mac i get this panic result and the mac keeps restarting i did have the same problem when i had lion but at least after the third or fourth time the mac will boot up I'm trying to fix it peace by peace since i can't afford a brand new one wich pretty much ill end up paying the same price as a new one wich i don't mind since its not gonna be in one shot ok here my report ps I'm in safemode and i just wanna say i fell in love with mac ever since i got this macbook pro
    Anonymous UUID:       9C833C45-DC0A-CF26-7029-AD4C373CFD8A
    Fri Feb  6 01:33:17 2015
    *** Panic Report ***
    panic(cpu 1 caller 0xffffff801541e80a): Kernel trap at 0xffffff7f96e9b483, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000010, CR3: 0x000000007c64a000, CR4: 0x0000000000002660
    RAX: 0x674c25fc9cce0001, RBX: 0xffffff8045b2d000, RCX: 0xffffff80699c5000, RDX: 0xffffff806ee0b908
    RSP: 0xffffff806ee0bac0, RBP: 0xffffff806ee0bac0, RSI: 0x0000000000000000, RDI: 0x0000000000000000
    R8:  0x000000000000002b, R9:  0xffffff801dd4804f, R10: 0x0000000000000010, R11: 0x000000000000002b
    R12: 0x0000000000000000, R13: 0xffffff801de27800, R14: 0xffffff8045b2d000, R15: 0xffffff8045b2d000
    RFL: 0x0000000000010293, RIP: 0xffffff7f96e9b483, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000010, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff806ee0b770 : 0xffffff801533a811
    0xffffff806ee0b7f0 : 0xffffff801541e80a
    0xffffff806ee0b9b0 : 0xffffff801543a443
    0xffffff806ee0b9d0 : 0xffffff7f96e9b483
    0xffffff806ee0bac0 : 0xffffff7f96e8492a
    0xffffff806ee0bb10 : 0xffffff7f96e84878
    0xffffff806ee0bb30 : 0xffffff7f96e60116
    0xffffff806ee0bb70 : 0xffffff7f95e396df
    0xffffff806ee0bbc0 : 0xffffff7f95e395f2
    0xffffff806ee0bbe0 : 0xffffff7f95e3d90a
    0xffffff806ee0bc70 : 0xffffff7f95e358ac
    0xffffff806ee0bcb0 : 0xffffff7f95e85fe8
    0xffffff806ee0bd00 : 0xffffff80158b85b1
    0xffffff806ee0bd50 : 0xffffff80158ff0b5
    0xffffff806ee0bdc0 : 0xffffff80153ea95e
    0xffffff806ee0be10 : 0xffffff801533e91c
    0xffffff806ee0be40 : 0xffffff80153235a3
    0xffffff806ee0be90 : 0xffffff8015333e8d
    0xffffff806ee0bf10 : 0xffffff801540a142
    0xffffff806ee0bfb0 : 0xffffff801543ac66
          Kernel Extensions in backtrace:
             com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f95e2b000->0xffffff7f95e65fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[87711C74-47D5-3545-8A62-035E1C7C4198]@0xffffff 7f95b24000
             com.apple.nvidia.classic.NVDAResmanTesla(10.0)[796AE430-39FB-3255-8161-D52AFA28 EE2B]@0xffffff7f95e82000->0xffffff7f960ebfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[87711C74-47D5-3545-8A62-035E1C7C4198]@0xffffff 7f95b24000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f95e72000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f95e2b000
             com.apple.GeForceTesla(10.0)[97A18479-CC43-3073-AEB2-C5C92195067A]@0xffffff7f96 e5c000->0xffffff7f96f29fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[87711C74-47D5-3545-8A62-035E1C7C4198]@0xffffff 7f95b24000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f95e72000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f95e2b000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(10.0.0)[796AE430-39FB-3255-8161-D52AFA 28EE2B]@0xffffff7f95e82000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    14A379b
    Kernel version:
    Darwin Kernel Version 14.0.0: Sat Sep 27 03:58:47 PDT 2014; root:xnu-2782.1.97~11/RELEASE_X86_64
    Kernel UUID: D1F807E1-A660-3126-96DF-6A9E65444DA3
    Kernel slide:     0x0000000015000000
    Kernel text base: 0xffffff8015200000
    __HIB  text base: 0xffffff8015100000
    System model name: MacBookPro5,2 (Mac-F2268EC8)
    System uptime in nanoseconds: 77869146695
    last loaded kext at 77595893148: com.apple.driver.AppleHWSensor 1.9.5d0 (addr 0xffffff7f974c1000, size 36864)
    loaded kexts:
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AppleHDAHardwareConfigDriver 266.5
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AGPM 100.14.32
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 266.5
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.0f9
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyDriver 266.5
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleLPC 1.7.3
    com.apple.GeForceTesla 10.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.nvidia.NVDAStartup 10.0.0
    com.apple.iokit.IOBluetoothUSBDFU 4.3.0f9
    com.apple.driver.AppleMuxControl 3.7.19
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyEventDriver 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.driver.AppleFileSystemDriver 3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.nvenet 2.0.22
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBOHCI 656.4.1
    com.apple.driver.AirPort.Brcm4331 800.20.24
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.AppleGraphicsDeviceControl 3.7.19
    com.apple.driver.DspFuncLib 266.5
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOBluetoothFamily 4.3.0f9
    com.apple.driver.AppleHDAController 266.5
    com.apple.iokit.IOHDAFamily 266.5
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.nvidia.classic.NVDANV50HalTesla 10.0.0
    com.apple.nvidia.classic.NVDAResmanTesla 10.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleGraphicsControl 3.7.19
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.9
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.0
    com.apple.iokit.IOUSBMassStorageClass 3.7.0
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.driver.NVSMU 2.2.9
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.iokit.IO80211Family 700.52
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    Unable to gather system configuration information.Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 2.8 GHz, 2 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.24)
    Bluetooth: Version 4.3.0f9 14854, 3 services, 27 devices, 0 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD1600BEVS-00UST0, 160.04 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N, 3.92 GB
    USB Device: Built-in iSight
    USB Device: USB 2.0  SATA BRIDGE
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus:

    GPU problem or memory problem.
    OS X- About kernel panics
    Visit The XLab FAQs and read the FAQ on diagnosing kernel panics.

Maybe you are looking for

  • Acrobat V9 Pro OCR can't produce a file

    I am trying to perform OCR on a credit card statement. The statement has 3 PDF pages and except for the non-regular header info at the top of the page, everything is in nice columns - five of them.   I specify the output file to be an excel spreadshe

  • Maintain Services or Limits in BAPI_PO_CREATE1

    Great day Friends, Its my first day on SDN. Hoping to find helpful answers here and Wish you luck for your career also. I am working on BAPI_PO_CREATE1. I've used following tables. return poitem poitemx poaccount poaccountx poservices I've passed the

  • Sound Lost with Yosemite update

    Hey all, adding my name to the list of everyone having sound problems. I searched but did not find a specific way to fix the problem...maybe Apple will finally fix the bug in an upcoming update? Until then this is very annoying. I hear no sound and h

  • No file found installer

    I create with the installer a setup.exe. When I  let it run, I can choose the directory where I can save the application and the runtime.  When I continue I get a error message that file is not found. But there is no description what there is missing

  • About o-r mapping

    Hi all, I have two questions when creating database scheme: 1, kodo use a default FlatInheritanceMapping to mapping class inheritance hierachy to a RDMS.But this is not always a practic way.In most time we mapping every leaf class in the hierachy to