VM Connect takes long time

Hello,
I have a new cluster using 2012 R2 and have the problem that if I want to connect to a VM from the Hyper-V Manager (or Failover Cluster) the connection takes about 10 seconds or sometime even longer (20 seconds).
Does someone have any idea why this could be happening? Currently the servers are running in an isolated environment without internet connection, there are 2 DCs (2012 R2) with DNS which have been newly deployed just for this environment.
Any idea how to make the connection to the VMs faster? Could the lack of internet cause this problem?
Regards
Paul

When does the issue occur?  By default, Windows Server is configured to treat interactive jobs, e.g. VMconnect, at a lower priority than service jobs, e.g. VMs.  So one of two things can be happening.
First is if you have not accessed the system for a while, it is likely that the code needed to run VMconnect is not in memory and takes disk accesses to bring it in.  That takes longer than if you had just run VMconnect on another VM earlier. 
The code may not have been 'garbage collected' out of the system.  Another possibility in this space is that if your system is running close its limit in regards to memory.  That can cause paging to occur for the parent partition.
Secondly is that if there is a fair amount of service activity, the interactive activity will be 'behind' the service activity.  A combination of the two can make it appear slower yet.
. : | : . : | : . tim

Similar Messages

  • Database Connectivity takes long time if one of the Node is down .. ??

    Hello All,
    Env: 10.2.0.4 on Solaris 10
    I have 2 nodes.
    When Node1 server is down, it takes long time to connec to the database.
    tnsping would give "OK(2050ms)". Below is the tnsalias.
    RAC_test  =
      (DESCRIPTION =
         (ADDRESS = (PROTOCOL = TCP)(HOST=20.268.169.123)(PORT= 1521))
         (ADDRESS = (PROTOCOL = TCP)(HOST=20.268.169.127)(PORT= 1521))
         (LOAD_BALANCE = yes)
              (CONNECT_DATA =
            (SERVICE_NAME = DK.com)
          (FAILOVER_MODE =
            (TYPE = SELECT)
            (METHOD = BASIC)
            (RETRIES = 180)
            (DELAY = 5)
    )I put the trace on sqlnet.ora and found that first it pings to the "20.268.169.123",
    since the Server is down there will not be any reply and this consumes the delay and
    later it would ping "20.268.169.127" and connect to it.
    If i keep "20.268.169.127" above "20.268.169.123" in tnsalias, and keep "LOAD_BALANCE=no",
    it gets connected very fast, as its directly connecting to Node2. In tnsping i get Ok(40ms).
    How do i reduce the connect timing if i use the first step. Why does it take long time for
    Oracle Client to understand that the Node1 Server is down ?
    TIA,
    J J

    I hope the IP's you are using in the TNS are Virtual IP's.
    You must use Virtual IP's / hostnames for the failover to be quick. If Node 1 is not available then then it's (Node 1's) virtual IP would also get assigned to Node 2 hence all client connections are still able to get a response from the Node Virtual IP address without needing to wait for TCP/IP timeouts. This helps clients to get notified immediately that node 1 is unavailable and the connection tries the 2nd ip/host in the connect descriptor.
    Hope this helps.
    - Siba

  • HttpURLConnection.connect() takes long time (3 minutes)

    I'm stumped on an unusual problem. I'm running java 1.3 and Apache JServ (don't ask, I inherited this set up), using JSSE. One of the things we do with our app involves some xml communication over SSL.
    Starting last week, the time for the SSL communication jumped from about 15 seconds to around 3 minutes.
    Here is the bit of code that does the actual communication. An example function call would be:
    contactService("ShipConfirm", "ups.app/xml");and the function definition:
    public void contactService(String service, String prefix)  throws Exception {
      HttpURLConnection connection;
      URL url;
      // the next 2 variables are stored elsewhere in the object
      // these values are just examples of one invocation
      String protocol = "https";
      String hostname = "wwwcie.ups.com";
      String urlStr = protocol + "://" + hostname + "/" + prefix + "/" + service;
      // so for this test urlString = "https://wwwcie.ups.com/ups.app/xml/ShipConfirm";
      try  {
        if (protocol.equalsIgnoreCase("https")) {
          java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
          System.getProperties().put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
        url = new URL(urlString);
        // Trace.log is a convenience class that will print to a log file and include a timestamp
        Trace.log("open connection to " + urlString);
        connection = (HttpURLConnection) url.openConnection();
        // openConnection takes about 20 seconds now, before 1 or 2 seconds
        Trace.log("opened connection to " + urlString);
        connection.setDoOutput(true);
        connection.setDoInput(true);
        connection.setUseCaches(false);
        // XmlIn is an already generated xml file stored in a StringBuffer, declared elsewhere
        String queryString = XmlIn.toString();
        Trace.log("xml connection to " + urlString);
        connection.connect();
        // connect takes about 3 minutes 10 seconds now, before 15 seconds
        Trace.log("xml connection complete " + urlString);
        OutputStream out = connection.getOutputStream();
        out.write(queryString.getBytes());
        out.close();
        String data = "";
        try {
          // on the server this is actually a separate function
          StringBuffer buffer = new StringBuffer();
          BufferedReader reader = null;
          try {
            reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            String line = null;
            int letter = 0;
            while ((letter = reader.read()) != -1)
              buffer.append((char) letter);
          catch (Exception e) {
            // Trace.major is like Trace.log, but is a higher severity
            Trace.major("Cannot read from URL" + e.toString());
            throw e;
          finally {
            try {
              reader.close();
            catch (IOException io) {
              Trace.major("Error closing URLReader!");
              throw io;
          data = buffer.toString(); // actually a return statement on server
        catch (Exception e) {
          Trace.major("Error in reading URL Connection" + e.getMessage());
          throw e;
        XmlOut = new StringBuffer(data);  // XmlOut is a StringBuffer declared elsewhere
      catch (Exception e1) {
        Trace.major("Error sending data to server" + e1.toString());
    } Besides a couple of new Trace.log statements to pin down the what, exactly, is taking so long, I haven't touched this code in the year+ since I've inherited it. There haven't been any changes in the network setup for the last 3 weeks, either (last change was new reverse lookup zone for our internal network).
    Any idea why the HttpURLConnection.connect() would take so long? Or any idea how I can find out what is going on for those 3 minutes? In my search so far, I found -Djava.net.debug=ssl,handshake,data and added it to my startup parameters, but in my frustration, I must have overlooked what I need do to make it show up in my logs.
    I set up a tcpdump on the server to listen on the IP that I'm trying to connect to and the "xml connection to" log statement prints, then about 3 minutes and 10 seconds goes by, then tcpdump reports that we actually send the packets to the other server, then we get a response and print the "xml connection complete" log message. URL and HttpURLConnection are not subclassed at all.
    To make things even more interesting, I broke out this code, and wrote a small test program. The test program has some minor changes (pulling the xml data from an already existing file, mainly), and this version runs lickety-split (about 5 seconds).
    Any help or pointers would be greatly appreciated. Let me know if I can provide any more information.
    Thanks,
    Andy

    Figured it out..
    The other side removed a proxy server that we used to try to connect through. The server was taking 3 minutes and 10 seconds to time out when it trying to contact the proxy server.
    To be honest, I don't know if we ever successfully connected through the proxy server. I'm inclined to believe we tried to contact it, but were rejected, but no one ever removed the proxy code.
    Andy

  • G560-0679 WiFi connection takes long time

    I have a Windows 7 64 bit Home Premium G560 model and out of the box, the WiFi would be set up to automatically connect to my home network when in range. Usually, it would connect to it as soon as it is booted up from stanby mode but recently, it takes from 30 seconds to 1 minute to find the connection and connect automatically. The WiFi adapter is on as when I click on the icon, I can see my home network SSID is in range but the computer takes a lot longer than usual to find and connect to it automatically.
    Also when I am connected the icon does not changed to the white bars. It stays on the icon that means "wireless networks available" (bars with the yellow sun dot) although when it is attempting to connect, it is the bars with the blue circle. Also when it is not connected to any wireless networks but detects there are some in range, the bar with the yellow sun dot is present as it should be.
    any help is greatly appreciated.

    hi boyee.
    can you try to update/re-install the drivers first? please, also try to disable ipv6 configuration and take a look at the thread below:
    http://forum.lenovo.com/t5/IdeaPad-Y-and-U-series-​Laptops/Cannot-connect-to-Wifi-with-Ideapad-460-IP​...

  • Why it takes long time to establish Database Connection ???

    Can any one please have a look on the following code snippet and show me which mistake I'm doing so it take long time to connect to DB(more than 5 minutes !!!!)
    Thanx in advance ...
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String dbString2 = "jdbc:oracle:thin:@" + "127.0.0.1" + ":" + "1521" + ":" + "nat";
    aCon = DriverManager.getConnection(dbString2, "scott", "tiger");
    stmt = aCon.createStatement();
    System.out.println("Connection to DB Established");
    catch (ClassNotFoundException cnfe)
    System.out.println("Class not found:");
    cnfe.printStackTrace();
    catch (SQLException sqle)
    System.out.println("SQL Exception: " + sqle.toString());
    sqle.printStackTrace();

    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Why do you need this if you are going to Oracle. Try
    removing this. It might be trying things out with the
    old driver and then moving to the new driver. This has nothing to do with it. (And it doesn't "try things out")
    >
    Also check your machines. They might be slow. There is
    no reason, it should take more than few hundred
    milliseconds to connect to a database on localhost as
    your case is.Possible reasons...
    - Network traffic
    - Faulty router/gateway
    - Busy server
    - Faulty network card (either end)
    - Conflict with another box

  • In P6 8.4 web client for loading Resource page takes long time

    As per tested configuration of P6 EPPM 8.4 we are using IE 9 and JRE 1.7.0.67.
    I had checked RAM and its utilization is Max 40%, CPU usage is also very less.
    Enough disk space is also avaliable (70% avaliable).
    Enteries in resources are also very few just 20 numbers.
    Project page is loading normally. But for loading resource page it pause for almost 15-20 seconds.
    Last week i had faced issue that application freezes while loading resource page so i had restarted application and it was working.
    May i know, what will be reason to take long time to load resorce page and possible solution.

    I am attching java console tracer log for while loading resource page..
    please check.
    Java Plug-in 10.67.2.01
    Using JRE version 1.7.0_67-b01 Java HotSpot(TM) 64-Bit Server VM
    User home directory = C:\Users\xyz
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    cache: Initialize resource manager: com.sun.deploy.cache.ResourceProviderImpl@344c963c
    network: Version checking for commons-logging.jar, specified version is 8.4.0.0.0283
    security: Blacklist revocation check is enabled
    security: blacklist: created: NEED_LOAD, lastModified: 1425280031913
    security: blacklist: hasBeenModifiedSince 1425280032053 (we have 1425280031913)
    security: Trusted libraries list check is enabled
    network: Version checking for jide.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    network: Version checking for poi.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035501 (we have 1425280031913)
    network: Version checking for prm-to.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    network: Version checking for commons-lang.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035173 (we have 1425280031913)
    network: Version checking for prm-img.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036000 (we have 1425280031913)
    network: Version checking for HTMLEditorPro.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280042583 (we have 1425280031913)
    network: Version checking for calendars.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280043535 (we have 1425280031913)
    network: Version checking for forms-1.0.7.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    network: Version checking for resources.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Version checking for prm-applets-common.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    network: Version checking for migcalendar.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280043113 (we have 1425280031913)
    network: Version checking for applets-bo.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    network: Version checking for ilog.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    network: Version checking for prm-guisupport.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    network: Version checking for tablesupport.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    network: Version checking for resource_strings.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280034939 (we have 1425280031913)
    network: Version checking for commons-collections.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035469 (we have 1425280031913)
    network: Version checking for prm-common.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036327 (we have 1425280031913)
    network: Version checking for poi-ooxml.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037045 (we have 1425280031913)
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@1ba14608
    security: Expected Main URL: http://server:7001/p6/applets/resources.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/resources.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-applets-common.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/forms-1.0.7.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-guisupport.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-to.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/jide.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/tablesupport.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/applets-bo.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/ilog.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/poi.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/poi-ooxml.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/HTMLEditorPro.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/calendars.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/migcalendar.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/commons-collections.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/commons-lang.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-common.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/resource_strings.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-img.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/commons-logging.jar
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/icons/loading.gif, version: null] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/icons/loading.gif
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/resources.jar
    cache: Resource http://server:7001/p6/icons/loading.gif has future expires: Thu Mar 12 09:13:57 CAT 2015 update check skipped.
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@90dd6174: 1
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/resources.jar: read=170 full=15762
    cache: Loading full manifest for http://server:7001/p6/applets/resources.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/resources.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx
    security: Certificate revocation enabled. Disable security validation optimizations.
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    cache:  Read manifest for http://server:7001/p6/applets/resources.jar: read=170 full=15762
    cache: Loading full manifest for http://server:7001/p6/applets/resources.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/resources.jar
    security: Loading Deployment certificates from C:\Program Files\Java\jre7\security\trusted.certs
    security: Loaded Deployment certificates from C:\Program Files\Java\jre7\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Loading certificates from Internet Explorer DISALLOWED certificate store
    security: Loaded certificates from Internet Explorer DISALLOWED certificate store
    security: Validate the certificate chain using CertPath API
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Loaded blacklisted.certs file: C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\security\blacklisted.certs
    security: SHA-256Certificate finger print: 794F53C746E2AA77D84B843BE942CAB4309F258FD946D62A6C4CCEAB8E1DB2C6
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: SHA-256Certificate finger print: 0CFC19DB681B014BFE3F23CB3A78B67208B4E3D8D7B6A7B1807F7CD6ECB2A54E
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: SHA-256Certificate finger print: 8420DFBE376F414BF4C0A81E6936D24CCC03F304835B86C7A39142FCA723A689
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: SHA-256Certificate finger print: A4B6B3996FC2F306B3FD8681BD63413D8C5009CC4FA329C2CCF0E2FA1B140305
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: The OCSP support is disabled
    security: The CRL support is disabled
    security: Revocation check disabled
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx
    cache: Reading Signers from 6599 http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx
    cache: Done readSigners(http://server:7001/p6/applets/resources.jar)
    basic: updateValidationResultsForApplet update
    cache: Mark prevalidated: http://server:7001/p6/applets/resources.jar true tm=1426140948227 cert=1453507199000
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Grant socket perm for http://server:7001/p6/applets/resources.jar : java.security.Permissions@6002a673 (
    ("java.net.SocketPermission" "server" "connect,accept,resolve")
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/resources.jar: read=170 full=15762
    cache: Loading full manifest for http://server:7001/p6/applets/resources.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/resources.jar
    security: Validate the certificate chain using CertPath API
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-applets-common.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/prm-applets-common.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@8e5c08ed: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/prm-applets-common.jar: read=170 full=61037
    cache: Loading full manifest for http://server:7001/p6/applets/prm-applets-common.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@8e5c08ed: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/prm-applets-common.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\57\3aee4c39-4ea92ae8-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/prm-applets-common.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/prm-applets-common.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-applets-common.jar
    security: Validate the certificate chain using CertPath API
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Grant socket perm for http://server:7001/p6/applets/prm-applets-common.jar : java.security.Permissions@44f94083 (
    ("java.net.SocketPermission" "server" "connect,accept,resolve")
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-applets-common.jar
    security: Validate the certificate chain using CertPath API
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/resources.jar
    security: Validate the certificate chain using CertPath API
    security: SSV validation:
        running: 1.7.0_67
        requested: 1.7.0.67
        range: null
        javaVersionParam: 1.7.0_67
        Rule Set version: null
    network: Created version ID: 1.7.0.67
    network: Created version ID: 1.7.0.67
    security: continue with running version
    network: Created version ID: 1.7.0.67
    network: Created version ID: 1.7
    network: Created version ID: 2.2.67
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/forms-1.0.7.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/forms-1.0.7.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@18524ac: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/forms-1.0.7.jar: read=170 full=2928
    cache: Loading full manifest for http://server:7001/p6/applets/forms-1.0.7.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@18524ac: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/forms-1.0.7.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\1\6aa3bac1-775bda80-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/forms-1.0.7.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/forms-1.0.7.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/forms-1.0.7.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-guisupport.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/prm-guisupport.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@a4952a42: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/prm-guisupport.jar: read=170 full=68762
    cache: Loading full manifest for http://server:7001/p6/applets/prm-guisupport.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@a4952a42: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/prm-guisupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\35\1e51d6e3-30250490-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/prm-guisupport.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/prm-guisupport.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-guisupport.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623861 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-to.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/prm-to.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/prm-to.jar: read=170 full=3981
    cache: Loading full manifest for http://server:7001/p6/applets/prm-to.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-4eaaf1b8-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/prm-to.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425465623861 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/prm-to.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/prm-to.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-4eaaf1b8-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-63558a2c.idx
    security: Trust for: http://server:7001/p6/applets/prm-to.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623861 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-to.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/prm-to.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-63558a2c.idx Now: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-4eaaf1b8-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 1
    cache:  Read manifest for http://server:7001/p6/applets/prm-to.jar: read=170 full=3981
    cache: Loading full manifest for http://server:7001/p6/applets/prm-to.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-to.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/jide.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/jide.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@215976c: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/jide.jar: read=170 full=144099
    cache: Loading full manifest for http://server:7001/p6/applets/jide.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@215976c: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/jide.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\12\4555650c-5003359c-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/jide.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/jide.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/jide.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425465618214 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/tablesupport.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/tablesupport.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/tablesupport.jar: read=170 full=22255
    cache: Loading full manifest for http://server:7001/p6/applets/tablesupport.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-59c4200a-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/tablesupport.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465618214 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/tablesupport.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/tablesupport.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-59c4200a-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-2cdc3aab.idx
    security: Trust for: http://server:7001/p6/applets/tablesupport.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465618214 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/tablesupport.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/tablesupport.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-2cdc3aab.idx Now: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-59c4200a-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 1
    cache:  Read manifest for http://server:7001/p6/applets/tablesupport.jar: read=170 full=22255
    cache: Loading full manifest for http://server:7001/p6/applets/tablesupport.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/tablesupport.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425472043817 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/applets-bo.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/applets-bo.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/applets-bo.jar: read=170 full=65962
    cache: Loading full manifest for http://server:7001/p6/applets/applets-bo.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-1ff2601f-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/applets-bo.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425472043817 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/applets-bo.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/applets-bo.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-1ff2601f-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-4f148928.idx
    security: Trust for: http://server:7001/p6/applets/applets-bo.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425472043817 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/applets-bo.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/applets-bo.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-4f148928.idx Now: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-1ff2601f-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 1
    cache:  Read manifest for http://server:7001/p6/applets/applets-bo.jar: read=170 full=65962
    cache: Loading full manifest for http://server:7001/p6/applets/applets-bo.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/applets-bo.jar
    security: Validate the certificate chain using CertPath API
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Grant socket perm for http://server:7001/p6/applets/applets-bo.jar : java.security.Permissions@a77ba09 (
    ("java.net.SocketPermission" "server" "connect,accept,resolve")
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/applets-bo.jar
    security: Validate the certificate chain using CertPath API
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623658 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/ilog.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/ilog.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4bc89a27: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/ilog.jar: read=170 full=195916
    cache: Loading full manifest for http://server:7001/p6/applets/ilog.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4bc89a27: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-182cab74-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/ilog.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425465623658 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/ilog.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/ilog.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-182cab74-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-1b5ccf61.idx
    security: Trust for: http://server:7001/p6/applets/ilog.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4bc89a27: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623658 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/ilog.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/ilog.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-1b5ccf61.idx Now

  • RFC takes long time to reach to test

    Hi,
    i have issue related to RFC connection from BW to R3 systems
    if i tried to test the connection it takes long time to respond
    the result as following:
    Logon     32779 msec
    Transfer of 0 KB     1 msec
    Transfer of 10 KB     2 msec
    Transfer of 20 KB     3 msec
    Transfer of 30 KB     4 msec
    and if i tried after that to do the same test again it works fine
    and the result as following
    Logon     8 msec
    Transfer of 0 KB     1 msec
    Transfer of 10 KB     2 msec
    Transfer of 20 KB     3 msec
    Transfer of 30 KB     4 msec
    So can you please tell me why it takes too long time to logon first time?
    from the OS level i can ping the target system with out any problems.
    Thanks
    SE...
    Edited by: Sherif Eid on Aug 17, 2008 4:33 PM

    probably
    1.Check both the systems are on same domain.
    2.Check in your SM59 ,you have mentioned gateway and gateway host .if yes try to remove and check else revert back
    3.under special options check slow rfc connection if it is already checked try to unchecked and if not try to check it.
    4.Is the background user aleremote for BW-R3 connectivity?If not can you check the user and it's roles?
    5.attach the routetrace from BW server to R3 and see how long does it take fto reach there first time and second time and see the difference?
    Good Luck.
    Thanks
    Amit

  • Normal is takes long time

    Dear Experts, i tried to enable audit option in oracle 10.2 .0 database which is running on windows box, after set this command , i tried to restart the DB with shutdown (only) option.
    ALTER SYSTEM SET audit_trail=db SCOPE=SPFILE;
    but its takes long time to complete i checked the alert log file , its showing
    ALTER SYSTEM SET audit_trail='DB' SCOPE=SPFILE;
    Wed Feb 01 12:23:48 2012
    Starting background process EMN0
    EMN0 started with pid=29, OS id=4836
    Wed Feb 01 12:23:49 2012
    Shutting down instance: further logons disabled
    Wed Feb 01 12:23:50 2012
    Stopping background process QMNC
    Streams Apply Server P001 pid=16 OS id=3708 stopped
    Wed Feb 01 12:23:51 2012
    Stopping background process CJQ0
    Streams Apply Reader P000 pid=15 OS id=3660 stopped
    Wed Feb 01 12:23:52 2012
    Errors in file e:\oracle\product\10.2.0\admin\std\bdump\psacc_p000_3660.trc:
    ORA-10388: parallel query server interrupt (failure)
    Streams Apply Server P004 pid=25 OS id=2124 stopped
    Wed Feb 01 12:23:52 2012
    Errors in file e:\oracle\product\10.2.0\admin\std\bdump\psacc_p004_2124.trc:
    ORA-10388: parallel query server interrupt (failure)
    Wed Feb 01 12:23:53 2012
    Errors in file e:\oracle\product\10.2.0\admin\std\bdump\psacc_p001_3708.trc:
    ORA-10388: parallel query server interrupt (failure)
    Streams Apply Server P002 pid=23 OS id=2404 stopped
    Wed Feb 01 12:23:53 2012
    Errors in file e:\oracle\product\10.2.0\admin\std\bdump\psacc_p002_2404.trc:
    ORA-10388: parallel query server interrupt (failure)
    Streams Apply Server P003 pid=24 OS id=1372 stopped
    Wed Feb 01 12:23:54 2012
    Errors in file e:\oracle\product\10.2.0\admin\std\bdump\psacc_p003_1372.trc:
    ORA-10388: parallel query server interrupt (failure)
    Wed Feb 01 12:23:54 2012
    Stopping background process MMNL
    Wed Feb 01 12:23:54 2012
    Streams APPLY A001 with pid=17, OS id=3400 stopped
    Wed Feb 01 12:23:55 2012
    Stopping background process MMON
    Wed Feb 01 12:23:57 2012
    Shutting down instance (normal)
    License high water mark = 21
    Wed Feb 01 12:23:57 2012
    Stopping Job queue slave processes
    Wed Feb 01 12:23:57 2012
    Job queue slave processes stopped
    Wed Feb 01 12:28:57 2012
    Active process 2572 user 'SYSTEM' program 'ORACLE.EXE (SHAD)'
    Active process 3156 user 'SYSTEM' program 'ORACLE.EXE (SHAD)'
    Active process 3416 user 'SYSTEM' program 'ORACLE.EXE (SHAD)'
    Active process 5596 user 'SYSTEM' program 'ORACLE.EXE (SHAD)'
    Active process 5200 user 'SYSTEM' program 'ORACLE.EXE (SHAD)'
    Active process 5980 user 'SYSTEM' program 'ORACLE.EXE (SHAD)'
    SHUTDOWN: waiting for logins to complete.
    Wed Feb 01 12:43:28 2012
    MMNL absent for 1203 secs; Foregrounds taking over
    there is no more info after this line..... can any one please help on this , how to solve this issue... waiting for morethan 40 mins stil is running... guide me to proceed next step to complete this.... thanks in advance

    Use anothe command prompt and type sqlplus.
    For e.g in my system.
    C:\Documents and Settings\ranjit>sqlplus
    SQLPlus: Release 11.2.0.1.0 Production on Wed Feb 1 13:46:33 2012*
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Enter user-name: sys as sysdba
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    *SQL>
    Once you saw this.. type "shu abort;"
    This will abruptly shutdown the database. It is safe to run in non production databases however. And while starting up, it will to the recovery(which may take some time again to startup database).
    Regards

  • HT4759 Hello .. I've been subscribed for ic;oud for 20$ per year and I found it useless for many reasons: that I can not disconnect my mobile while the uploading process and it takes long time for uploading my data .. Its not a reliable system that's why

    Hello .. I've been subscribed for ic;oud for 20$ per year and I found it useless for many reasons: that I can not disconnect my mobile while the uploading process and it takes long time for uploading my data .. Its not a reliable system that's why I need to deactivate the space service and take my money back .. Thanks

    The "issues" you've raised are nothing to do with the iCloud service.
    No service that uploads data allows you to disconnect the device you are uploading from while uploading data. Doing so would prevent the upload from completing. It is a basic requirement for any uploading service that you remain connected to it for uploading to be possible.
    The time it takes to upload data to iCloud is entirely dependent on how fast your Internet connection is, and how much data you are uploading. Both of these things are completely out of Apple's control. Whichever upload service you use will be affected by the speed of your Internet connection.

  • Why outlook2011 mac version* takes long time to boot with OSX

    why outlook2011 mac version* takes long time to boot with OSX

    Okay, so after doing all of the above, the computer still takes between 40 seconds and 1 minute or so to boot up, and the VersionCue messages still appear. However I discovered that the "kdcmond cannot retrieve..." messages disappeared after I disabled my ethernet connections. So at least I know that that had nothing to do with the extended boot-up time.
    I have heard that the more RAM you have, the longer it takes to boot due to the RAM count. Since I have 10 GB, maybe this is why?
    I've included the most recent Console messages below:
    22/4/08 9:56:16 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    22/4/08 9:56:16 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    22/4/08 9:56:16 AM com.apple.launchd[1] (org.cups.cups-lpd) Unknown key: SHAuthorizationRight
    22/4/08 9:56:16 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    22/4/08 9:56:16 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    22/4/08 9:56:39 AM com.apple.SystemStarter[28] Starting Aladdin USB daemon
    22/4/08 9:56:39 AM org.ntp.ntpd[25] Error : nodename nor servname provided, or not known
    22/4/08 9:56:39 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[74]) Exited: Terminated
    22/4/08 9:56:39 AM com.apple.launchctl.Aqua[90] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    22/4/08 9:56:42 AM com.apple.launchd[82] (0x1011e0.VersionCueCS3monitor) Failed to check-in!

  • Why it takes long time to download and udates for iphone4

    why it takes long time to download and updates for iphone4 ?

    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Why do you need this if you are going to Oracle. Try
    removing this. It might be trying things out with the
    old driver and then moving to the new driver. This has nothing to do with it. (And it doesn't "try things out")
    >
    Also check your machines. They might be slow. There is
    no reason, it should take more than few hundred
    milliseconds to connect to a database on localhost as
    your case is.Possible reasons...
    - Network traffic
    - Faulty router/gateway
    - Busy server
    - Faulty network card (either end)
    - Conflict with another box

  • Brachive takes long time to copy from one system to another

    HI TO ALL,
    I AM USING IBM BLADE SERVER AND CONNET TO SAN WHEN I SHEDULE BRARCIVE / BRBACKUP ON ANOTHER SERVER (ANY SERVER ) IT TAKES LONG TIME TO COPY ARCHIVE FROM ONE SYSTEM TO OTHER SYSTEM.
    I AM USING DB ORACLE 9i and SAP 4.7 EXT 1.1
    REGARDS,
    VIKAS NAGAR

    - how big are the files you copy?
    - are both machines connected in the same network segment?
    Markus

  • Adobe form take long time for Check/Send at portal

    Hi Experts
    We have a form at Portal, which take long time when we click on Check to validate the form, its taking around 3 mins.
    where as other forms are not taking this much time. Can anyone help us on this issue.
    Thanks
    Sajal

    Hi Sajal,
    did you already contact your basis-guys to trace the performance of the ADS itself?
    Sounds to me, that the connection of the portal is not that good and maybe this is one of the problems.
    Also check on the interface to the form. what takes the time... the driver-program fetching the data or even the form itself.
    Additional to that you should have a look inside the form and see how much scripting is inside. Sometimes there is a lot of unnecessary source inside and out of that, you didn't share the form (if it is a SAP-delivery) I cannot get more in detail with my answer here.
    Hope it gives you a clue where to start with your journey.
    ~Florian
    PS: If you use the search with keywords "ADS + trace" you find a lot of useful information.

  • Application Load Take Long time

    Hii all,
    i has developed and adf application and oracle 9i database and deployed on a weblogic 10.3.1 using JDBC Data Source an thin Oracle Driver for service connection and then when i run the application from the intranet in the other far building the application loading takes long time and then when loaded it works good so why this long time in loading and how i can fix it or how i can trace it and know where's the problem,, hope anyone can help me because the user wait for 5 minutes to load the application and he got bored my boss will kill me..
    Regards

    Ahmed,
    Have you done any detective work yourself to find out where the long load time is coming from? Are you testing this over a slow network link? If so, have a look at section A9 [url http://download.oracle.com/docs/cd/E15523_01/web.1111/b31973/ap_config.htm#ADFUI10059]of this part of the documentation to see how you can perhaps reduce the initial load time.
    If it's not the network, then you can give us some more information about where the long load times are.
    John

  • BPM Process chain takes long time to process

    We have BI7, Netweaver 2004s on Oracle and SUN Solaris
    There is a process chain (BPM) which pulls data from the CRM system into BW. The scheduled time to run this chain is 0034 hrs. This chain should ideally complete before / around 0830 Hrs. <b>Now the problem is that every alternate day this chain behaves normally and gets completed well before 0830 hrs but every alternate day this chain fails…</b> there are almost 40 chains running daily. Some are event triggered (dependent with each other) or some run in parallel. In this, (BPM) process chain, usually there are 5 requests with 3 Delta and 2 full uploads (Master Data). The delta uploads finishes in 30 minutes without any issues with very few record transfers. The first full upload is from 0034 hrs to approximately 0130 hrs and the 2nd upload is from 0130 hrs to 0230 hrs. Now if the 1st upload gets delayed then the people who are initiating these chains, stop the 2nd full upload and continue it after all the process chains are completed. Now this entire BPM process chain sometimes takes 17 -18 hrs to complete!!!!!
    No other loads in CRM or BW when these process chains are running
    CRM has background jobs to push IDOCS to BW which run every 2 minutes which runs successfully
    Yesterday this chain got completed successfully (well within stipulated time) with over 33,00,000 records transferred but sometimes it has failed to transfer even 12,00,000 records!!
    Attaching a zip file, please refer the “21 to 26 Analysis screen shot.doc” from the zip file
    Within the zip file, attaching “Normal timings of daily process chains.xls” – the name explains it….
    Also within the zip file refer “BPM Infoprovider and data source screen shot.doc” please refer this file as the infopackage (page 2) which was used in the process chain is not displayed later on in page number 6 BUT CHAIN GOT SUCESSFULLY COMPLETED
    We have analyzed:--
    1)     The PSA data for BPM process chain for past few days
    2)     The info providers for BPM process chain for past few days
    3)     The ODS entries for BPM process chain for past few days
    4)     The point of failure of BPM process chain for past few days
    5)     The overall performance of all the process chains for past few days
    6)     The number of requests in BW for this process chain
    7)     The load on CRM system for past few days when this process chain ran on BW system
    As per our analysis, there are couple of things which can be fixed in the BW system:--
    1)     The partner agreement (transaction WE20) defined for the partner LS/BP3CLNT475 mentions both message types RSSEND and RSINFO: -- collect IDOCs and pack size = 1 Since the pack size = 1 will generate 1 TRFC call per IDOC, it should be changed to 10 so that less number of TRFCs will be generated thus less overhead for the BW server resulting in the increase in performance
    2)     In the definition of destination for the concerned RFC in BW (SM59), the “Technical Setting” tab says the “Load balancing” option = “No”. We are planning to make it “Yes”
    But we believe that though these changes will bring some increase in performance, this is not the root cause of the abnormal behavior of this chain as this chain runs successfully on every alternate day with approximately the same amount of load in it.
    I was not able to attach the many screen shots or the info which I had gathered during my analysis. Please advice how do I attach these files
    Best Regards,

    Hi,
    Normally  index  creation or deletion can take long time in case  your database statistics are not updated properly, so can check  stat  after your data loading is completed and index generation is done,  Do creation of database statistics.
    Then try to recheck ...
    Regards,
    Satya

Maybe you are looking for

  • TESTING SERVER ISSUES

    I am new to dynamic site development. Am caught up in a very basic issue. I am using XP Pro, IIS is working, am trying to set up a ASPjavascript page. In "site definition", "testing files", my URL is http://localhost/test. "Test URL" gives error "Dre

  • Problem with Pages text flow

    In a 'Pages' long document the text flow is not consistent despite the settings in the Inspector being identical. On some facing pages the last line does not justify, on others the text refuses to fill large gaps that seem to occur at random.

  • What Camera is in the iPhone Model MC608LL

    What camera is in my iphone 4?  Is it the one I see advertised that has 8 megapixels?  Because every picture I take is 680 x 4** something pixels in size, and the 8 megapixel claims to produce picture that can print as big as an 8x10 in. size. Thanks

  • Create ABAP object dynamically

    Is it possible to create objects dynamically? so that the name of the class is set via parameters and also the variables and which class is the superclass? something like: fieldsymbols: <a> type any. data: data_object type ref to object. create new c

  • Picking records with distinct col values

    Hi gurus, I have a table with id col1 col2 col3 1 a b c 2 e f g 3 a b c 4 a b c what would be the query to pick records with distinct col1,col2,col3 values.i.e records with col values 1,a,b,c and 2,e,f,g only in the above table Could you please help