Program Hangs only on 'SOME' XP Machines

I have a Swing app which uses java version 1.3.1_08. I call an exe file which runs the java app. (The exe was created with InstallAnywhere Now.)
I have tried it on 4 XP Machines. On 3 of the machines, it works fine. On the other one, the program is EXTREMELY slow on startup. I looked at the memory usage and it went to 90% or so. The Mem Usage in the Task Manager just kept increasing quickly, until I shut it down.
I have compared JVM Versions, They are all the same.
Ir seems like a memory leak, but I would think I would see it consistently across all XP platforms.--
Does anyone know why I would see these incinsistencies on winXP?
Is it possibly because the machine does not have enough memory? If so, is there a way to get the available memory on the machine?
Any help is greatly appreciated!
Thanks

Thanks for the replies.
More ?s:
1. How do I set the Virtual Memory in XP? Is there a way to get it from java.
If it was one of the settings in one of the following as jschell mentioned:
Different fonts.
Different screen resolutions.
Different video cards.
Different video card drivers
2. Is there a way using java (other then writing my own C code and hitting it w/ JNI) to get these values so I can tell the user they have to change these before proceeding?
Thanks

Similar Messages

  • Database hangs after retrieving some records....

    hi,
    I create a two level B+-tree index, for the first level i'm using key as logical database name, for the second level B+-tree i'm using some other field in my data. I am retrieving the records based on logical database name. I am using C++ to implement my index.
    In the following code i'm retrieving records from database. Program is behaving differently for different logical database names. For example in my database i have around 4 lakhs records with logical database name 'A' and around 1 lakh of records with logical database name 'B'. The following code displays all B records but programs hangs after retrieving some A records.
    I'm using PAGE_SIZE=8192, numBuffers=2048, and runnig in Fedora Core3.
    DbEnv myEnv(0);
         myEnv.set_cachesize(0, PAGE_SIZE * numBuffers, 0);
         myEnv.set_data_dir("/home/raviov/new/database");
              try {
                   myEnv.open("./", DB_CREATE | DB_INIT_MPOOL, 0);
              catch (DbException &e) {
                   cerr << "Exception occurred: " << e.what() << endl;
                   exit(1);
              db=new Db(&myEnv,0);
              db->set_pagesize(PAGE_SIZE);     
              db->set_bt_compare(compare_int);
         dbname=itoa(p);
         try
         db->open(NULL,
                   "treedb.db",
                   dbname,
                   DB_BTREE,
                   0,
                   0);
         catch(DbException &e)
              cerr << "Failed to open DB object" << endl;
              exit(1);
         db->cursor(NULL,&cursorp,0);
         key=new Dbt();
         data=new Dbt();
         while(ret=(cursorp->get(key,data,DB_NEXT))==0)
              j=*((int*)key->get_data());
              q=(*((struct tuple*)data->get_data())).startPos;
              r=(*((struct tuple*)data->get_data())).endPos;
              s=(*((struct tuple*)data->get_data())).level;
              cout<<"position : "<<j<<"\t";
              cout<<"start : "<<q<<"\t";
              cout<<"end : "<<r<<"\t";
              cout<<"level : "<<s<<"\n";
         if(ret==DB_NOTFOUND)
              cout<<"no records";
              exit(1);
         if(cursorp!=NULL)
              cursorp->close();
         try
              db->close(0);
         catch(DbException &e)
              cerr << "Failed to close DB object" << endl;
              exit(1);
         myEnv.close(0);

    HI Andrei,
    thank you for giving reply, I'm not using any secondary indecies, subdatabases and not using any threads.
    the following code displays index...
    #include <stdio.h>
    #include <db_cxx.h>
    #include <iostream.h>
    #include <db.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/types.h>
    int PAGE_SIZE=8192;
    int numBuffers=2048;
    char *itoa(const int x)
          char buf[100];
          snprintf(buf, sizeof(buf), "%d", x);
           return strdup(buf);
    int compare_int(Db dbp, const Dbt a, const Dbt *b)
      int ai;
      int bi;
      memcpy(&ai,a->get_data(),sizeof(int));
      memcpy(&bi,b->get_data(),sizeof(int));
      return(ai-bi);
    struct tuple
           int startPos;
           int endPos;
           int level;
    main()
         FILE *fp;
         int i,j,k,l,m,n,total=0;
         char dbname[500],filename[500],str [500];
         tuple t;
         Db *db;
         Dbt key,data;
         DbEnv myEnv(0);
         myEnv.set_cachesize(0, PAGE_SIZE * numBuffers, 0);
         try {
                myEnv.open("/home/raviov/Desktop/example", DB_CREATE | DB_INIT_MPOOL, 0);
           catch (DbException &e) {
                  cerr << "Exception occurred: " << e.what() << endl;
                  exit(1);
         for(n=0;n<=84;n++)
              db = new Db(&myEnv, 0);     // Instantiate the Db object
                    db->set_bt_compare(compare_int);
               db->set_pagesize(PAGE_SIZE);
              strcpy(filename,"/home/raviov/Desktop/GTCReport/code/sequence/splitter/tree/");
              strcat(filename,itoa(n));
              fp=fopen(filename,"r");
              if(fp==NULL)
                   cout<<"error in opening the file";
                   exit(0);
              while(fgets (str , 500 , fp)!=NULL)
                   sscanf(str,"%d(%d,%d,%d,%d)",&i,&j,&k,&l,&m);
                   key=new Dbt(&i,sizeof(int));
                   if(total==0)
                        strcpy(dbname,itoa(j));
                   t.startPos=k;
                   t.endPos=l;
                   t.level=m;
                   data=new Dbt(&t,sizeof(t));     
                   if(total==0)
                        try
                             db->open(NULL,
                             "tree.db",
                                       dbname,
                              DB_BTREE,
                                DB_CREATE,
                                0);
                        catch(DbException &e)
                               cerr << "Failed to create DB object" << endl;
                             exit(1);
                        total=99;
                   int ret=db->put(NULL,key,data,DB_NOOVERWRITE);
                   if(ret==DB_KEYEXIST)
                        cout<<"key already exist\n";
                        exit(1);
                   delete key;
                   delete data;
              total=0;
              fclose(fp);
              try
                   db->close(0);
              catch(DbException &e)
                     cerr << "Failed to close DB object" << endl;
                   exit(1);
         myEnv.close(0);
    }The following code retrieves the records from database that we had built above...
    #include <stdio.h>
    #include <db_cxx.h>
    #include <iostream.h>
    #include <db.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/types.h>
    int PAGE_SIZE=8192;
    int numBuffers=2048;
    char *itoa(const int x)
          char buf[100];
          snprintf(buf, sizeof(buf), "%d", x);
           return strdup(buf);
    int compare_int(Db dbp, const Dbt a, const Dbt *b)
      int ai;
      int bi;
      memcpy(&ai,a->get_data(),sizeof(int));
      memcpy(&bi,b->get_data(),sizeof(int));
      return(ai-bi);
    struct tuple
           int startPos;
           int endPos;
           int level;
    main()
         FILE *fp;
         int i,j,k,l,m,n,total=0;
         char *dbname;
         char filename[200],str [100];
         tuple t;
         Db *db;
         Dbt key,data;
         Dbc *cursorp=NULL;
         int ret,x=4;
         char *ravi;
         int p=84763;
         int y=2134872;
         int r,s,q,count=0;
         DbEnv myEnv(0);
         myEnv.set_cachesize(0, PAGE_SIZE * numBuffers, 0);
         myEnv.set_data_dir("/home/raviov/new/database");
              try {
                      myEnv.open("./", DB_CREATE | DB_INIT_MPOOL, 0);
               catch (DbException &e) {
                      cerr << "Exception occurred: " << e.what() << endl;
                      exit(1);
              db=new Db(&myEnv,0);
              db->set_pagesize(PAGE_SIZE);     
              db->set_bt_compare(compare_int);
         dbname=itoa(p);
         try
              db->open(NULL,
                    "tree.db",
                     dbname,
                     DB_BTREE,
                     0,
                     0);
         catch(DbException &e)
                cerr << "Failed to open DB object" << endl;
              exit(1);
         db->cursor(NULL,&cursorp,0);
         key=new Dbt();
         data=new Dbt();
         while(ret=(cursorp->get(key,data,DB_NEXT))==0)
              j=*((int*)key->get_data());
              q=(*((struct tuple*)data->get_data())).startPos;
              r=(*((struct tuple*)data->get_data())).endPos;
              s=(*((struct tuple*)data->get_data())).level;
              cout<<"position   : "<<j<<"\t";
              cout<<"start : "<<q<<"\t";
              cout<<"end   : "<<r<<"\t";
              cout<<"level   : "<<s<<"\n";
              delete key;
              delete data;
         if(ret==DB_NOTFOUND)
              cout<<"no records";
              exit(1);
         if(cursorp!=NULL)
              cursorp->close();
         try
              db->close(0);
         catch(DbException &e)
                cerr << "Failed to close DB object" << endl;
              exit(1);
         myEnv.close(0);     
    }

  • AVG tried to take over the Firefox Program. I unchecked some stuff on AVG and now Firefox doesn't lool right. There is only a bar at the top of the page with "Firefox" and "new Tab" . How do I get the Firebox homepage back?

    AVG tried to take over the Firefox Program. I unchecked some stuff on AVG and now Firefox doesn't look right. There is only a bar at the top of the page with "Firefox" and "new Tab" . How do I get the Firebox homepage back?

    Google Toolbar Options, in the Search tab, make sure that '''Enable the Google new tab page''' is check-marked. If that doesn't fix it for you, see this for support information about the Google Toolbar. <br />
    [http://www.google.com/support/toolbar/?hl=en] <br />
    Or visit the Google Toolbar forum. <br />
    [http://www.google.com/support/forum/p/Toolbar?hl=en]
    As far as your UserAgent showing Firefox 3.0.11, see this: <br />
    https://support.mozilla.com/en-US/kb/Websites+or+add-ons+incorrectly+report+incompatible+browser
    You might want to consider getting rid of that '''desktopsmiley''' program that has messed up your UserAgent, it is known as Malware.

  • HT5621 I bought my iMac from someone. Everything was changed over to my name however when I try to update programs it only shows the old users apple ID and I can't update. How do I change this so I can update the applications and have everything fully und

    I bought my iMac from someone. Everything was changed over to my name however when I try to update programs it only shows the old users apple ID and I can't update. How do I change this so I can update the applications and have everything fully under me?

    The first thing to do with a second-hand computer is to erase the internal drive and install a clean copy of OS X. You — not the previous owner — must do that. How you do it depends on the model, and on whether you already own another Mac. If you're not sure of the model, enter the serial number on this page. Then find the model on this page to see what OS version was originally installed.
    1. You don't own another Mac.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc from the Apple Store or a reputable reseller — not from eBay or anything of the kind. If the machine has less than 1 GB of memory, you'll need to add more in order to install 10.6. Preferably, install as much memory as it can take, according to the technical specifications.
    If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for some MacBook Air models. For early MBA models, you may need a USB optical drive or Remote Disc. You should have received the media from the previous owner, but if you didn't, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc or a flash drive, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, you don't need media. It should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    2. You do own another Mac.
    If you already own another Mac that was upgraded in the App Store to the version of OS X that you want to install, and if the new Mac is compatible with it, then you can install it. Use Recovery Disk Assistant to create a bootable USB device and boot the new Mac from it by holding down the C key at the startup chime. Alternatively, if you have a Time Machine backup of OS X 10.7.3 or later on an external hard drive (not a Time Capsule or other network device), you can boot from that by holding down the option key and selecting it from the row of icons that appears. Note that if your other Mac was never upgraded in the App Store, you can't use this method.
    Once booted in Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive.
    After partitioning, quit Disk Utility and run the OS X Installer. You will need the Apple ID and password that you used to upgrade. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    Then run Software Update and install all available system updates from Apple. To upgrade to a major version of OS X newer than 10.6, get it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.
    3. Other issues
    If you see a lock screen when trying to boot from installation media or in Recovery mode, then a firmware password was set by the previous owner, or the machine was remotely locked via iCloud. You'll either have to contact the owner or take the machine to an Apple Store or another authorized service provider to be unlocked. You may be asked for proof of ownership.
    If the previous owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Mac App Store Customer Service has sometimes issued redemption codes for these apps to second owners who asked.
    If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able to  authorize it immediately under your ID. In that case, you'll either have to wait up to 90 days or contact iTunes Support.
    When trying to create a new iCloud account, you might get a failure message: "Account limit reached." Apple imposes a limit of three iCloud account setups per device. Erasing the device does not reset the limit. You can still use an account that was created on another device, but you won't be able to create a new one. Contact iCloud Support for more information.

  • Windows 7 64-bit hangs completely after some minut...

    Hi all,
    My Windows 7 64-bit machine hangs completely after some minutes using Nokia Suite 3.3.89 connected with a E72 through USB cable.
    When connecting, everything goes fine and I can usually synchronize data successfully between the E72 and computer. I can also connect to Internet successfully through the E72 modem.
    However, after some minutes (usually 4-5), the computer hangs completely, with the screen frozen and beign completely irresponsive to any mouse or key input.
    The only way to unlock it is to press the computer On/Off key and restart it completely.
    Has anybody experienced this issue?
    Thanks

    Hi Roberto,
              I too faced the same problem and I too use Windows 7 X64 bit, when ever i open Nokia Suite and maximize it, my screen turns completely Grey/White and nothing works including ctrl+alt+del and I would need to force reboot using the reset button this is really frustrating! I have already checked the display drivers, updated drivers but again same issue and I reinstalled nokia suite as per your suggestion in the above thread but no use  please suggest a permanent solution for this!
    Thanks & Regards,
    Pradeep

  • Concurrently write and read caused program hang infinitely.

    Hi, everyone
    I used BDB XML 2.4.11
    os : windows xp service pack 2
    I have set the java option -Xms64M -Xmx256M
    I used a util class for retrieving the XmlManager and XmlContainer handle, the code is below
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    import com.sleepycat.db.CheckpointConfig;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Environment;
    import com.sleepycat.db.EnvironmentConfig;
    import com.sleepycat.db.LockDetectMode;
    import com.sleepycat.dbxml.XmlContainer;
    import com.sleepycat.dbxml.XmlContainerConfig;
    import com.sleepycat.dbxml.XmlException;
    import com.sleepycat.dbxml.XmlManager;
    import com.sleepycat.dbxml.XmlManagerConfig;
    public class BdbXmlUtil {
        private static Map<String, XmlContainer> openedContainer = new HashMap<String, XmlContainer>();
        private static XmlManager xmlManager = null;
        public static synchronized XmlManager getXmlManager() {
            if (xmlManager == null) {
                EnvironmentConfig envConf = new EnvironmentConfig();
                envConf.setAllowCreate(true);
                envConf.setInitializeCache(true);
                envConf.setInitializeLocking(true);
                envConf.setInitializeLogging(true);
                envConf.setRunRecovery(true);
                envConf.setTransactional(true);
                envConf.setLockDetectMode(LockDetectMode.MINWRITE);
                envConf.setCacheSize(256 * 1024 * 1024);
                envConf.setTxnMaxActive(5000);
                envConf.setMultiversion(true);
                envConf.setTemporaryDirectory(new File("E:/temp/bdb-xml/tmp"));
                envConf.setErrorStream(System.err);
                // for performance
                // The setTxnNoWait has to set ture, only the transaction set true will not take effect.
                envConf.setTxnNoSync(true);
                //envConf.setTxnNoWait(true);
                Environment environment = null;
                try {
                    environment = new Environment(new File("E:/temp/bdb-xml/bdb_xml_testenv"), envConf);
                    CheckpointConfig checkpointConf = new CheckpointConfig();
                    checkpointConf.setKBytes(1024);
                    environment.checkpoint(checkpointConf);
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (DatabaseException e) {
                    e.printStackTrace();
                XmlManagerConfig managerConfig = new XmlManagerConfig();
                managerConfig.setAdoptEnvironment(true);
                try {
                    xmlManager = new XmlManager(environment, managerConfig);
                } catch (XmlException e) {
                    e.printStackTrace();
            return xmlManager;
        public static synchronized XmlContainer getXmlContainer(String xmlContainerName) {
            XmlContainer xmlContainer = null;
            if (openedContainer.containsKey(xmlContainerName)) {
                xmlContainer =
                    (XmlContainer) openedContainer.get(xmlContainerName);
            } else {
                XmlContainerConfig containerConf = new XmlContainerConfig();
                containerConf.setTransactional(true);
                containerConf.setAllowCreate(true);
                containerConf.setNodeContainer(false);
                containerConf.setMultiversion(true);
                /*containerConf.setReadUncommitted(true);*/
                try {
                    xmlContainer =
                        xmlManager.openContainer(
                            xmlContainerName, containerConf);
                } catch (XmlException e) {
                    e.printStackTrace();
                openedContainer.put(xmlContainerName, xmlContainer);
            return xmlContainer;
        public static synchronized void closeEnv() {
            try {
                Iterator<String> containerNames = openedContainer.keySet().iterator();
                while (containerNames.hasNext()) {
                    XmlContainer container = openedContainer.get(containerNames.next());
                    container.close();
                if (xmlManager != null) {
                    xmlManager.close();
            } catch (Exception e) {
                e.printStackTrace();
    }I used two classes to test the concurrency, one is responsible for put document to database, and the other is used to query database while the put operation is being performed. The run method of the two classes is below:
    put document process code:
            boolean retry = true;
            int retry_count = 0;
            // while loop is used for deadlock retries
            while (retry) {
                XmlTransaction txn = null;
                try {
                    XmlUpdateContext context = xmlManager.createUpdateContext();
                    TransactionConfig tc = new TransactionConfig();
                    tc.setNoSync(true);
                    txn = xmlManager.createTransaction(null, tc);
                    String doc = generateId() + ".xml";
                    xmlContainer.putDocument(txn, doc, "<user><name>hello world</name></user>", context);
                    txn.commit();
                    txn = null;
                    System.out.println("created : " + doc);
                    retry = false;
                } catch (XmlException xe) {
                    retry = false;
                    if (xe.getDatabaseException() instanceof DeadlockException) {
                        System.out.println(getName()
                                + " got deadlock exception!");
                        if (retry_count < 20) {
                            System.err.println(getName() + " : Retrying operation.");
                            retry = true;
                            retry_count++;
                            try {
                                Thread.sleep(100);
                            } catch (InterruptedException e) {}
                        } else {
                            System.err.println(getName()
                                    + " : out of retries. Giving up.");
                    } else {
                        System.err.println("XmlException during concurrent-test: "
                                + xe.getMessage());
                } finally {
                    if (txn != null) {
                        try {
                            txn.abort();
                        } catch (Exception e) {
                            System.err.println("Error aborting txn in concurrent-test: "
                                    + e.toString());
                            e.printStackTrace();
            }the query process code :
            XmlManager xmlManager = BdbXmlUtil.getXmlManager();
            XmlResults res = null;
            XmlQueryExpression expr = null;
            XmlTransaction txn = null;
            try {
                BdbXmlUtil.getXmlContainer("entry.dbxml");
                XmlQueryContext qc = xmlManager.createQueryContext();
                expr = xmlManager.prepare("doc('dbxml:/entry.dbxml/1.xml')//user/name", qc);
                TransactionConfig tc = new TransactionConfig();
                tc.setSnapshot(true);
                txn = xmlManager.createTransaction(null, tc);
                res = expr.execute(txn, qc);
                System.out.println("The query, '" + expr.getQuery() +
                           "'\n\t returned " + res.size() + " result(s)");
                while (res.hasNext()) {
                    XmlValue value = res.next();
                    System.out.println(value.asString());
                txn.commit();
                txn = null;
                increaseInvokeCount();
            } catch (XmlException e) {
                e.printStackTrace();
            } finally {
                if (res != null) {
                    res.delete();
                if (expr != null) {
                    expr.delete();
                if (txn != null) {
                    try {
                        txn.abort();
                    } catch (Exception e) {
                        System.err.println("Error aborting txn in query test: "
                                + e.toString());
                        e.printStackTrace();
            }in the main class, I have generated 100 threads to run the put document process and 30 threads to run the query process. After insert several documents to database, the whole process hangs infinitely. I think it is caused by the query process. When i set the query thread number to 1 or disable the query process, the put document process ended with success.
    I think it is caused by the lock. I try to execute the query in Snapshot isolation, but it doesn't works. I also tried the No Wait On Blocks, it seem ok, but alway throws DeadLockException, which can not bear. I doubt about that the lock granularity is per page, and in my program I used the Wholedoc Containers. The Query Process just take action in one document, which is 1.xml, but the lock seem that the whole container is locked. Could it be the page is so large that it covers the whole container? I referenced the document Getting Started with Transaction Processing For Java, but find no hint.
    The BDB XML is excellent in performance, and I want use it in my program. I really hope that this problem can be solved. I don't know whether it is a bug or my reason.Any suggestion will be very helpful, thanks advance.
    Jhon Kao
    Message was edited to better format the Java code:
    gmfeinberg
    added some more info to describe the problem:
    Excalibur
    null

    Dear gmfeinberg,
    You are so kind. I appreciate very much for your approval. You are alway very warm-hearted to help others. Thanks very much.
    I followed your advice and changed the prepare() to add the transaction as a parameter. The complete code I have already posted above. But unfortunately the program hangs also. The complete output of the db_stat -CA when the hang happens is below:
    Default locking region information:
    395     Last allocated locker ID
    0x7fffffff     Current maximum unused locker ID
    9     Number of lock modes
    1000     Maximum number of locks possible
    1000     Maximum number of lockers possible
    1000     Maximum number of lock objects possible
    132     Number of current locks
    134     Maximum number of locks at any one time
    544     Number of current lockers
    582     Maximum number of lockers at any one time
    12     Number of current lock objects
    19     Maximum number of lock objects at any one time
    3935     Total number of locks requested
    3697     Total number of locks released
    0     Total number of locks upgraded
    58     Total number of locks downgraded
    257     Lock requests not available due to conflicts, for which we waited
    101     Lock requests not available due to conflicts, for which we did not wait
    0     Number of deadlocks
    0     Lock timeout value
    0     Number of locks that have timed out
    0     Transaction timeout value
    0     Number of transactions that have timed out
    472KB     The size of the lock region
    938     The number of region locks that required waiting (3%)
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Lock REGINFO information:
    Lock     Region type
    5     Region ID
    __db.005     Region name
    0x720000     Original region address
    0x720000     Region address
    0x720048     Region primary address
    0     Region maximum allocation
    0     Region allocated
    Region allocations: 3005 allocations, 0 failures, 0 frees, 1 longest
    REGION_JOIN_OK     Region flags
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Lock region parameters:
    65571     Lock region region mutex [938/28484 3% 4244/7164]
    1031     locker table size
    1031     object table size
    448     obj_off
    45880     locker_off
    0     need_dd
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Lock conflict matrix:
    0     0     0     0     0     0     0     0     0     
    0     0     1     0     1     0     1     0     1     
    0     1     1     1     1     1     1     1     1     
    0     0     0     0     0     0     0     0     0     
    0     1     1     0     0     0     0     1     1     
    0     0     1     0     0     0     0     0     1     
    0     1     1     0     0     0     0     1     1     
    0     0     1     0     1     0     1     0     0     
    0     1     1     0     1     1     1     0     1     
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Locks grouped by lockers:
    Locker   Mode      Count Status  ----------------- Object ---------------
           2 dd=464 locks held 2    write locks 0    pid/thread 1704/5836  
           2 READ          1 HELD    entry.dbxml               handle        2
           2 READ          1 HELD    entry.dbxml               handle        0
           5 dd=463 locks held 0    write locks 0    pid/thread 1704/5836  
           6 dd=462 locks held 1    write locks 0    pid/thread 1704/5836  
           6 READ          1 HELD    entry.dbxml               handle        4
           9 dd=461 locks held 0    write locks 0    pid/thread 1704/5836  
           a dd=460 locks held 1    write locks 0    pid/thread 1704/5836  
           a READ          1 HELD    entry.dbxml               handle        6
           d dd=459 locks held 0    write locks 0    pid/thread 1704/5836  
           e dd=458 locks held 1    write locks 0    pid/thread 1704/5836  
           e READ          1 HELD    entry.dbxml               handle        8
          11 dd=457 locks held 0    write locks 0    pid/thread 1704/5836  
          12 dd=456 locks held 1    write locks 0    pid/thread 1704/5836  
          12 READ          1 HELD    entry.dbxml               handle       10
          15 dd=455 locks held 0    write locks 0    pid/thread 1704/5836  
          16 dd=454 locks held 2    write locks 0    pid/thread 1704/5836  
          16 READ          1 HELD    entry.dbxml               handle       12
          16 READ          5 HELD    entry.dbxml               handle        0
          19 dd=453 locks held 0    write locks 0    pid/thread 1704/7764  
          1d dd=452 locks held 1    write locks 0    pid/thread 1704/5836  
          1d READ          1 HELD    entry.dbxml               handle       14
          20 dd=451 locks held 0    write locks 0    pid/thread 1704/6460  
          21 dd=450 locks held 2    write locks 0    pid/thread 1704/5836  
          21 READ          1 HELD    entry.dbxml               handle       16
          21 READ          2 HELD    entry.dbxml               handle        0
          24 dd=449 locks held 0    write locks 0    pid/thread 1704/5836  
          52 dd=448 locks held 2    write locks 0    pid/thread 1704/5836  
          52 READ          1 HELD    entry.dbxml               handle       18
          52 READ          1 HELD    entry.dbxml               handle        0
          55 dd=447 locks held 0    write locks 0    pid/thread 1704/5836  
          56 dd=446 locks held 1    write locks 0    pid/thread 1704/1168  
          56 READ          1 HELD    entry.dbxml               page         13
          57 dd=335 locks held 0    write locks 0    pid/thread 1704/4692  
          58 dd=334 locks held 0    write locks 0    pid/thread 1704/4692  
          59 dd=333 locks held 0    write locks 0    pid/thread 1704/4692  
          5a dd=332 locks held 0    write locks 0    pid/thread 1704/4692  
          5b dd=331 locks held 0    write locks 0    pid/thread 1704/4692  
          5c dd=330 locks held 0    write locks 0    pid/thread 1704/4692  
          5d dd=327 locks held 0    write locks 0    pid/thread 1704/7184  
          5e dd=324 locks held 0    write locks 0    pid/thread 1704/1168  
          5f dd=320 locks held 0    write locks 0    pid/thread 1704/6876  
          60 dd=319 locks held 0    write locks 0    pid/thread 1704/6380  
          61 dd=318 locks held 0    write locks 0    pid/thread 1704/6752  
          62 dd=317 locks held 0    write locks 0    pid/thread 1704/7348  
          63 dd=316 locks held 0    write locks 0    pid/thread 1704/1844  
          64 dd=315 locks held 0    write locks 0    pid/thread 1704/5224  
          65 dd=314 locks held 0    write locks 0    pid/thread 1704/5668  
          66 dd=313 locks held 0    write locks 0    pid/thread 1704/8164  
          67 dd=312 locks held 0    write locks 0    pid/thread 1704/6272  
          68 dd=310 locks held 0    write locks 0    pid/thread 1704/6268  
          69 dd=309 locks held 0    write locks 0    pid/thread 1704/7148  
          6a dd=308 locks held 0    write locks 0    pid/thread 1704/7184  
          6b dd=307 locks held 0    write locks 0    pid/thread 1704/6596  
          6c dd=306 locks held 0    write locks 0    pid/thread 1704/6044  
          6d dd=302 locks held 0    write locks 0    pid/thread 1704/6476  
          6e dd=301 locks held 0    write locks 0    pid/thread 1704/6916  
          6f dd=300 locks held 0    write locks 0    pid/thread 1704/4784  
          70 dd=299 locks held 0    write locks 0    pid/thread 1704/7444  
          71 dd=298 locks held 0    write locks 0    pid/thread 1704/5544  
          72 dd=297 locks held 0    write locks 0    pid/thread 1704/7140  
          73 dd=296 locks held 0    write locks 0    pid/thread 1704/5724  
          74 dd=295 locks held 0    write locks 0    pid/thread 1704/956  
          75 dd=294 locks held 0    write locks 0    pid/thread 1704/7916  
          76 dd=293 locks held 0    write locks 0    pid/thread 1704/6116  
          77 dd=292 locks held 0    write locks 0    pid/thread 1704/7928  
          78 dd=291 locks held 0    write locks 0    pid/thread 1704/6116  
          79 dd=290 locks held 0    write locks 0    pid/thread 1704/7160  
          7a dd=289 locks held 0    write locks 0    pid/thread 1704/6656  
          7b dd=288 locks held 0    write locks 0    pid/thread 1704/7212  
          7c dd=287 locks held 0    write locks 0    pid/thread 1704/6116  
          7d dd=286 locks held 0    write locks 0    pid/thread 1704/5820  
          7e dd=285 locks held 0    write locks 0    pid/thread 1704/5088  
          7f dd=284 locks held 0    write locks 0    pid/thread 1704/1108  
          80 dd=283 locks held 0    write locks 0    pid/thread 1704/7372  
          81 dd=282 locks held 0    write locks 0    pid/thread 1704/4692  
          82 dd=281 locks held 0    write locks 0    pid/thread 1704/7460  
          83 dd=280 locks held 0    write locks 0    pid/thread 1704/5528  
          84 dd=279 locks held 0    write locks 0    pid/thread 1704/7160  
          85 dd=278 locks held 0    write locks 0    pid/thread 1704/1168  
          86 dd=275 locks held 0    write locks 0    pid/thread 1704/5464  
          87 dd=274 locks held 0    write locks 0    pid/thread 1704/5652  
          88 dd=273 locks held 0    write locks 0    pid/thread 1704/6628  
          89 dd=272 locks held 0    write locks 0    pid/thread 1704/5164  
          8a dd=271 locks held 0    write locks 0    pid/thread 1704/7372  
          8b dd=270 locks held 0    write locks 0    pid/thread 1704/5236  
          8c dd=269 locks held 0    write locks 0    pid/thread 1704/6532  
          8d dd=268 locks held 0    write locks 0    pid/thread 1704/4656  
          8e dd=267 locks held 0    write locks 0    pid/thread 1704/7708  
          8f dd=266 locks held 0    write locks 0    pid/thread 1704/5112  
          90 dd=265 locks held 0    write locks 0    pid/thread 1704/7484  
          91 dd=259 locks held 0    write locks 0    pid/thread 1704/7352  
          92 dd=258 locks held 0    write locks 0    pid/thread 1704/7408  
          93 dd=257 locks held 0    write locks 0    pid/thread 1704/5472  
          94 dd=256 locks held 0    write locks 0    pid/thread 1704/7372  
          95 dd=255 locks held 0    write locks 0    pid/thread 1704/7552  
          96 dd=252 locks held 0    write locks 0    pid/thread 1704/5112  
          97 dd=249 locks held 0    write locks 0    pid/thread 1704/5472  
          98 dd=248 locks held 0    write locks 0    pid/thread 1704/5472  
          99 dd=247 locks held 0    write locks 0    pid/thread 1704/6460  
          9a dd=246 locks held 0    write locks 0    pid/thread 1704/5432  
          9b dd=245 locks held 0    write locks 0    pid/thread 1704/7220  
          9c dd=244 locks held 0    write locks 0    pid/thread 1704/7768  
          9d dd=243 locks held 0    write locks 0    pid/thread 1704/5088  
          9e dd=242 locks held 0    write locks 0    pid/thread 1704/5544  
          9f dd=241 locks held 0    write locks 0    pid/thread 1704/5272  
          a0 dd=240 locks held 0    write locks 0    pid/thread 1704/7284  
          a1 dd=239 locks held 0    write locks 0    pid/thread 1704/3884  
          a2 dd=238 locks held 0    write locks 0    pid/thread 1704/4552  
          a3 dd=237 locks held 0    write locks 0    pid/thread 1704/6460  
          a4 dd=236 locks held 0    write locks 0    pid/thread 1704/6324  
          a5 dd=235 locks held 0    write locks 0    pid/thread 1704/6272  
          a6 dd=234 locks held 0    write locks 0    pid/thread 1704/7276  
          a7 dd=233 locks held 0    write locks 0    pid/thread 1704/4552  
          a8 dd=232 locks held 0    write locks 0    pid/thread 1704/6876  
          a9 dd=231 locks held 0    write locks 0    pid/thread 1704/5296  
          aa dd=230 locks held 0    write locks 0    pid/thread 1704/5668  
          ab dd=229 locks held 0    write locks 0    pid/thread 1704/8164  
          ac dd=228 locks held 0    write locks 0    pid/thread 1704/5444  
          ad dd=227 locks held 0    write locks 0    pid/thread 1704/7916  
          ae dd=226 locks held 0    write locks 0    pid/thread 1704/1944  
          af dd=225 locks held 0    write locks 0    pid/thread 1704/7040  
          b0 dd=224 locks held 0    write locks 0    pid/thread 1704/5548  
          b1 dd=223 locks held 0    write locks 0    pid/thread 1704/3880  
          b2 dd=222 locks held 0    write locks 0    pid/thread 1704/5428  
          b3 dd=221 locks held 0    write locks 0    pid/thread 1704/5224  
          b4 dd=220 locks held 0    write locks 0    pid/thread 1704/6420  
          b5 dd=219 locks held 0    write locks 0    pid/thread 1704/7104  
          b6 dd=218 locks held 0    write locks 0    pid/thread 1704/5944  
          b7 dd=217 locks held 0    write locks 0    pid/thread 1704/7728  
          b8 dd=216 locks held 0    write locks 0    pid/thread 1704/7632  
          b9 dd=215 locks held 0    write locks 0    pid/thread 1704/7436  
          ba dd=214 locks held 0    write locks 0    pid/thread 1704/5472  
          bb dd=213 locks held 0    write locks 0    pid/thread 1704/7148  
          bc dd=212 locks held 0    write locks 0    pid/thread 1704/4200  
          bd dd=211 locks held 0    write locks 0    pid/thread 1704/4716  
          be dd=210 locks held 0    write locks 0    pid/thread 1704/5652  
          bf dd=209 locks held 0    write locks 0    pid/thread 1704/7012  
          c0 dd=208 locks held 0    write locks 0    pid/thread 1704/6532  
          c1 dd=207 locks held 0    write locks 0    pid/thread 1704/4692  
          c2 dd=206 locks held 0    write locks 0    pid/thread 1704/7936  
          c3 dd=205 locks held 0    write locks 0    pid/thread 1704/656  
          c4 dd=204 locks held 0    write locks 0    pid/thread 1704/6460  
          c5 dd=203 locks held 0    write locks 0    pid/thread 1704/7348  
          c6 dd=202 locks held 0    write locks 0    pid/thread 1704/4768  
          c7 dd=201 locks held 0    write locks 0    pid/thread 1704/6080  
          c8 dd=200 locks held 0    write locks 0    pid/thread 1704/6380  
          c9 dd=199 locks held 0    write locks 0    pid/thread 1704/376  
          ca dd=198 locks held 0    write locks 0    pid/thread 1704/5468  
          cb dd=197 locks held 0    write locks 0    pid/thread 1704/7128  
          cc dd=196 locks held 0    write locks 0    pid/thread 1704/6408  
          cd dd=195 locks held 0    write locks 0    pid/thread 1704/7396  
          ce dd=194 locks held 0    write locks 0    pid/thread 1704/7972  
          cf dd=193 locks held 0    write locks 0    pid/thread 1704/5088  
          d0 dd=192 locks held 0    write locks 0    pid/thread 1704/7848  
          d1 dd=191 locks held 0    write locks 0    pid/thread 1704/5912  
          d2 dd=190 locks held 0    write locks 0    pid/thread 1704/5820  
          d3 dd=189 locks held 0    write locks 0    pid/thread 1704/4552  
          d4 dd=188 locks held 0    write locks 0    pid/thread 1704/7140  
          d5 dd=187 locks held 0    write locks 0    pid/thread 1704/5116  
          d6 dd=186 locks held 0    write locks 0    pid/thread 1704/4784  
          d7 dd=185 locks held 0    write locks 0    pid/thread 1704/5472  
          d8 dd=184 locks held 0    write locks 0    pid/thread 1704/5756  
          d9 dd=183 locks held 0    write locks 0    pid/thread 1704/6584  
          da dd=182 locks held 0    write locks 0    pid/thread 1704/5236  
          db dd=181 locks held 0    write locks 0    pid/thread 1704/7444  
          dc dd=180 locks held 0    write locks 0    pid/thread 1704/7928  
          dd dd=179 locks held 0    write locks 0    pid/thread 1704/5724  
          de dd=178 locks held 0    write locks 0    pid/thread 1704/6476  
          df dd=177 locks held 0    write locks 0    pid/thread 1704/7768  
          e0 dd=176 locks held 0    write locks 0    pid/thread 1704/5444  
          e1 dd=175 locks held 0    write locks 0    pid/thread 1704/1944  
          e2 dd=174 locks held 0    write locks 0    pid/thread 1704/1448  
          e3 dd=173 locks held 0    write locks 0    pid/thread 1704/5088  
          e4 dd=172 locks held 0    write locks 0    pid/thread 1704/6420  
          e5 dd=171 locks held 0    write locks 0    pid/thread 1704/6532  
          e6 dd=170 locks held 0    write locks 0    pid/thread 1704/5088  
          e7 dd=169 locks held 0    write locks 0    pid/thread 1704/5272  
          e8 dd=168 locks held 0    write locks 0    pid/thread 1704/6896  
          e9 dd=167 locks held 0    write locks 0    pid/thread 1704/5652  
          ea dd=166 locks held 0    write locks 0    pid/thread 1704/7040  
          eb dd=165 locks held 0    write locks 0    pid/thread 1704/6272  
          ec dd=164 locks held 0    write locks 0    pid/thread 1704/3880  
          ed dd=163 locks held 0    write locks 0    pid/thread 1704/5236  
          ee dd=162 locks held 0    write locks 0    pid/thread 1704/6532  
          ef dd=161 locks held 0    write locks 0    pid/thread 1704/656  
          f0 dd=160 locks held 0    write locks 0    pid/thread 1704/6836  
          f1 dd=159 locks held 0    write locks 0    pid/thread 1704/7916  
          f2 dd=158 locks held 0    write locks 0    pid/thread 1704/6324  
          f3 dd=157 locks held 0    write locks 0    pid/thread 1704/3884  
          f4 dd=156 locks held 0    write locks 0    pid/thread 1704/7220  
          f5 dd=155 locks held 0    write locks 0    pid/thread 1704/6188  
          f6 dd=154 locks held 0    write locks 0    pid/thread 1704/7960  
          f7 dd=153 locks held 0    write locks 0    pid/thread 1704/7396  
          f8 dd=152 locks held 0    write locks 0    pid/thread 1704/7632  
          f9 dd=151 locks held 0    write locks 0    pid/thread 1704/5088  
          fa dd=150 locks held 0    write locks 0    pid/thread 1704/7728  
          fb dd=149 locks held 0    write locks 0    pid/thread 1704/5428  
          fc dd=148 locks held 0    write locks 0    pid/thread 1704/5468  
          fd dd=147 locks held 0    write locks 0    pid/thread 1704/7276  
          fe dd=146 locks held 0    write locks 0    pid/thread 1704/4200  
          ff dd=145 locks held 0    write locks 0    pid/thread 1704/6352  
         100 dd=144 locks held 0    write locks 0    pid/thread 1704/4896  
         101 dd=143 locks held 0    write locks 0    pid/thread 1704/5548  
         102 dd=142 locks held 0    write locks 0    pid/thread 1704/7128  
         103 dd=141 locks held 0    write locks 0    pid/thread 1704/5088  
         104 dd=140 locks held 0    write locks 0    pid/thread 1704/5088  
         105 dd=139 locks held 0    write locks 0    pid/thread 1704/6460  
         106 dd=138 locks held 0    write locks 0    pid/thread 1704/376  
         107 dd=137 locks held 0    write locks 0    pid/thread 1704/6956  
         108 dd=136 locks held 0    write locks 0    pid/thread 1704/7848  
         109 dd=135 locks held 0    write locks 0    pid/thread 1704/5432  
         10a dd=134 locks held 0    write locks 0    pid/thread 1704/5912  
         10b dd=133 locks held 0    write locks 0    pid/thread 1704/6876  
         10c dd=132 locks held 0    write locks 0    pid/thread 1704/5896  
         10d dd=131 locks held 0    write locks 0    pid/thread 1704/5156  
         10e dd=130 locks held 0    write locks 0    pid/thread 1704/6260  
         10f dd=129 locks held 0    write locks 0    pid/thread 1704/7232  
         110 dd=128 locks held 0    write locks 0    pid/thread 1704/4784  
         111 dd=127 locks held 0    write locks 0    pid/thread 1704/6896  
         112 dd=126 locks held 0    write locks 0    pid/thread 1704/7116  
         113 dd=125 locks held 0    write locks 0    pid/thread 1704/6476  
         114 dd=124 locks held 0    write locks 0    pid/thread 1704/5756  
         115 dd=123 locks held 0    write locks 0    pid/thread 1704/4768  
         116 dd=122 locks held 0    write locks 0    pid/thread 1704/5944  
         117 dd=121 locks held 0    write locks 0    pid/thread 1704/7444  
         118 dd=120 locks held 0    write locks 0    pid/thread 1704/7436  
         119 dd=119 locks held 0    write locks 0    pid/thread 1704/5236  
         11a dd=118 locks held 0    write locks 0    pid/thread 1704/5116  
         11b dd=117 locks held 0    write locks 0    pid/thread 1704/7104  
         11c dd=116 locks held 0    write locks 0    pid/thread 1704/8144  
         11d dd=115 locks held 0    write locks 0    pid/thread 1704/5224  
         11e dd=114 locks held 0    write locks 0    pid/thread 1704/8164  
         11f dd=113 locks held 0    write locks 0    pid/thread 1704/5544  
         120 dd=112 locks held 0    write locks 0    pid/thread 1704/5724  
         121 dd=111 locks held 0    write locks 0    pid/thread 1704/7972  
         122 dd=110 locks held 1    write locks 0    pid/thread 1704/1108  
         122 READ          1 HELD    entry.dbxml               page         13
         123 dd=109 locks held 0    write locks 0    pid/thread 1704/5296  
         124 dd=108 locks held 0    write locks 0    pid/thread 1704/7348  
         125 dd=107 locks held 0    write locks 0    pid/thread 1704/6080  
         126 dd=106 locks held 0    write locks 0    pid/thread 1704/7184  
         126 READ          1 WAIT    entry.dbxml               page         13
         127 dd=105 locks held 0    write locks 0    pid/thread 1704/6408  
         128 dd=104 locks held 0    write locks 0    pid/thread 1704/7284  
         129 dd=103 locks held 0    write locks 0    pid/thread 1704/6584  
         12a dd=102 locks held 0    write locks 0    pid/thread 1704/6216  
         12b dd=101 locks held 0    write locks 0    pid/thread 1704/6380  
         12c dd=100 locks held 0    write locks 0    pid/thread 1704/5668  
         12d dd=99 locks held 0    write locks 0    pid/thread 1704/4120  
         12e dd=98 locks held 0    write locks 0    pid/thread 1704/5804  
         12f dd=97 locks held 0    write locks 0    pid/thread 1704/7140  
         130 dd=96 locks held 0    write locks 0    pid/thread 1704/6712  
         131 dd=95 locks held 0    write locks 0    pid/thread 1704/6564  
         132 dd=94 locks held 0    write locks 0    pid/thread 1704/7808  
         133 dd=93 locks held 0    write locks 0    pid/thread 1704/1844  
         134 dd=92 locks held 0    write locks 0    pid/thread 1704/4024  
         135 dd=91 locks held 0    write locks 0    pid/thread 1704/6900  
         136 dd=90 locks held 0    write locks 0    pid/thread 1704/6928  
         137 dd=89 locks held 0    write locks 0    pid/thread 1704/7764  
         138 dd=88 locks held 0    write locks 0    pid/thread 1704/7320  
         139 dd=87 locks held 0    write locks 0    pid/thread 1704/6752  
         13a dd=86 locks held 0    write locks 0    pid/thread 1704/6728  
         13b dd=85 locks held 0    write locks 0    pid/thread 1704/1864  
         13c dd=84 locks held 0    write locks 0    pid/thread 1704/956  
         13d dd=83 locks held 0    write locks 0    pid/thread 1704/1168  
         13d READ          1 WAIT    entry.dbxml               page         11
         13e dd=82 locks held 0    write locks 0    pid/thread 1704/7328  
         13f dd=81 locks held 0    write locks 0    pid/thread 1704/7496  
         140 dd=80 locks held 0    write locks 0    pid/thread 1704/6776  
         141 dd=79 locks held 0    write locks 0    pid/thread 1704/6916  
         142 dd=78 locks held 0    write locks 0    pid/thread 1704/6948  
         143 dd=77 locks held 0    write locks 0    pid/thread 1704/4236  
         144 dd=76 locks held 0    write locks 0    pid/thread 1704/7056  
         145 dd=75 locks held 0    write locks 0    pid/thread 1704/4176  
         146 dd=74 locks held 0    write locks 0    pid/thread 1704/6676  
         147 dd=73 locks held 0    write locks 0    pid/thread 1704/7764  
         148 dd=72 locks held 0    write locks 0    pid/thread 1704/1108  
         148 READ          1 WAIT    entry.dbxml               page         11
         149 dd=71 locks held 0    write locks 0    pid/thread 1704/5100  
         14a dd=70 locks held 0    write locks 0    pid/thread 1704/4724  
         14b dd=69 locks held 0    write locks 0    pid/thread 1704/7236  
         14c dd=67 locks held 0    write locks 0    pid/thread 1704/3940  
         14d dd=66 locks held 0    write locks 0    pid/thread 1704/5688  
         14e dd=65 locks held 0    write locks 0    pid/thread 1704/6616  
         14f dd=64 locks held 0    write locks 0    pid/thread 1704/7764  
         150 dd=63 locks held 0    write locks 0    pid/thread 1704/7456  
         151 dd=62 locks held 0    write locks 0    pid/thread 1704/7428  
         152 dd=61 locks held 0    write locks 0    pid/thread 1704/6064  
         153 dd=60 locks held 0    write locks 0    pid/thread 1704/5464  
         154 dd=59 locks held 0    write locks 0    pid/thread 1704/7428  
         155 dd=58 locks held 0    write locks 0    pid/thread 1704/7148  
         155 READ          1 WAIT    entry.dbxml               page         13
         156 dd=57 locks held 0    write locks 0    pid/thread 1704/7148  
         157 dd=56 locks held 0    write locks 0    pid/thread 1704/5620  
         158 dd=55 locks held 0    write locks 0    pid/thread 1704/3716  
         159 dd=54 locks held 0    write locks 0    pid/thread 1704/7640  
         15a dd=53 locks held 0    write locks 0    pid/thread 1704/4692  
         15a READ          1 WAIT    entry.dbxml               page         13
         15b dd=52 locks held 0    write locks 0    pid/thread 1704/4692  
         15c dd=51 locks held 0    write locks 0    pid/thread 1704/5164  
         15c READ          1 WAIT    entry.dbxml               page         13
         15d dd=50 locks held 0    write locks 0    pid/thread 1704/5164  
         15e dd=49 locks held 0    write locks 0    pid/thread 1704/5820  
         15e READ          1 WAIT    entry.dbxml               page         13
         15f dd=48 locks held 0    write locks 0    pid/thread 1704/5820  
         160 dd=47 locks held 0    write locks 0    pid/thread 1704/6496  
         161 dd=46 locks held 0    write locks 0    pid/thread 1704/7624  
         162 dd=45 locks held 0    write locks 0    pid/thread 1704/4772  
         163 dd=44 locks held 0    write locks 0    pid/thread 1704/7552  
         163 READ          1 WAIT    entry.dbxml               page         13
         164 dd=43 locks held 0    write locks 0    pid/thread 1704/7552  
         165 dd=42 locks held 0    write locks 0    pid/thread 1704/7372  
         166 dd=41 locks held 0    write locks 0    pid/thread 1704/5536  
         167 dd=40 locks held 0    write locks 0    pid/thread 1704/6796  
         168 dd=39 locks held 0    write locks 0    pid/thread 1704/5268  
         169 dd=38 locks held 0    write locks 0    pid/thread 1704/8024  
         16a dd=37 locks held 0    write locks 0    pid/thread 1704/6460  
         16a READ          1 WAIT    entry.dbxml               page         13
         16b dd=36 locks held 0    write locks 0    pid/thread 1704/6460  
         16c dd=35 locks held 0    write locks 0    pid/thread 1704/4368  
         16d dd=34 locks held 0    write locks 0    pid/thread 1704/4368  
         16e dd=33 locks held 0    write locks 0    pid/thread 1704/6016  
         16f dd=32 locks held 0    write locks 0    pid/thread 1704/6908  
         170 dd=31 locks held 0    write locks 0    pid/thread 1704/7640  
         171 dd=30 locks held 0    write locks 0    pid/thread 1704/6016  
    80000018 dd=445 locks held 0    write locks 0    pid/thread 1704/1944  
         172 dd=29 locks held 0    write locks 0    pid/thread 1704/6532  
    80000019 dd=444 locks held 0    write locks 0    pid/thread 1704/6728  
         173 dd=28 locks held 0    write locks 0    pid/thread 1704/6588  
    8000001a dd=443 locks held 0    write locks 0    pid/thread 1704/7916  
         174 dd=27 locks held 0    write locks 0    pid/thread 1704/7420  
    8000001b dd=442 locks held 0    write locks 0    pid/thread 1704/4200  
         175 dd=26 locks held 0    write locks 0    pid/thread 1704/6336  
    8000001c dd=441 locks held 0    write locks 0    pid/thread 1704/5548  
         176 dd=25 locks held 0    write locks 0    pid/thread 1704/5088  
    8000001d dd=440 locks held 0    write locks 0    pid/thread 1704/1844  
         177 dd=24 locks held 0    write locks 0    pid/thread 1704/7212  
    8000001e dd=439 locks held 0    write locks 0    pid/thread 1704/6876  
         178 dd=23 locks held 0    write locks 0    pid/thread 1704/7212  
    8000001f dd=438 locks held 0    write locks 0    pid/thread 1704/5224  
         179 dd=22 locks held 0    write locks 0    pid/thread 1704/5088  
    80000020 dd=437 locks held 0    write locks 0    pid/thread 1704/5668  
         17a dd=20 locks held 0    write locks 0    pid/thread 1704/7660  
    80000021 dd=436 locks held 0    write locks 0    pid/thread 1704/7348  
         17b dd=19 locks held 0    write locks 0    pid/thread 1704/7160  
    80000022 dd=435 locks held 0    write locks 0    pid/thread 1704/8164  
         17c dd=18 locks held 0    write locks 0    pid/thread 1704/6656  
    80000023 dd=434 locks held 0    write locks 0    pid/thread 1704/6420  
         17d dd=17 locks held 0    write locks 0    pid/thread 1704/7740  
    80000024 dd=433 locks held 0    write locks 0    pid/thread 1704/4120  
         17e dd=16 locks held 0    write locks 0    pid/thread 1704/5652  
         17e READ          1 WAIT    entry.dbxml               page         13
    80000025 dd=432 locks held 0    write locks 0    pid/thread 1704/3884  
         17f dd=15 locks held 0    write locks 0    pid/thread 1704/5652  
    80000026 dd=431 locks held 0    write locks 0    pid/thread 1704/6272  
         180 dd=13 locks held 0    write locks 0    pid/thread 1704/7928  
         180 READ          1 WAIT    entry.dbxml               page         13
    80000027 dd=430 locks held 0    write locks 0    pid/thread 1704/5688  
         181 dd=12 locks held 0    write locks 0    pid/thread 1704/7928  
    80000028 dd=429 locks held 0    write locks 0    pid/thread 1704/6380  
         182 dd=11 locks held 0    write locks 0    pid/thread 1704/6596  
         182 READ          1 WAIT    entry.dbxml               page         13
    80000029 dd=428 locks held 0    write locks 0    pid/thread 1704/6752  
         183 dd=10 locks held 0    write locks 0    pid/thread 1704/6596  
    8000002a dd=427 locks held 0    write locks 0    pid/thread 1704/6584  
         184 dd= 8 locks held 0    write locks 0    pid/thread 1704/5088  
         184 READ          1 WAIT    entry.dbxml               page         13
    8000002b dd=426 locks held 0    write locks 0    pid/thread 1704/7328  
         185 dd= 7 locks held 0    write locks 0    pid/thread 1704/5088  
    8000002c dd=425 locks held 0    write locks 0    pid/thread 1704/7232  
         186 dd= 6 locks held 0    write locks 0    pid/thread 1704/5236  
         186 READ          1 WAIT    entry.dbxml               page         13
    8000002d dd=424 locks held 0    write locks 0    pid/thread 1704/5756  
         187 dd= 5 locks held 0    write locks 0    pid/thread 1704/5236  
    8000002e dd=423 locks held 0    write locks 0    pid/thread 1704/5896  
         188 dd= 4 locks held 0    write locks 0    pid/thread 1704/6532  
         188 READ          1 WAIT    entry.dbxml               page         13
    8000002f dd=422 locks held 0    write locks 0    pid/thread 1704/7276  
         189 dd= 3 locks held 0    write locks 0    pid/thread 1704/6532  
    80000030 dd=421 locks held 0    write locks 0    pid/thread 1704/4176  
         18a dd= 1 locks held 0    write locks 0    pid/thread 1704/5472  
         18a READ          1 WAIT    entry.dbxml               page         13
    80000031 dd=420 locks held 0    write locks 0    pid/thread 1704/1448  
         18b dd= 0 locks held 0    write locks 0    pid/thread 1704/5472  
    80000032 dd=419 locks held 0    write locks 0    pid/thread 1704/4024  
    80000033 dd=418 locks held 0    write locks 0    pid/thread 1704/376  
    80000034 dd=417 locks held 0    write locks 0    pid/thread 1704/7284  
    80000035 dd=416 locks held 0    write locks 0    pid/thread 1704/5432  
    80000036 dd=415 locks held 0    write locks 0    pid/thread 1704/6956  
    80000037 dd=414 locks held 0    write locks 0    pid/thread 1704/6080  
    80000038 dd=413 locks held 0    write locks 0    pid/thread 1704/6776  
    80000039 dd=412 locks held 0    write locks 0    pid/thread 1704/5912  
    8000003a dd=411 locks held 0    write locks 0    pid/thread 1704/5544  
    8000003b dd=410 locks held 0    write locks 0    pid/thread 1704/656  
    8000003c dd=409 locks held 0    write locks 0    pid/thread 1704/7220  
    8000003d dd=408 locks held 0    write locks 0    pid/thread 1704/4768  
    8000003f dd=407 locks held 0    write locks 0    pid/thread 1704/6092  
    80000040 dd=406 locks held 0    write locks 0    pid/thread 1704/5804  
    80000041 dd=405 locks held 0    write locks 0    pid/thread 1704/5272  
    80000042 dd=404 locks held 0    write locks 0    pid/thread 1704/6712  
    80000043 dd=403 locks held 0    write locks 0    pid/thread 1704/7056  
    80000044 dd=402 locks held 0    write locks 0    pid/thread 1704/7104  
    80000045 dd=401 locks held 0    write locks 0    pid/thread 1704/7040  
    80000046 dd=400 locks held 0    write locks 0    pid/thread 1704/5116  
    80000047 dd=399 locks held 0    write locks 0    pid/thread 1704/7728  
    80000048 dd=398 locks held 0    write locks 0    pid/thread 1704/6900  
    80000049 dd=397 locks held 0    write locks 0    pid/thread 1704/7936  
    8000004a dd=396 locks held 0    write locks 0    pid/thread 1704/7236  
    8000004b dd=395 locks held 0    write locks 0    pid/thread 1704/8144  
    8000004c dd=394 locks held 0    write locks 0    pid/thread 1704/7140  
    8000004d dd=393 locks held 0    write locks 0    pid/thread 1704/6324  
    8000004e dd=392 locks held 0    write locks 0    pid/thread 1704/4552  
    8000004f dd=391 locks held 0    write locks 0    pid/thread 1704/5944  
    80000050 dd=390 locks held 0    write locks 0    pid/thread 1704/956  
    80000051 dd=389 locks held 0    write locks 0    pid/thread 1704/5156  
    80000052 dd=388 locks held 0    write locks 0    pid/thread 1704/5444  
    80000053 dd=387 locks held 0    write locks 0    pid/thread 1704/4784  
    80000054 dd=386 locks held 0    write locks 0    pid/thread 1704/4724  
    80000055 dd=385 locks held 0    write locks 0    pid/thread 1704/5100  
    80000056 dd=384 locks held 0    write locks 0    pid/thread 1704/3940  
    80000057 dd=383 locks held 0    write locks 0    pid/thread 1704/6676  
    80000058 dd=382 locks held 0    write locks 0    pid/thread 1704/7436  
    80000059 dd=381 locks held 0    write locks 0    pid/thread 1704/7768  
    8000005a dd=380 locks held 0    write locks 0    pid/thread 1704/7496  
    8000005b dd=379 locks held 0    write locks 0    pid/thread 1704/6476  
    8000005c dd=378 locks held 0    write locks 0    pid/thread 1704/6352  
    8000005d dd=377 locks held 0    write locks 0    pid/thread 1704/6928  
    8000005e dd=376 locks held 0    write locks 0    pid/thread 1704/6916  
    8000005f dd=375 locks held 0    write locks 0    pid/thread 1704/7128  
    80000060 dd=374 locks held 0    write locks 0    pid/thread 1704/5468  
    80000061 dd=373 locks held 0    write locks 0    pid/thread 1704/6408  
    80000062 dd=372 locks held 0    write locks 0    pid/thread 1704/6260  
    80000063 dd=371 locks held 0    write locks 0    pid/thread 1704/6948  
    80000064 dd=370 locks held 0    write locks 0    pid/thread 1704/1864  
    80000065 dd=369 locks held 0    write locks 0    pid/thread 1704/5296  
    80000066 dd=368 locks held 0    write locks 0    pid/thread 1704/7848  
    80000067 dd=367 locks held 0    write locks 0    pid/thread 1704/7444  
    80000068 dd=366 locks held 0    write locks 0    pid/thread 1704/7320  
    80000069 dd=365 locks held 0    write locks 0    pid/thread 1704/7972  
    8000006a dd=364 locks held 0    write locks 0    pid/thread 1704/5724  
    8000006b dd=363 locks held 0    write locks 0    pid/thread 1704/7456  
    8000006c dd=362 locks held 0    write locks 0    pid/thread 1704/6896  
    8000006d dd=361 locks held 0    write locks 0    pid/thread 1704/6616  
    8000006e dd=360 locks held 0    write locks 0    pid/thread 1704/7632  
    8000006f dd=359 locks held 0    write locks 0    pid/thread 1704/6216  
    80000070 dd=358 locks held 0    write locks 0    pid/thread 1704/7116  
    80000071 dd=357 locks held 0    write locks 0    pid/thread 1704/7396  
    80000072 dd=356 locks held 0    write locks 0    pid/thread 1704/4896  
    80000073 dd=355 locks held 0    write locks 0    pid/thread 1704/5428  
    80000074 dd=354 locks held 0    write locks 0    pid/thread 1704/6564  
    80000075 dd=353 locks held 0    write locks 0    pid/thread 1704/7960  
    80000076 dd=352 locks held 0    write locks 0    pid/thread 1704/6188  
    80000077 dd=351 locks held 0    write locks 0    pid/thread 1704/3880  
    80000078 dd=350 locks held 0    write locks 0    pid/thread 1704/6836  
    80000079 dd=349 locks held 0    write locks 0    pid/thread 1704/4236  
    8000007a dd=348 locks held 0    write locks 0    pid/thread 1704/7808  
    8000007b dd=347 locks held 0    write locks 0    pid/thread 1704/1168  
    8000007c dd=346 locks held 0    write locks 0    pid/thread 1704/5236  
    8000007d dd=345 locks held 0    write locks 0    pid/thread 1704/5088  
    8000007e dd=344 locks held 0    write locks 0    pid/thread 1704/6460  
    8000007f dd=343 locks held 0    write locks 0    pid/thread 1704/4692  
    80000081 dd=341 locks held 0    write locks 0    pid/thread 1704/5472  
    80000082 dd=340 locks held 0    write locks 0    pid/thread 1704/1108  
    80000083 dd=339 locks held 0    write locks 0    pid/thread 1704/5164  
    80000084 dd=338 locks held 0    write locks 0    pid/thread 1704/7184  
    80000085 dd=337 locks held 0    write locks 0    pid/thread 1704/7552  
    80000086 dd=336 locks held 0    write locks 0    pid/thread 1704/7928  
    80000092 dd=329 locks held 0    write locks 0    pid/thread 1704/5652  
    80000094 dd=328 locks held 0    write locks 0    pid/thread 1704/6532  
    80000096 dd=326 locks held 0    write locks 0    pid/thread 1704/6596  
    80000098 dd=325 locks held 0    write locks 0    pid/thread 1704/7148  
    8000009b dd=323 locks held 0    write locks 0    pid/thread 1704/5820  
    800000a2 dd=434 locks held 0    write locks 0    pid/thread 1704/6420  
    800000a2 WRITE         1 WAIT    entry.dbxml               page         11
    800000a3 dd=433 locks held 0    write locks 0    pid/thread 1704/4120  
    800000a3 WRITE         1 WAIT    entry.dbxml               page         11
    800000a4 dd=439 locks held 0    write locks 0    pid/thread 1704/6876  
    800000a4 WRITE         1 WAIT    entry.dbxml               page         11
    800000a5 dd=429 locks held 0    write locks 0    pid/thread 1704/6380  
    800000a5 WRITE         1 WAIT    entry.dbxml               page         11
    800000a6 dd=428 locks held 0    write locks 0    pid/thread 1704/6752  
    800000a6 WRITE         1 WAIT    entry.dbxml               page         11
    800000a7 dd=436 locks held 0    write locks 0    pid/thread 1704/7348  
    800000a7 WRITE         1 WAIT    entry.dbxml               page         11
    800000a8 dd=435 locks held 0    write locks 0    pid/thread 1704/8164  
    800000a8 WRITE         1 WAIT    entry.dbxml               page         11
    800000a9 dd=440 locks held 0    write locks 0    pid/thread 1704/1844  
    800000a9 WRITE         1 WAIT    entry.dbxml               page         11
    800000aa dd=438 locks held 0    write locks 0    pid/thread 1704/5224  
    800000aa WRITE         1 WAIT    entry.dbxml               page         11
    800000ab dd=437 locks held 0    write locks 0    pid/thread 1704/5668  
    800000ab WRITE         1 WAIT    entry.dbxml               page         11
    800000ac dd=431 locks held 0    write locks 0    pid/thread 1704/6272  
    800000ac WRITE         1 WAIT    entry.dbxml               page         11
    800000b9 dd=412 locks held 0    write locks 0    pid/thread 1704/5912  
    800000b9 WRITE         1 WAIT    entry.dbxml               page         11
    800000bd dd=416 locks held 0    write locks 0    pid/thread 1704/5432  
    800000bd WRITE         1 WAIT    entry.dbxml               page         11
    800000be dd=409 locks held 0    write locks 0    pid/thread 1704/7220  
    800000be WRITE         1 WAIT    entry.dbxml               page         11
    800000bf dd=422 locks held 0    write locks 0    pid/thread 1704/7276  
    800000bf WRITE         1 WAIT    entry.dbxml               page         11
    800000c0 dd=424 locks held 0    write locks 0    pid/thread 1704/5756  
    800000c0 WRITE         1 WAIT    entry.dbxml               page         11
    800000c1 dd=410 locks held 0    write locks 0    pid/thread 1704/656  
    800000c1 WRITE         1 WAIT    entry.dbxml               page         11
    800000c5 dd=420 locks held 0    write locks 0    pid/thread 1704/1448  
    800000c5 WRITE         1 WAIT    entry.dbxml               page         11
    800000c6 dd=417 locks held 0    write locks 0    pid/thread 1704/7284  
    800000c6 WRITE         1 WAIT    entry.dbxml               page         11
    800000c7 dd=415 locks held 0    write locks 0    pid/thread 1704/6956  
    800000c7 WRITE         1 WAIT    entry.dbxml               page         11
    800000c8 dd=423 locks held 0    write locks 0    pid/thread 1704/5896  
    800000c8 WRITE         1 WAIT    entry.dbxml               page         11
    800000c9 dd=401 locks held 0    write locks 0    pid/thread 1704/7040  
    800000c9 WRITE         1 WAIT    entry.dbxml               page         11
    800000ca dd=418 locks held 0    write locks 0    pid/thread 1704/376  
    800000ca WRITE         1 WAIT    entry.dbxml               page         11
    800000cb dd=432 locks held 0    write locks 0    pid/thread 1704/3884  
    800000cb WRITE         1 WAIT    entry.dbxml               page         11
    800000cd dd=393 locks held 0    write locks 0    pid/thread 1704/6324  
    800000cd WRITE         1 WAIT    entry.dbxml               page         11
    800000d0 dd=427 locks held 0    write locks 0    pid/thread 1704/6584  
    800000d0 WRITE         1 WAIT    entry.dbxml               page         11
    800000d2 dd=408 locks held 0    write locks 0    pid/thread 1704/4768  
    800000d2 WRITE         1 WAIT    entry.dbxml               page         11
    800000d3 dd=406 locks held 0    write locks 0    pid/thread 1704/5804  
    800000d3 WRITE         1 WAIT    entry.dbxml               page         11
    800000d4 dd=405 locks held 0    write locks 0    pid/thread 1704/5272  
    800000d4 WRITE         1 WAIT    entry.dbxml               page         11
    800000d5 dd=373 locks held 0    write locks 0    pid/thread 1704/6408  
    800000d5 WRITE         1 WAIT    entry.dbxml               page         11
    800000d6 dd=369 locks held 0    write locks 0    pid/thread 1704/5296  
    800000d6 WRITE         1 WAIT    entry.dbxml               page         11
    800000d7 dd=389 locks held 0    write locks 0    pid/thread 1704/5156  
    800000d7 WRITE         1 WAIT    entry.dbxml               page         11
    800000d8 dd=370 locks held 0    write locks 0    pid/thread 1704/1864  
    800000d8 READ          1 WAIT    entry.dbxml               page         11
    800000d9 dd=411 locks held 0    write locks 0    pid/thread 1704/5544  
    800000d9 WRITE         1 WAIT    entry.dbxml               page         11
    800000da dd=365 locks held 0    write locks 0    pid/thread 1704/7972  
    800000da WRITE         1 WAIT    entry.dbxml               page         11
    800000de dd=381 locks held 0    write locks 0    pid/thread 1704/7768  
    800000de WRITE         1 WAIT    entry.dbxml               page         11
    800000e0 dd=395 locks held 0    write locks 0    pid/thread 1704/8144  
    800000e0 WRITE         1 WAIT    entry.dbxml               page         11
    800000e1 dd=384 locks held 0    write locks 0    pid/thread 1704/3940  
    800000e1 READ          1 WAIT    entry.dbxml               page         11
    800000e2 dd=385 locks held 0    write locks 0    pid/thread 1704/5100  
    800000e2 READ          1 WAIT    entry.dbxml               page         11
    800000e3 dd=396 locks held 0    write locks 0    pid/thread 1704/7236  
    800000e3 READ          1 WAIT    entry.dbxml               page         11
    800000e4 dd=383 locks held 0    write locks 0    pid/thread 1704/6676  
    800000e4 READ          1 WAIT    entry.dbxml               page         11
    800000e5 dd=407 locks held 1    write locks 1    pid/thread 1704/6092  
    800000e5 WRITE         1 WAIT    entry.dbxml               page         13
    800000e5 WRITE         1 HELD    entry.dbxml               page         11
    800000e6 dd=392 locks held 0    write locks 0    pid/thread 1704/4552  
    800000e6 WRITE         1 WAIT    entry.dbxml               page         11
    800000e7 dd=386 locks held 0    write locks 0    pid/thread 1704/4724  
    800000e7 READ          1 WAIT    entry.dbxml               page         11
    800000e8 dd=402 locks held 0    write locks 0    pid/thread 1704/7104  
    800000e8 WRITE         1 WAIT    entry.dbxml               page         11
    800000e9 dd=376 locks held 0    write locks 0    pid/thread 1704/6916  
    800000e9 READ          1 WAIT    entry.dbxml               page         11
    800000ea dd=379 locks held 0    write locks 0    pid/thread 1704/6476  
    800000ea WRITE         1 WAIT    entry.dbxml               page         11
    800000eb dd=387 locks held 0    write locks 0    pid/thread 1704/4784  
    800000eb WRITE         1 WAIT    entry.dbxml               page         11
    800000ec dd=367 locks held 0    write locks 0    pid/thread 1704/7444  
    800000ec WRITE         1 WAIT    entry.dbxml               page         11
    800000ed dd=394 locks held 0    write locks 0    pid/thread 1704/7140  
    800000ed WRITE         1 WAIT    entry.dbxml               page         11
    800000ef dd=390 locks held 0    write locks 0    pid/thread 1704/956  
    800000ef READ          1 WAIT    entry.dbxml               page         11
    800000f0 dd=364 locks held 0    write locks 0    pid/thread 1704/5724  
    800000f0 WRITE         1 WAIT    entry.dbxml               page         11
    800000f1 dd=443 locks held 0    write locks 0    pid/thread 1704/7916  
    800000f1 WRITE         1 WAIT    entry.dbxml               page         11
    800000f2 dd=377 locks held 0    write locks 0    pid/thread 1704/6928  
    800000f2 WRITE         1 WAIT    entry.dbxml               page         11
    800000f4 dd=398 locks held 0    write locks 0    pid/thread 1704/6900  
    800000f4 WRITE         1 WAIT    entry.dbxml               page         11
    800000f7 dd=374 locks held 0    write locks 0    pid/thread 1704/5468  
    800000f7 WRITE         1 WAIT    entry.dbxml               page         11
    800000f8 dd=348 locks held 0    write locks 0    pid/thread 1704/7808  
    800000f8 WRITE         1 WAIT    entry.dbxml               page         11
    800000f9 dd=378 locks held 0    write locks 0    pid/thread 1704/6352  
    800000f9 WRITE         1 WAIT    entry.dbxml               page         11
    800000fa dd=375 locks held 0    write locks 0    pid/thread 1704/7128  
    800000fa WRITE         1 WAIT    entry.dbxml               page         11
    800000fb dd=388 locks held 0    write locks 0    pid/thread 1704/5444  
    800000fb WRITE         1 WAIT    entry.dbxml               page         11
    800000fc dd=400 locks held 0    write locks 0    pid/thread 1704/5116  
    800000fc WRITE         1 WAIT    entry.dbxml               page         11
    800000fe dd=352 locks held 0    write locks 0    pid/thread 1704/6188  
    800000fe WRITE         1 WAIT    entry.dbxml               page         11
    80000100 dd=349 locks held 0    write locks 0    pid/thread 1704/4236  
    80000100 READ          1 WAIT    entry.dbxml               page         11
    80000101 dd=356 locks held 0    write locks 0    pid/thread 1704/4896  
    80000101 WRITE         1 WAIT    entry.dbxml               page         11
    80000102 dd=444 locks held 0    write locks 0    pid/thread 1704/6728  
    80000102 WRITE         1 WAIT    entry.dbxml               page         11
    80000103 dd=421 locks held 0    write locks 0    pid/thread 1704/4176  
    80000103 READ          1 WAIT    entry.dbxml               page         11
    80000104 dd=355 locks held 0    write locks 0    pid/thread 1704/5428  
    80000104 WRITE         1 WAIT    entry.dbxml               page         11
    80000105 dd=430 locks held 0    write locks 0    pid/thread 1704/5688  
    80000105 READ          1 WAIT    entry.dbxml               page         11
    80000108 dd=413 locks held 0    write locks 0    pid/thread 1704/6776  
    80000108 READ          1 WAIT    entry.dbxml               page         11
    8000010b dd=380 locks held 0    write locks 0    pid/thread 1704/7496  
    8000010b READ          1 WAIT    entry.dbxml               page         11
    8000010c dd=357 locks held 0    write locks 0    pid/thread 1704/7396  
    8000010c WRITE         1 WAIT    entry.dbxml               page         11
    80000119 dd=445 locks held 0    write locks 0    pid/thread 1704/1944  
    80000119 WRITE         1 WAIT    entry.dbxml               page         11
    8000011a dd=360 locks held 0    write locks 0    pid/thread 1704/7632  
    8000011a WRITE         1 WAIT    entry.dbxml               page         11
    8000011b dd=351 locks held 0    write locks 0    pid/thread 1704/3880  
    8000011b WRITE         1 WAIT    entry.dbxml               page         11
    8000011c dd=441 locks held 0    write locks 0    pid/thread 1704/5548  
    8000011c WRITE         1 WAIT    entry.dbxml               page         11
    8000011d dd=362 locks held 0    write locks 0    pid/thread 1704/6896  
    8000011d WRITE         1 WAIT    entry.dbxml               page         11
    8000011e dd=366 locks held 0    write locks 0    pid/thread 1704/7320  
    8000011e WRITE         1 WAIT    entry.dbxml               page         11
    8000011f dd=414 locks held 0    write locks 0    pid/thread 1704/6080  
    8000011f WRITE         1 WAIT    entry.dbxml               page         11
    80000120 dd=350 locks held 0    write locks 0    pid/thread 1704/6836  
    80000120 WRITE         1 WAIT    entry.dbxml               page         11
    80000121 dd=403 locks held 0    write locks 0    pid/thread 1704/7056  
    80000121 READ          1 WAIT    entry.dbxml               page         11
    80000122 dd=391 locks held 0    write locks 0    pid/thread 1704/5944  
    80000122 WRITE         1 WAIT    entry.dbxml               page         11
    80000125 dd=425 locks held 0    write locks 0    pid/thread 1704/7232  
    80000125 WRITE         1 WAIT    entry.dbxml               page         11
    80000126 dd=404 locks held 0    write locks 0    pid/thread 1704/6712  
    80000126 WRITE         1 WAIT    entry.dbxml               page         11
    80000127 dd=397 locks held 0    write locks 0    pid/thread 1704/7936  
    80000127 WRITE         1 WAIT    entry.dbxml               page         11
    80000129 dd=399 locks held 0    write locks 0    pid/thread 1704/7728  
    80000129 WRITE         1 WAIT    entry.dbxml               page         11
    8000012a dd=371 locks held 0    write locks 0    pid/thread 1704/6948  
    8000012a READ          1 WAIT    entry.dbxml               page         11
    8000012b dd=372 locks held 0    write locks 0    pid/thread 1704/6260  
    8000012b WRITE         1 WAIT    entry.dbxml               page         11
    8000012e dd=354 locks held 0    write locks 0    pid/thread 1704/6564  
    8000012e WRITE         1 WAIT    entry.dbxml               page         11
    80000131 dd=353 locks held 0    write locks 0    pid/thread 1704/7960  
    80000131 WRITE         1 WAIT    entry.dbxml               page         11
    80000132 dd=426 locks held 0    write locks 0    pid/thread 1704/7328  
    80000132 READ          1 WAIT    entry.dbxml               page         11
    80000134 dd=442 locks held 0    write locks 0    pid/thread 1704/4200  
    80000134 WRITE         1 WAIT    entry.dbxml               page         11
    80000135 dd=382 locks held 0    write locks 0    pid/thread 1704/7436  
    80000135 WRITE         1 WAIT    entry.dbxml               page         11
    80000136 dd=419 locks held 0    write locks 0    pid/thread 1704/4024  
    80000136 WRITE         1 WAIT    entry.dbxml               page         11
    80000137 dd=359 locks held 0    write locks 0    pid/thread 1704/6216  
    80000137 WRITE         1 WAIT    entry.dbxml               page         11
    8000013a dd=368 locks held 0    write locks 0    pid/thread 1704/7848  
    8000013a WRITE         1 WAIT    entry.dbxml               page         11
    8000013c dd=361 locks held 0    write locks 0    pid/thread 1704/6616  
    8000013c READ          1 WAIT    entry.dbxml               page         11
    8000013d dd=358 locks held 0    write locks 0    pid/thread 1704/7116  
    8000013d WRITE

  • Why does Apple misslead us selling what appears to be Game of Thrones Season 2 when in fact all it is - is a few trailers and the actual program is only available 18th Feb - this gives me a real bad feeling toward Apple and its branding!!!! deceitful

    Why does Apple misslead us by selling what appears to be Season 2 Game Of Thrones when in fact it is only some timewasting trailers and the actual program is only available on 18th February 2013!
    Deceitful comes to mind....
    I am sure they will say it is in the small print and you should have read it and what you got was these 'Really Cool Trailers'......but come on Apple - don't screw up your BRAND now if you carry on you will have a core problem! My trust is waning.
    Its is not like Aple will be stocked-out on the 18th February is it - in reality I guess they just want the money upfront well in advance of delivering the product....just not on Steve will be turning in his grave.....

    etresoft, I think you are being unnecessarily harsh to gloriastitz. She is frustrated and doesn't understand computers at the level you do. What she is experiencing is frustrating, so she is frustrated. I have been a help-desk professional for over 15 years now, and emotions are part of the business.
    I know it has been over 6 months since gloriastitz posted her reply. I hope she got a useful answer, but I fear we have satisfactorily scared her away from seeking help.
    So, the first best response to tell someone is that the problem they are experience is almost certainly fixable, but may require more information to solve. You tell them you understand their frustration (even if you personally don't experience frustration or don't understand why people my express frustration publicly about a problem that frustrates them). It's just good protocol.
    Then you work with the person to break down the problem into steps. If you don't have a ready answer and don't think you might even know the answer with sufficient data, then back out and leave it to others to tackle.
    I've been having a similar problem with my Mail program. The cause is still unclear to me after vieweing the logs and changing settings where I know them to be. There appears to be a setting that is not clearly placed in any of the typical UI locations for initiating the desired action for either a feed: or mailto: call.
    etresoft wrote:
    gloriastitz wrote:
    I'm sure I'm not the only one having these frustrations.
    I think you are. This is not a place to rant and complain. It will just encourage people to give you unhelpful responses. If you want to complain, go elsewhere. If you want help, ask for it.
    For example, can you explain what those dialog boxes actually say? Regardless of who is starting Mail, it will not prevent your machine from sleeping.

  • If one buys pages , can i download it and run it on my desktop AND my laptop or do I have to buy it twice? its only me using one machine at any one time. (Have recently purchased a second hand iMac and secondhand Mac book pro 17")

    If one buys pages , can i download it and run it on my desktop AND my laptop or do I have to buy it twice? its only me using one machine at any one time. (Have recently purchased a second hand iMac and secondhand Mac book pro 17")

    I have a couple or dozen or so excel spread shheets that I use origionally created in M/s Excel v.5.0 ( yup some time ago although have run and updated them on office 2007  perfectly etc.  AND numerous word files that I refer to. I have also run these files using Open Office on a small 13" mac Book Pro. successfully.
       I have now decided to change my personal use computers > macs.
    Ok, so in summary then i think you kind guys are saying:
    (1) That if i buy Pages & Numbers or even iworks which is Apple's suite of such programs i believe, then I can download and Run these apps /programs on each my personal  mac computers whether they be my second hand Imac or second hand 17" mac book pro. ( basically i have purchased these so that I am converting to the "Apple Side" and can use the Imac desktop while at home and Mac book pro when out and about) , under the one purchase and one licence.
    (2) The decision as to whether to Buy M/s Office for Mac v Pages & Numbers or the iworks suite is that if I have lots of MACROs in my existing files written in M/soft that it would be better to go for M/s Office for Mac. I understand that Macros are the automated thingys ?? I have formulae obviously inthe fairly simple spread sheets but not aware of any macros. So I guess that means ~ I could purchase either product by the sounds of it. yes? Are there any other obvious things i need to consider?
    Other INFO:
    Also, I have snow leopard on one system and Maveric ( pretty impresive!) on the other. i am slightly reluctant to upgrade the snow leopard o/s as I would have to upgrade the paralles software and probably Windows software as well in order to run an old Kitchen, drawing program that I use occaisionally. I know that one should be able to partition / and Boot camp but I really don't want to do that. I feel at this stage its not worth payingtoi up grade all these bits of software for something I rarely use. But I am open to anyones comments / views.
    Thanks.

  • HT3964 programs hanging; long wait time

    programs hanging; long wait time for 'pie' to clear; reset the smc and still not functioning.  pls. help.

    Hello, see how many of these you can answer...
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab of Activity Monitor, are there a lot of Pageouts?
    https://discussions.apple.com/servlet/JiveServlet/showImage/2-18666790-125104/AM Pageouts.jpg
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on,IPmyriadLogin Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • When I plug my headphones into the headphone/optical out jack programs hang

    I have an iMac 20 inch LCD. On the back their is a jack with a picture of headphones, but it is also labeled as "optical out". I plug my headphones in and they work. Great. That is not my problem today.
    My problem is that whenever I plug the headphones in or unplug them, iTunes (and other apps using audio) hangs and when I try to adjust the volume with the keyboard buttons nothing happens for 15 seconds or more and then the volume changes, not that anything is able to play. If I wait for a minute or so then all my applications start working fine again and I am able to hear my music and adjust the volume.
    What in the world is going on?
    1.8 Ghz G5 1.25GB RAM   Mac OS X (10.3.9)  

    Thank you. That is good information.
    Does this mean that there is nothing I can do about the delay? When I think of a delay, I think of maybe 10 seconds. I am having to wait for a minute or more for my audio to switch. While I wait, I have no audio and any audio program hangs. Is there a setting I can change? It seems rather ridiculous that I have to wait so long just to switch from internal speakers to headphones.
    It is like this on other Mac machines? Or it is just my iMac? I hate to compare Mac to Windows, but on Windows or Linux computers the switch is instantaneous.

  • Hi, Question about secure empty trash. I moved some Time Machine backup files to the trash from an external hard drive. Now I can't secure empty trash. It starts, finds 74,003 files, and does nothing. The external hard drive shows it's empty, but it isn't

    I moved some time machine backup files from an external USB hard drive to the trash. Tried secure empty trash. It counts 74,003 items, then just sits there. The external hard drive window shows it's empty, but the info pane says it only has 50G of memory left. I left the secure empty trash on over night. It did nothing. Ideas?
    Thanks,
    Ron

    Relaunch the Finder, then from the Finder menu bar, select
    Finder ▹ Preferences ▹ Advanced
    and uncheck the box marked Empty Trash securely. Try again to empty the Trash.

  • My computer (pc) crashed so I bought a new one and authorized it.  Downloaded itunes, synced my ipad and it only copied some songs and no apps.  How do I duplicatethe data on my ipad to my new computer.  Plus I purchased mobileme and my calendar is not sy

    my pc computer crashed so I bought a new one and autorized it.  Downloaded itunes, synced my ipad and it only copied some of my sngs and no apps.  How can I download my ipad to my new computer

    You can re-download your apps and ibooks purchases via your purchase history in iTunes on your computer (assuming that it's version 10.3+), and if you are in the USA then you can also re-download music I think - more info here http://support.apple.com/kb/HT2519
    For music that you ripped from CDs or bought from a source other than iTunes then, assuming that you made/maintained one, you can copy them from your backup - and backups are relatively easy to maintain, so there is no reason not to have one (especially as content is occasionally removed from iTunes so isn't always available for re-download). Otherwise there may be third-party programs that can copy them off the iPad, but you can't do it via iTunes - this post from a year ago was about iPod/iPhone to computer utilities but some might work with the iPad : https://discussions.apple.com/message/11646661?messageID=11646661&#11646661 .
    If you've got content in other apps that you want to copy back to your computer then you might be able to do via the file sharing section at the bottom of the iPad's apps tab in iTunes, or they might have wifi transfer capability.

  • I've upgraded my pc and now Im getting an error message when Im trying to sync my ipod saying I have two itunes libraries. The library thats there is only showing some songs and it's not uploading songs Ive just bought.

    I've upgraded my pc and now Im getting an error message when Im trying to sync my ipod saying I have two itunes libraries. The library thats there is only showing some songs and it's not uploading songs Ive just bought.

    You seem to have tried everything, and you say it's syncing fine on your Dad's iMac, so I assume, you have also  done a Disk Diagnostic from an earlier post by tt2 and conclude that your iPod Hardisk is good.
    You don't have to use it as a heavy paperweight, the problem is only using your Windows 7 machine for syncing.
    In your troubleshooting steps, did you try to use another High-Speed USB 2.0 port, USB controller resource are very scarce, so if you use other USB devices, while syncing your iPod, it may just freeze.
    Windows have a bad reputation for device conflict, so better don't connect other  USB devices, while syncing, better sync it while disconnected from Internet, stop antivirus just before you go to bed.
    Have a nice day!

  • Upgraded to Lion, CS3 programs will only let me open 1 photo per session, what gives?

    Just upgraded to Lion from Snow Leopard. Now my CS3 Creative Suite programs will only let me open one picture per session. I then have to completely close out of photoshop or illustrator or whatever and reopen to open another picture. Any suggestions before I have to take my computer to the apple store.

    http://roaringapps.com/ show some people having problems with various things. Have you tried reinstalling CS3? If that doesn't work, restore from a backup if needed to stay in production until a solution or an upgrade can be worked out.
    I'm not sure the Apple Store will troubleshoot 3rd party software that is 3 versions old.

  • Program hangs when instantiating a DataSource

    Hello everyone !
    I am sorry to disturb you with a silly question. I have done some research but I am unable to solve this by myself. I am a JMF beginner, and I am trying to stream wav files with the RTP protocol. Sadly, I can't get to create a DataSource, because the program hangs here :
    public Streamer(String rtpaddress, String filepath)
            mediaLocator = new MediaLocator(rtpaddress);
            System.out.println("-> Created media locator: '" +
                           mediaLocator + "'");
              try
                   URL url;
                   url = new URL("http://127.0.0.1/sound.wav");
                   DataSource source = Manager.createDataSource(
                          new MediaLocator(url)); // Program hangs here!
                  System.out.println("-> Created data source: '" +
                                         url + "'");
                 // set the data source.
                 setDataSource(source);
                 System.out.println("-> Set the data source on the transmitter");
                 // start the processor
                 mediaProcessor.start();
                 // open and start the data sink
                 dataSink.open();
                 dataSink.start();
              catch (Exception e)
                    { // Exceptions, etc... }I am quite sure my mistake is obvious : still, I have spent a lot of time trying to figure it out and I haven't.
    Thanks in advance for your help !

    Welcome to the Sun forums.
    >
    I am sorry to disturb you with a silly question. I have done some research but I am unable to solve this by myself. I am a JMF beginner, and I am trying to stream wav files with the RTP protocol. Sadly, I can't get to create a DataSource, because the program hangs here :>'here' where exactly?
    Does the output include any or all of..
    "-> Created media locator: '" + mediaLocator + "'"
    "-> Created data source: 'http://127.0.0.1/sound.wav'"
    "-> Set the data source on the transmitter"?
    >
              catch (Exception e)
    { // Exceptions, etc... }
    // Exceptions, etc... ?
    What happens here? An ideal situation would [dump the stack trace|http://pscode.org/javafaq.html#stacktrace]..
    e.printStackTrace();

Maybe you are looking for

  • Connect not recording sound at various times or displaying certain visual in Photoshop

    Hello, Has anyone had a problem with Connect not recording sound in various places or not showing visuals like the marching ants in Photoshop or the red overlay when resizing the cursor which is also in Photoshop? Stephen Burns

  • T60 Windows 7 Installation BlueScreen (BSOD)

    I've been using this laptop as a school configured laptop w/ Win XP SP2 on it for over 2 years.  I just recenly bought it out, and rather than continuing to use Win XP on it, I've decided I wanted to install Win 7 RC on it. I have yet to purchase a c

  • Is there a patch planned for the increase in battery use after I upgraded yesterday?

    Is there a patch planned for the increase in battery use after I upgraded yesterday?  I've closed all the open apps, I'm not using wifi and my battery is going down really quickly. 

  • Macbook Pro freezes when detecting 2nd display

    Every time i connect my macbook pro to a second display it will freeze and I have to use the power button to restart it, but after that it will work fine. Its the latest MBP fully updated, 15-inch. I have tried connecting it to various displays, tvs,

  • Database not getting updated

    package com.sandy.servlets; import javax.servlet.*; import java.sql.*; import javax.servlet.http.*; import java.io.*; public class FirstServlet extends HttpServlet      Connection con;      PreparedStatement ps;      public void init(ServletConfig co