Session manager is taking 10% of the total response time

Hi
As per our recent analyses session manager is taking around
10% of the total response time, we have done the archiving of data
however it still taking around 9% of the total response time, I have checked few notes from service market place. However i would request you to suggest something
sap notes
164102
203617
161053
26417
203924
My system configuration
SAP System ID WCP
SAP Component ECC 5.0
SAP Release ERP 2004
Database System Oracle 10.2.0.4
Operating System Windows Server 2003 on x86_32, AIX 5.3,
Windows Server 2003 on x86_64
Thanks in advance
Regards
Rizvi
+919874428887

Hi,
first check the user nodes from PROFGEN_CORR_REPORT_5 (from SE38)
Here you can find the user nodes for all users, and disable user nodes if any user had high utilization.
Please check SAP Note 203617
Regards
Nick Loy

Similar Messages

  • How to get the total execution time from a tkprof file

    Hi,
    I have a tkprof file. How can I get the total execution time. Going through the file i guess the sum of "Total Waited" would give the total time in the section "Elapsed times include waiting on following events:"
    . The sample of tkprof is given below.
    SQL ID: gg52tq1ajzy7t Plan Hash: 3406052038
    SELECT POSTED_FLAG
    FROM
    AP_INVOICE_PAYMENTS WHERE CHECK_ID = :B1 UNION ALL SELECT POSTED_FLAG FROM
      AP_PAYMENT_HISTORY APH, AP_SYSTEM_PARAMETERS ASP WHERE CHECK_ID = :B1 AND
      NVL(APH.ORG_ID, -99) = NVL(ASP.ORG_ID, -99) AND
      (NVL(ASP.WHEN_TO_ACCOUNT_PMT, 'ALWAYS') = 'ALWAYS' OR
      (NVL(ASP.WHEN_TO_ACCOUNT_PMT, 'ALWAYS') = 'CLEARING ONLY' AND
      APH.TRANSACTION_TYPE IN ('PAYMENT CLEARING', 'PAYMENT UNCLEARING')))
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute    442      0.08       0.13          0          0          0           0
    Fetch      963      0.22       4.72        350      16955          0         521
    total     1406      0.31       4.85        350      16955          0         521
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 173     (recursive depth: 1)
    Number of plan statistics captured: 1
    Rows (1st) Rows (avg) Rows (max)  Row Source Operation
             1          1          1  UNION-ALL  (cr=38 pr=3 pw=0 time=139 us)
             1          1          1   TABLE ACCESS BY INDEX ROWID AP_INVOICE_PAYMENTS_ALL (cr=5 pr=0 pw=0 time=124 us cost=6 size=12 card=1)
             1          1          1    INDEX RANGE SCAN AP_INVOICE_PAYMENTS_N2 (cr=4 pr=0 pw=0 time=92 us cost=3 size=0 card=70)(object id 27741)
             0          0          0   NESTED LOOPS  (cr=33 pr=3 pw=0 time=20897 us)
             0          0          0    NESTED LOOPS  (cr=33 pr=3 pw=0 time=20891 us cost=12 size=41 card=1)
             1          1          1     TABLE ACCESS FULL AP_SYSTEM_PARAMETERS_ALL (cr=30 pr=0 pw=0 time=313 us cost=9 size=11 card=1)
             0          0          0     INDEX RANGE SCAN AP_PAYMENT_HISTORY_N1 (cr=3 pr=3 pw=0 time=20568 us cost=2 size=0 card=1)(object id 27834)
             0          0          0    TABLE ACCESS BY INDEX ROWID AP_PAYMENT_HISTORY_ALL (cr=0 pr=0 pw=0 time=0 us cost=3 size=30 card=1)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                       350        0.15          4.33
      Disk file operations I/O                        3        0.00          0.00
      latch: shared pool                              1        0.17          0.17
    ********************************************************************************

    user13019948 wrote:
    Hi,
    I have a tkprof file. How can I get the total execution time.
    call count cpu elapsed disk query current rows
    total 1406 0.31 4.85 350 16955 0 521TOTAL ELAPSED TIME is 4.85 seconds from line above

  • Evaluate the total execution time

    Hi,
    I need to find the total execution time taken upon executing a function module. I tried to output the system time in the start of the FM and at the end of the FM. But the time taken in execution in the DEV system could be lessthan 1 sec, which is not visible to evaluate.
    Any one with an idea, please help.
    Regards,
    Satish Kanteti

    Hi,
    You can use like below
    DATA T TYPE I.
    GET RUN TIME FIELD T.
    WRITE: / 'Begin Runtime', T.
    *Call FM
    GET RUN TIME FIELD T.
    WRITE: / 'End Runtime', T.
    For more details check the link below
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db994235c111d1829f0000e829fbfe/content.htm

  • Reg Increasing the EJB Response Time

    We are facing below performance problems in our application,
    1. Response time from EJB (Stateless Session Bean) to Client (Swing).
    2. Time taken for looping through the Result Set.
    For 5000 records, our query is taking 0.2 Secs but looping through the ResultSet is taking around 16 seconds and Response time for transferring 160 kb (object data) from EJB to Client is taking around 30 Secs.
    We have achieved some improvement in ResultSet looping time by setting the setFetchSize of ResultSet to 250.
    Can anyone suggest?
    1. Is there any way to increase the Data Transfer time (Response time) from EJB to Client?
    2. What is the ideal value for setting the value for ResultSet.setFetchSize() ( No of records we fetch vary from 1 � 3,00,000 records)

    1. Response time from EJB (Stateless Session Bean) to
    Client (Swing). Consider non-EJB options. They might prove efficient in your case.
    2. Time taken for looping through the Result Set. Try and design your code as to not require all the records at a time.
    For 5000 records, our query is taking 0.2 Secs but
    looping through the ResultSet is taking around 16
    seconds and Response time for transferring 160 kb
    (object data) from EJB to Client is taking around 30
    Secs.
    We have achieved some improvement in ResultSet
    looping time by setting the setFetchSize of ResultSet
    to 250. There is a limit to what you can achieve with that.
    Can anyone suggest?
    1. Is there any way to increase the Data Transfer
    time (Response time) from EJB to Client? I suppose you would want to reduce the response time.
    2. What is the ideal value for setting the value for
    ResultSet.setFetchSize() ( No of records we fetch
    vary from 1 � 3,00,000 records)
    shrug

  • Help required in optimizing the query response time

    Hi,
    I am working on a application which uses a jdbc thin client. My requirement is to select all the table rows in one table and use the column values to select data in another table in another database.
    The first table can have maximum of 6 million rows but the second table rows will be around 9000.
    My first query is returning within 30-40 milliseconds when the table is having 200000 rows. But when I am iterating the result set and query the second table the query is taking around 4 millisecond for each query.
    the second query selection criteria is to find the value in the range .
    for example my_table ( varchar2 column1, varchar2 start_range, varchar2 end_range);
    My first query returns a result which then will be used to select using the following query
    select column1 from my_table where start_range < my_value and end_range> my_value;
    I have created an index on start_range and end_range. this query is taking around 4 millisseconds which I think is too much.
    I am using a preparedStatement for the second query loop.
    Can some one suggest me how I can improve the query response time?
    Regards,
    Shyam

    Try the code below.
    Pre-requistee: you should know how to pass ARRAY objects to oracle and receive resultsets from java. There are 1000s of samples available on net.
    I have written a sample db code for the same interraction.
    Procedure get_list takes a array input from java and returns the record set back to java. You can change the tablenames and the creteria.
    Good luck.
    DROP TYPE idlist;
    CREATE OR REPLACE TYPE idlist AS TABLE OF NUMBER;
    CREATE OR REPLACE PACKAGE mypkg1
    AS
       PROCEDURE get_list (myval_list idlist, orefcur OUT sys_refcursor);
    END mypkg1;
    CREATE OR REPLACE PACKAGE BODY mypkg1
    AS
       PROCEDURE get_list (myval_list idlist, orefcur OUT sys_refcursor)
       AS
          ctr   NUMBER;
       BEGIN
          DBMS_OUTPUT.put_line (myval_list.COUNT);
          FOR x IN (SELECT object_name, object_id, myvalue
                      FROM user_objects a,
                           (SELECT myval_list (ROWNUM + 1) myvalue
                              FROM TABLE (myval_list)) b
                     WHERE a.object_id < b.myvalue)
          LOOP
             DBMS_OUTPUT.put_line (   x.object_name
                                   || ' - '
                                   || x.object_id
                                   || ' - '
                                   || x.myvalue
          END LOOP;
       END;
    END mypkg1;
    [pre]
    Testing the code above. Make sure dbms output is ON.
    [pre]
    DECLARE
       a      idlist;
       refc   sys_refcursor;
       c number;
    BEGIN
       SELECT x.nu
       BULK COLLECT INTO a
         FROM (SELECT 5000 nu
                 FROM DUAL) x;
       mypkg1.get_list (a, refc);
    END;
    [pre]
    Vishal V.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to obtain the Query Response Time of a query?

    Given the Average Length of Row of tables and the number of rows in each table,
    is there a way we get the query response time of a query involving
    those tables. Query includes joins as well.
    For example, suppose there 3 tables t1, t2, t3. I wish to obtain the
    time it takes for the following query:
    Query
    SELECT t1.col1, t2.col2
    FROM t1, t2, t3
    WHERE t1.col1 = t2.col2
    AND t1.col2 IN ('a', 'c', 'd')
    AND t2.col1 = t3.col2
    AND t2.col1 = t1.col1 (+)
    ORDER BY t1.col1
    Given are:
    Average Row Length of t1 = 200 bytes
    Average Row Length of t2 = 100 bytes
    Average Row Length of t3 = 500 bytes
    No of rows in t1 = 100
    No of rows in t2 = 1000
    No of rows in t3 = 500
    What is required is the 'query response time' for the said query.

    I do not know how to do it myself. But if you are running Oracle 10g, I believe that there is a new tool called: SQL Tuning Advisor which might be able to help.
    Here are some links I found doing a google search, and it looks like it might meet your needs and even give you more information on how to improve your code.
    http://www.databasejournal.com/features/oracle/article.php/3492521
    http://www.databasejournal.com/features/oracle/article.php/3387011
    http://www.oracle.com/technology/obe/obe10gdb/manage/perflab/perflab.htm
    http://www.oracle.com/technology/pub/articles/10gdba/week18_10gdba.html
    http://www.oracle-base.com/articles/10g/AutomaticSQLTuning10g.php
    Have fun reading:
    You can get help from teachers, but you are going to have to learn a lot by yourself, sitting alone in a room ....Dr. Seuss
    Regards
    Tim

  • CPIC/RFC Time vs Total Response time

    Hi experts,
    We are experiencing performance issues in our SRM system, when checking the transaction ST03 we have identified a high dialog comsuption time in the Average RFC Interface time (CPIC/RFC), this time is even higher than the Total Average Reponse Time per dialog step.
    Could you please let us know if the component Average RFC Interface time (CPIC/RFC) is part of the average response time? We can't understand why this time is almos the double than the
    Thanks and best regards,

    Hello Sowmya,
    I would normally suggest a solution without having detailed background about your system such as SAP kernel, SAP release etc.
    But the following SAP Note almost describes your issue.
    2071875 - Incorrect Average RFC Interface Time ("CPIC/RFC") in ST03N Workload Overview ("Average time per step in ms")
    Hope that helps.
    Regards,
    Siddhesh

  • CVU failing with error msg(PRVF-5636 : The DNS response time for an unreach

    I am installing 4Node 10g RAC on OEL5.3, i downloaded CU from OTN and getting below warning messages.
    Checking the file "/etc/resolv.conf"; to make sure only one of domain and search entries is defined
    File "/etc/resolv.conf"; does not have both domain and search entries defined
    Checking if domain entry in file "/etc/resolv.conf"; is consistent across the nodes...
    domain entry in file "/etc/resolv.conf"; is consistent across nodes
    Checking if search entry in file "/etc/resolv.conf"; is consistent across the nodes...
    search entry in file "/etc/resolv.conf"; is consistent across nodes
    Checking file "/etc/resolv.conf"; to make sure that only one search entry is defined
    All nodes have one search entry defined in file "/etc/resolv.conf";
    Checking all nodes to make sure that search entry is "soft1" as found on node "racnode4"
    All nodes of the cluster have same value for 'search'
    Checking DNS response time for an unreachable node
    Node Name Status
    racnode4 failed
    racnode3 failed
    racnode2 failed
    racnode1 failed
    PRVF-5636 : The DNS response time for an unreachable node exceeded "15000" ms on following nodes: racnode4,racnode3,racnode2,racnode1
    File "/etc/resolv.conf"; is not consistent across nodes
    Check: Time zone consistency
    Result: Time zone consistency check passed
    Pre-check for cluster services setup was unsuccessful on all the nodes.
    [oracle@racnode1 bin]$

    PRVF-5636 : The DNS response time for an unreachable node exceeded "15000" ms on following nodes: racnode4,racnode3,racnode2,racnode1 have you checked this note? Runcluvfy - Dns Response Time Check - Fails with PRVF-5636 The DNS response time for an unreachable node exceeded "15000" ms [ID 1326997.1]
    Also have you set Domain name on all servers?
    [root@oracle-ha ~]# domainname
    (none)
    [root@oracle-ha ~]# domainname ckpt.com
    [root@oracle-ha ~]# domainname
    ckpt.com
    [root@oracle-ha ~]#You can check DNS configuration of your setup using this link http://computernetworkingnotes.com/network-administrations/dns-server.html

  • PRVF-5636 : The DNS response time for an unreachable node exceeded "15000"

    Friends,
    OS: OEL 6.3 64 bit
    DB: 11.2.0.3
    Environment: VirtualBox 4.1.20
    i have 3 nodes. one is for dns and other two for rac1 and rac2
    i have done all the preliminary steps. then i started
    [oracle@rac1 grid]$ ./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verboseand all are passed except the above subjected error.
    Checking DNS response time for an unreachable node
      Node Name                             Status                 
      rac2                                  failed                 
      rac1                                  failed                 
    PRVF-5636 : The DNS response time for an unreachable node exceeded "15000" ms on following nodes: rac2
    File "/etc/resolv.conf" is not consistent across nodesok....now to solve this error...i tried many options...but not able to succeed.
    Try 1:
    [root@mydns ~]# time nslookup rac1
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac1.sathy.net
    Address: 192.168.1.3
    real    0m0.051s
    user    0m0.003s
    sys     0m0.011s
    [root@mydns ~]# [oracle@rac1 grid]$ time nslookup mydns
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   mydns.sathy.net
    Address: 192.168.1.2
    real    0m0.019s
    user    0m0.005s
    sys     0m0.008s
    [oracle@rac1 grid]$
    [root@rac2 ~]# time nslookup rac1
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac1.sathy.net
    Address: 192.168.1.3
    real    0m0.019s
    user    0m0.008s
    sys     0m0.005s
    [root@rac2 ~]# Try 2:
    [root@mydns ~]# nslookup sathy-scan
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.8
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.9
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.7
    [root@mydns ~]# nslookup rac1
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac1.sathy.net
    Address: 192.168.1.3
    [root@mydns ~]# nslookup rac2
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac2.sathy.net
    Address: 192.168.1.5
    [root@mydns ~]#
    [oracle@rac1 grid]$ nslookup sathy-scan
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.9
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.7
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.8
    [oracle@rac1 grid]$ nslookup rac2
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac2.sathy.net
    Address: 192.168.1.5
    [oracle@rac1 grid]$ nslookup rac1
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac1.sathy.net
    Address: 192.168.1.3
    [oracle@rac1 grid]$
    [root@rac2 ~]# nslookup sathy-scan
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.7
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.8
    Name:   sathy-scan.sathy.net
    Address: 192.168.1.9
    [root@rac2 ~]# nslookup rac1
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac1.sathy.net
    Address: 192.168.1.3
    [root@rac2 ~]# nslookup rac2
    Server:         192.168.1.2
    Address:        192.168.1.2#53
    Name:   rac2.sathy.net
    Address: 192.168.1.5
    [root@rac2 ~]# Try 3:
    [root@mydns ~]# cat /etc/named.conf
    // Default named.conf generated by install of bind-9.2.4-30.el4_7.2
    options {
            listen-on port 53 { any; };
            directory "/var/named";
            dump-file "/var/named/data/cache_dump.db";
            statistics-file "/var/named/data/named_stats.txt";
            forwarders { 192.168.1.1; };
    include "/etc/rndc.key";
    zone "sathy.net" IN {
    type master;
    file "sathy.net.zone";
    allow-update { none; };
    zone "1.168.192.in-addr.arpa." IN {
    type master;
    file "1.168.192.in-addr.arpa";
    allow-update { none; };
    zone "." in {
    type hint;
    file "/dev/null";
    [root@mydns ~]# Try 4:
    [root@mydns ~]# cat /etc/selinux/config
    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    #     enforcing - SELinux security policy is enforced.
    #     permissive - SELinux prints warnings instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    SELINUX=disabled
    # SELINUXTYPE= can take one of these two values:
    #     targeted - Targeted processes are protected,
    #     mls - Multi Level Security protection.
    #SELINUXTYPE=targeted
    [root@mydns ~]#
    [oracle@rac1 grid]$ cat /etc/selinux/config
    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    #     enforcing - SELinux security policy is enforced.
    #     permissive - SELinux prints warnings instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    SELINUX=disabled
    # SELINUXTYPE= can take one of these two values:
    #     targeted - Targeted processes are protected,
    #     mls - Multi Level Security protection.
    #SELINUXTYPE=targeted
    [oracle@rac1 grid]$
    [root@rac2 ~]# cat /etc/selinux/config
    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    #     enforcing - SELinux security policy is enforced.
    #     permissive - SELinux prints warnings instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    SELINUX=disabled
    # SELINUXTYPE= can take one of these two values:
    #     targeted - Targeted processes are protected,
    #     mls - Multi Level Security protection.
    #SELINUXTYPE=targeted
    [root@rac2 ~]# what else i have to check to solve this error?
    for the past 2 days..i am trying to solve this error. may be somewhere a small mistake is happened from my side, but i am not able to find out.
    hope somebody will find out and help me.
    thanks

    ok...here it is....
    [root@mydns ~]# cat /etc/resolv.conf
    # Generated by NetworkManager
    search sathy.net
    nameserver 192.168.1.2
    [root@mydns ~]#
    [root@rac1 ~]# cat /etc/resolv.conf
    # Generated by NetworkManager
    search sathy.net
    nameserver 192.168.1.2
    [root@rac1 ~]#
    [root@rac2 ~]# cat /etc/resolv.conf
    # Generated by NetworkManager
    search sathy.net
    nameserver 192.168.1.2
    [root@rac2 ~]#
    [root@mydns ~]# cat /etc/hosts
    #127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
    #::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
    127.0.0.1               localhost.localdomain localhost
    ::1            localhost6.localdomain6 localhost6
    # Public Network – (eth0)
    192.168.1.3     rac1.sathy.net    rac1
    192.168.1.5     rac2.sathy.net    rac2
    # Public Virtual IP (VIP) addresses – (eth0:1)
    192.168.1.4     rac1-vip.sathy.net rac1-vip
    192.168.1.6     rac2-vip.sathy.net rac2-vip
    # Private Interconnect – (eth1)
    192.168.2.3      rac1-priv.sathy.net       rac1-priv
    192.168.2.5      rac2-priv.sathy.net       rac2-priv
    #Compute Node Client Access SCAN Interface details
    #192.168.1.7   sathy-scan.sathy.net  sathy-scan
    #192.168.1.8   sathy-scan.sathy.net  sathy-scan
    #192.168.1.9   sathy-scan.sathy.net  sathy-scan
    [root@mydns ~]#
    [root@rac1 ~]# cat /etc/hosts
    #127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
    #::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
    127.0.0.1               localhost.localdomain localhost
    ::1            localhost6.localdomain6 localhost6
    # Public Network – (eth0)
    192.168.1.3     rac1.sathy.net    rac1
    192.168.1.5     rac2.sathy.net    rac2
    # Public Virtual IP (VIP) addresses – (eth0:1)
    192.168.1.4     rac1-vip.sathy.net rac1-vip
    192.168.1.6     rac2-vip.sathy.net rac2-vip
    # Private Interconnect – (eth1)
    192.168.2.3      rac1-priv.sathy.net       rac1-priv
    192.168.2.5      rac2-priv.sathy.net       rac2-priv
    #Compute Node Client Access SCAN Interface details
    #192.168.1.7   sathy-scan.sathy.net  sathy-scan
    #192.168.1.8   sathy-scan.sathy.net  sathy-scan
    #192.168.1.9   sathy-scan.sathy.net  sathy-scan
    [root@rac1 ~]#
    [root@rac2 ~]# cat /etc/hosts
    #127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
    #::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
    127.0.0.1               localhost.localdomain localhost
    ::1            localhost6.localdomain6 localhost6
    # Public Network – (eth0)
    192.168.1.3     rac1.sathy.net    rac1
    192.168.1.5     rac2.sathy.net    rac2
    # Public Virtual IP (VIP) addresses – (eth0:1)
    192.168.1.4     rac1-vip.sathy.net rac1-vip
    192.168.1.6     rac2-vip.sathy.net rac2-vip
    # Private Interconnect – (eth1)
    192.168.2.3      rac1-priv.sathy.net       rac1-priv
    192.168.2.5      rac2-priv.sathy.net       rac2-priv
    #Compute Node Client Access SCAN Interface details
    #192.168.1.7   sathy-scan.sathy.net  sathy-scan
    #192.168.1.8   sathy-scan.sathy.net  sathy-scan
    #192.168.1.9   sathy-scan.sathy.net  sathy-scan
    [root@rac2 ~]#
    [oracle@rac1 ~]$ ssh rac2 date
    Sun Sep  9 22:04:45 IST 2012
    [oracle@rac1 ~]$ su - grid
    Password:
    [grid@rac1 ~]$ ssh rac2 date
    Sun Sep  9 22:04:54 IST 2012
    [grid@rac1 ~]$
    [oracle@rac2 ~]$ ssh rac1 date
    Sun Sep  9 22:04:18 IST 2012
    [oracle@rac2 ~]$ su - grid
    Password:
    [grid@rac2 ~]$ ssh rac1 date
    Sun Sep  9 22:04:31 IST 2012
    [grid@rac2 ~]$ Now the error is ...
    PRVF-5637 : DNS response time could not be checked on following nodes: rac2,rac1what else?
    i wonder how it was successful in my previous installation which in oel 5.7....
    Edited by: OraDB on Sep 9, 2012 9:44 AM

  • PRVF-5636 : The DNS response time for an unreachable node exceeded "15000" ms on following nodes

    HI
    I received this error message when i was trying to install 10g software on oracle linux 5.632 bit machine . how to resolve this issues
    Checking consistency of file "/etc/resolv.conf" across nodes
    Checking the file "/etc/resolv.conf" to make sure only one of domain and search entries is defined
    File "/etc/resolv.conf" does not have both domain and search entries defined
    Checking if domain entry in file "/etc/resolv.conf" is consistent across the nodes...
    domain entry in file "/etc/resolv.conf" is consistent across nodes
    Checking if search entry in file "/etc/resolv.conf" is consistent across the nodes...
    search entry in file "/etc/resolv.conf" is consistent across nodes
    Checking DNS response time for an unreachable node
      Node Name                             Status                 
      rac2                                  failed                 
      rac1                                  failed                 
    PRVF-5636 : The DNS response time for an unreachable node exceeded "15000" ms on following nodes: rac2,rac1
    File "/etc/resolv.conf" is not consistent across nodes
    Thanks

    [oracle@bdk-dev-db2 ~]$ time nslookup bdk-dev-db2
    Server: 10.244.56.102
    Address: 10.244.56.102#53
    Name: bdk-dev-db2.dev.com
    Address: 10.244.56.104
    real 0m1.811s
    user 0m0.003s
    sys 0m0.004s
    [oracle@bdk-dev-db2 ~]$ time nslookup bdk-dev-db1
    Server: 10.244.56.102
    Address: 10.244.56.102#53
    Name: bdk-dev-db1.dev.com
    Address: 10.244.56.103
    real 0m0.007s
    user 0m0.003s
    sys 0m0.002s

  • The FormsListener response time is unacceptable

    We are getting this critical message on Response time metrics under all metrics on FORMS screen on Oracle Enterprise Grid Control.
    Message:
    The FormsListener response time is unacceptable.
    On one of the server we are getting this message at every 2 minutes followed by a message saying 'CLEARED-The FormsListener response time is unacceptable'.
    We are using Oracel Application server 10g (9.0.4) on Windows 2003
    Did any one got this message?
    I tried to search on metalink and on google but did not fine anything helpful.
    Any help would be appreciated.
    Thanks,
    Mukesh

    Hi,
    you my want to check your network latency which plays into teh Listener response time
    Frank

  • Session Manager only reloading 1 of the 13 windows shown as backed-up

    Since applying latest update to Firefox (including a suggested upgrade to Adobe Flashplayer) Firefox Session Manager only opens the first window and its Tabs of a saved session, even though it shows that that session contains 13 Windows with a total of 53 tabs.
    If I then close that Window and try to re-open it Firefox fails to open any Window.

    Thanks fr revert !
    After clicking on the provided link , Above error pops up. I clicked "ok" n allowed download to complete after which same previous error shows up!

  • Is there a way to find the total "ON" time on my MacPro?

    I was wondering if there was a way to find the total system "ON" time or usage time on my MacPro since I first purchased it?

    I don't believe there is any recordation of that, but someone else may know better. There is, however, a record of how much time the computer has been in use since the last restart: open the Terminal application in the Utilities folder and at the prompt enter "uptime" (without quotes) and press RETURN.

  • How to find the top ten reports consuming the high response times in st03n?

    HI Basis Gurus,
    Please could anybody tell me "How can one find the top ten high response time consuming reports in st03n transaction or in is there any other way to find out this.Please help me its urgent....
    Advance thanks....

    hi Meghadoot,
    below is an example for your request.
    ST03N
    Expert mode
    Server name - Day- double clicdk Today
    In analysis view - Ranking lists-double click Top Response time
    Regards

  • How to calculate the total running time for process from sysssislog entries

    Hi All,
    I have the below query which gets me the log entries form the logs table when the process started/completed.
    Select row_number() over (order by starttime) row_num,Substring( Substring(message, CharIndex('''',message) +1 ,Len(message)) ,0, CharIndex('''',Substring(message, CharIndex('''',message) +1 ,Len(message)))) as Description,
    starttime,endtime,message
    from dbo.sysssislog
    where (message like 'start%' or message like 'finish%' ) and
    LEFT(Substring( Substring(message, CharIndex('''',message) +1 ,Len(message)) ,0, CharIndex('''',Substring(message, CharIndex('''',message) +1 ,Len(message)))),1) between 'A' and 'Z'
    order by starttime
    However,I have to build a report on the top of it showing how much time that attribute/dimension/heirarchy took to execute(Ex-How much time did YearlyReview dimension take to complete).I dont have much knowledge of T-SQL and unable to figure out how to calculate
    that on SQL or report level.
    Could someone please assist me in getting the exact query for that?
    Thanks a lot.

    I get the below output(sample 20 rows) on executing this query.Also,a start process does not necessarily follow up a finished message for the same dimension as it may have been stopped or it failed.So we need to leave it as NA in case it started but dint
    finish
    Row_Num Description starttime endtime Message
    1 PAC SC Super Type 12/13/12 16:38 12/13/12 16:38 Started processing the 'PAC SC Super Type' dimension.
    2 PAC SC Super Type 12/13/12 16:38 12/13/12 16:38 Started processing the 'PAC SC Super Type' dimension.
    3 Team Member Indicator 12/13/12 16:38 12/13/12 16:38 Started processing the 'Team Member Indicator' dimension.
    4 Team Member Indicator 12/13/12 16:38 12/13/12 16:38 Started processing the 'Team Member Indicator' dimension.
    5 PAC SC Super Type 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'PAC SC Super Type' attribute.
    6 PAC SC Super Type 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'PAC SC Super Type' attribute.
    7 Specialist Merger Indicator 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'Specialist Merger Indicator' attribute.
    8 Specialist Merger Indicator 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'Specialist Merger Indicator' attribute.
    9 YearlyReview 12/13/12 16:38 12/13/12 16:38 Started processing the 'YearlyReview' dimension.
    10 YearlyReview 12/13/12 16:38 12/13/12 16:38 Started processing the 'YearlyReview' dimension.
    11 PAC SC Repeat Caller 12/13/12 16:38 12/13/12 16:38 Started processing the 'PAC SC Repeat Caller' dimension.
    12 PAC SC Repeat Caller 12/13/12 16:38 12/13/12 16:38 Started processing the 'PAC SC Repeat Caller' dimension.
    13 Year 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'Year' attribute.
    14 Year 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'Year' attribute.
    15 Staffing Function 12/13/12 16:38 12/13/12 16:38 Started processing the 'Staffing Function' dimension.
    16 Staffing Function 12/13/12 16:38 12/13/12 16:38 Started processing the 'Staffing Function' dimension.
    17 PAC SC Repeat Caller 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'PAC SC Repeat Caller' attribute.
    18 PAC SC Repeat Caller 12/13/12 16:38 12/13/12 16:38 Started reading data for the 'PAC SC Repeat Caller' attribute.
    19 PAC HV Cust 12/13/12 16:38 12/13/12 16:38 Started processing the 'PAC HV Cust' dimension.
    20 PAC HV Cust 12/13/12 16:38 12/13/12 16:38 Started processing the 'PAC HV Cust' dimension.

Maybe you are looking for

  • "Object reference not set to an instance of an object" after view selection

    Hello, I have a Visual Studio LightSwitch project where I connect to a Oracle server and select a view as a new data source. I get a error message "Object reference not set to an instance of an object" after selecting the Oracle view as a data source

  • How to copy file from application server

    Hello experts, How to copy file from one folder of application server and paste it to other folder of application server(application server is same)? Is there any function module exists??? thanks in advance Saurabh

  • Aging of receivable by days

    Has any one else noticed that the aging by days formula is strange? The formula used by SAP is Aging date - due date plus 1 day. This means that a document with a due date of 31st August is aged as 31 days when the aging report is run aged as 30 Sept

  • Field COMPLAINT_REASON not found in RSEG...

    Hi, Can any one throw some light on RSEG table.The reason is that during execution of trx MIRO we got dump related to field COMPLAINT_REASON. In RSEG we could not find the field.We are on ECC EHP4. Anyone who might have come across this please revert

  • ITunes and Vista Windows on new computer

    I just bought a new computer which has Vista installed - my old computer (Windows XP) had my ITunes on it. I have been trying to install ITunes on this Vista (Home Premium) computer and it will not install, I get this message when I try to install it