UNDO exhaustion whilst performing validate_layer_with_context

Trying to track down an ArcSDE problem, I've been performing validation on the layers we have loaded into Oracle Spatial. One table (part of OS Mastermap) containing 400 million features will not complete a validation, after several hours of processing and 24GB o consumed UNDO the following error is reported.
SQL> execute sdo_geom.validate_layer_with_context('TOPOGRAPHIC_LINE', 'SHAPE',
'TOPOGRAPHIC_LINE_VAL', 100);
--After 8+ hours of processing
BEGIN sdo_geom.validate_layer_with_context('TOPOGRAPHIC_LINE', 'SHAPE', 'TOPOGRA
PHIC_LINE_VAL', 100); END;
ERROR at line 1:
ORA-29400: data cartridge error
ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS1'
ORA-06512: at "MDSYS.SDO_3GL", line 439
ORA-06512: at "MDSYS.SDO_GEOM", line 3860
ORA-06512: at line 1
The topographic_line_val contains no records before or after running the validate procedure.
I'm sure I've missed something fundamental, but I can't see why so much UNDO should be necessary. Nothing is running a long running query on the val table, the procedure doesn't modify the topographic_line table and the commit internval is set to only 100.
Why is so much UNDO being consumed?
Should I just keep increasing the amount of UNDO tablespace available until it completes?
Is it a particularly bad idea to fake validate_layer(_with_context), using validate_geometry and a loop?
Could I be running into a Spatial bug? The database is at patch level 9.2.0.6
With thanks, Alex

IMHO, call support, it sounds like a bug (using it on a larger dataset than it was ever tested with).
Have you thought about using VALIDATE_GEOMETRY_WITH_CONTEXT instead? It might be a hair slower, but since it is called once per row, at least it won't blow up:
CREATE TABLE geom_errors (rowid_text CHAR(18), error_text CLOB);
INSERT INTO geom_errors (
SELECT * FROM
(SELECT a.ROWID, SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(a.shape, 0.5) the_error
FROM topographic_line a)
WHERE the_error != 'TRUE');

Similar Messages

  • GETTING A GPF WHEN OPENING THE UNDO SCREEN IN PERFORMANCE ANALYZER(OFSA)

    제품 : OFSA_PA
    작성날짜 : 2003-04-25
    GETTING A GPF WHEN OPENING THE UNDO SCREEN IN PERFORMANCE ANALYZER(OFSA)
    ========================================================================
    PURPOSE
    Problem Description
    고객이 PA에서 Menu -> "Undo" 화면을 선택하면
    무시닫기 에러(GPF)가 발생함.
    Workaround
    Solution Description
    DATA_IDENTITY table에 16000 rows보다 더 많이 들어가 있으면 발생한다.
    그러므로, 과거 data 즉, undo가 필요 없는 자료를 삭제를 해야한다.
    Reference Documents
    note : 134609.1

    Hi Titan, this sounds like an IE security setting issue. Things to do:
    1. In Internet options>Security>Local Intranet, make sure "Enable Protected Mode" is not selected.
    2. Under Sites>Advanced, add https://*.sharepoint.com (and make sure "Require server verification..." is not checked).
    3. Under Security>Custom Level, scroll all the way to the bottom and make sure "Automatic logon with current user..." is checked.
    cameron rautmann

  • Program RPURMD00 to undo TP postings Performance Issues

    Hello All,
    We have created incorrect Third Party positng documents in PCP0. These have not been posted yet. When we try to run the simulation program to undo postings (RPURMD00), it took more than 22 hours and we finally had to cancel it and restart. Even the second time it exceeded time limit. Undo process should happen to delete about 150 entries in Table T51R5. So I was expecting not more than an hour or so.
    Is there a SAP note released to resolve this? Or is there an alternative to undo the postings?
    Appreciate any quick responses.
    Thanks,
    Soujanya.

    Can anyone please help me with this URGENT Issue:
    Can I just delete/ignore the incorrect third party posting documents?
    I am trying to run a simulation with the correct posting date parameters (before deleting the Incorrect documents), the third party posting do not seem to pick up any Garnishment vendors we are trying to post. Is this because, we still have the production Incorrect documents generated and not deleted.

  • My iPod Nano 6th Gen, Crashes whilst performing "Convert Higher Bit Rate to 128 AAC" in iTunes.

    Hi Guys,
    I have a 6 week old iPod Nano 16Gb.
    I have about 2500 songs, which would be coming up to 18Gb, so instead of selecting which albums I want, I've taken the lazy approach and ticked the "Convert higher bit rate songs to 128 AAC".
    As you all know, it does the coversion on the fly, roughly about 8 sec on average per song. Being a slow Core Duo T2500, it takes its time and I have to leave it over night whilst it does it.
    Come back in the morning and the watch had the 'White Screen of Death', displaying on the screen like the Apple IIe days of "OK to disconnect"
    Then it goes blank and then it says iTunes (picture of a plug), under that, connect to restore.
    Plug it into iTunes and it does a full restore with nothing in it.
    I hope I explained it ok.
    Im kinda think its not the Nano, as I've filled it up with music and photos to its capacity and works fine.
    Would it be something to do with "Enable disk use", to stop it from connecting and disconnecting after syncing?
    Any ideas?
    Thanks Guys.

    I have the same problem and can't seem to figure out what the problem is. I rebuilt my iTunes library and still my 6G nano crahes whenever I load an AAC tune onto it.  MP3s and podcasts all work fine, it's just the AACs... 
    Just *loading* an AAC song will cause the Nano 6G to reboot as soon as it disconnects from Itunes. It will then reboot a few times and then go into recovery mode. :-(
    Karen

  • SAP FI_CA -  Error whilst performing transaction FPPCDS

    Hi Guys,
    Can anyone out their help?
    Have been getting an intermittent error message when performing transcation FPPCDS Execute Card Billing on SAP FI-CA - see below :
    File/interfaces/PF1/outbound/XOPSESB/CARD_PAYMENT_2010 cannot be opened (Permission Denied)
    Any help much appreciated.
    Thanks
    Andy

    Hi Rickyranjan, please provide additional information about your current settings:
    Have you activated Dispute management in the activity Set up Company codes for contract accounts receivable and payable?
    Have you defined the case types in FICA?
    Best regards,
    Cristobal.

  • Undo/Redo button are not performing more than one operation at a time

    Hi,
    I have created undo/redo button on my paint application. But it performing only last action to undo.I have just the code which store offscreen image into undo buffer image like this :
        if (OSC == null || widthOfOSC != getSize().width || heightOfOSC != getSize().height) {
                     // Create the OSC, or make a new one if canvas size has changed.
                 OSC = null;  // (If OSC & undoBuffer already exist, this frees up the memory.)
                 undoBuffer = null;
                 OSC = createImage(getSize().width, getSize().height);
                 widthOfOSC = getSize().width;
                 heightOfOSC = getSize().height;
                 OSG = OSC.getGraphics();  // Graphics context for drawing to OSC.
                 OSG.setColor(getBackground());              
                 OSG.dispose();
                 undoBuffer = createImage(widthOfOSC, heightOfOSC);
                  OSG = undoBuffer.getGraphics();  // Graphics context for drawing to the undoBuffer.
                  OSG.setColor(getBackground());            
                  OSG.fillRect(0, 0,widthOfOSC, heightOfOSC);
                   and the button performed it's action :
    else if (command.equals("Undo")) {
                 // Swap the off-screen canvas with the undoBuffer and repaint.
                 Image temp = OSC;
                 OSC = undoBuffer;
                 undoBuffer = temp;
                 repaint();I want to create undo button that performed end operation on canvas.
    please help me
    Thanks in advance....

    Don't post the same question repeatedly. I've removed the thread you started 4 days after this one with the identical same question.
    db

  • Undo Option in Planning Workbook

    Hello Techies,
    I have created a Planning Workbook and cells are input ready(Editable Mode),
    Now further i type values into the Input Ready Cells and move on to the next cell, here if i want to do a "CNTRL + Z" or "UNDO"
    I cannot perform it.
    Excel Undo Option gets disabled and i cannot undo the entries using the CNTRL+Z keys.I have to manually go to that cell and do the changes.
    Is there any way to Achive this in planning workbook.
    Qucik Response would be Appreciated.
    Regards
    Kiran

    Hi Kiran,
        You can use a button for the plannign operation "Reset data", which resets the planning layout data.
    Then you will get actual data of the query before modifications. But this is for is all previosly unsaved modifications and not only for your cell wise "undo".
    Check whether this suffices your requirement or post your input again here in this forum.
    Regards,
    Balajee

  • Partial Recovery - Skip UNDO Tablespace

    Hi,
    I was performing a partial database recovery using skip tablespace option using RMAN. I was wondering if I can skip undo tablespace.
    I was not able to conclude whether I can do that? If not, why?
    As per my understanding,
    1. Datafiles are restored - If they have any uncommited data, then archive logs which will be applied for media recovery, will have the undo data to perform those roll backward.
    2. While performing media reccovery using archive logs, it will generate it's own undo data.
    Why do we need the stale undo data (generated till datafiles restoration point)?
    Thanks,
    Janak Agrawal

    Soli,
    Thread that you have specified, talks about datafiles which does not have any uncommitted data (As the database was normally shutdown). In this case, we can drop and recreate the undo tablespace.
    But I am talking about a past point-in-time recovery using RMAN, where the datafiles which will be restored may have the uncommitted data. To rollback these uncommited trnasactions, will we have data in next archivelogs, which will be used for media recovery or the data (needed to rollback) will have only in undo tablespace. Let me give you an example.
    At 9 am I want to restore the datbase till 8.15 AM. Full backup is available till 8 AM and then from 8 to 8:15 arvhive logs are available. While doing recovery, datafiles will be restored till 8 AM. If at 8 AM there is some uncommitted data in datafiles, will it require data from undo tablespace to rollback or first archive log after 8 AM w'd take care of roll back? If archive logs can take care of rollback, why can't I skip the undo tablespace while doing recovery?
    Santosh,
    As you mentioned, UNDO data will require for read-consistency. But the same data will be available in archive logs (which will require after datafiles restore) which can generate their own UNDO data.
    Please clarify. I am sorry if I am missing anything here.
    Thanks,
    Janak Agrawal

  • My experience in Toshibas product and customer services

    Just a warning to people who may be considering purchasing a Qosmio based on my own experiences and the research I have done in the last week.
    Toshibas customer service is simply not what it once was and there are 100s of reports of Qosmios of all generations suffering extreme issues just outside of warranty periods.
    Ref: Toshiba Qosmio X500-149, Support call reference ********
    I am writing to express my frustration, anger and disappointment in Toshibas product and customer services.
    I am a Freelance Community Manager, Video Game and hardware reviewer in the video games industry presently looking after 2 communities for 2 employers totalling over 2.5m users, I travel to a lot of trade shows, expos and community meet and greets where I require a laptop suitable of showing the employers products which are usually AAA video games or editing video on the fly for publication to social networking sites.
    In January of 2011 my 4 year old Alienware hit that point where it really needed replaced, I opted for a Toshiba Qosmio over the Asus G73 as there was a 300 price difference for near identical spec.
    I managed to source a X500-149 at PCWorld the companies flagship model here in the UK paying 1499 for it on January 26th 2011 reduced from 1799.
    For the 1st 13 month this laptop performed admirably aside a design issue of the fan guards that I raised on the 16th May 2011 with PCWorld where the heat expelled causes the rear guard plastics to become exceptionally brittle and crack. I evangelised the product to anyone who asked me what laptop and model it was that was running these AAA games in such great detail, something I certainly won't be doing in future.
    In early March 2012 it then began randomly locking up requiring a hard reboot this would then suffer issues restarting, reporting Operating system could not be found this would usually point to a fault on the primary HD, disk checking software however reported no errors but this continued to happen which would lead me to suspect the motherboard.
    Within a month of this problem starting the left laptop fan began making a horrible screeching noise and had a distinct wobble whenever high RPM's were required and the machine began to often go into thermal shut-down whilst performing my work duties and utilising graphics and higher than idle CPU.
    I decided on the 23rd April 2012 that enough was enough and I was going to speak to Toshiba as for this to happen to a flagship laptop that was only just out of warranty was simply unacceptable.
    23rd April called to report the issue and was basically told tough luck its out of warranty at this point I also updated my tel numbers with Toshiba as the info was outdated, after expressing my anger at this Toshiba agreed to offer me a extended warranty at a cost of 166.
    I was fuming to say the least Toshibas flagship laptop breaks at 14 month old and I am expected to stump up more money. If I was not desperate as the machine is critical to my work I would have returned the machine to PCWorld under the sales of goods act and it not being fit for purpose.
    As that course of action would likely lead to legal proceedings, engineer reports and even more delay than just dealing with Toshiba for a repair, against my better judgement I called back at 11am on 24th April paid the 166 and took Toshiba up on the warranty extension, order number ********** again having to provide correct tel numbers as where once again incorrect, immediately after I reported the faults.
    Toshiba Support centre on fault reporting where great noting each issue in detail and raised a collection with UPS for the following day.
    The evening of the 24th April whilst I was retrieving data from the laptop in preparation for factory resetting it the machine went into thermal shut-down with a very distinct smell of burning chemical/plastic coming from the rear vents.
    It took me over 90 minutes to get the machine cool enough to actually reboot and get my data after this I shut it back down and boxed it up not be used again.
    I thought the best course of action would be to report this as it was a fair step up from the previous overheating. Wednesday 25th April at around 9am I called Toshiba to report this and was advised this would have to be dealt with by a head office case manager, as the item had become hazardous thus the collection that would take the laptop to the service centre was cancelled.
    At this stage the advisor took my contact numbers again and escalated the case to head office advising at that time that I would be called by HO within 24 hrs.
    Thursday 26th April 15:31 Well past the 24 hr mark and no sign of a call so I called support again and spoke to a advisor called Jacob. Jacob advise that HO had indeed tried calling on 01670 ******* this number was my old number, this number was the number I had advised twice already was incorrect and had provided both a correct land-line and mobile number 3 times previously. To say I was annoyed was a understatement.
    Jacob attempted to contact Chloe Sontag who was looking after my case but the line just rang out so Jacob advised that he had sent an email asking for Chloe to contact myself.
    Friday came and still no contact by 15:00 so I called support who once again tried to patch me to Chloe who's number once again just rang out and again an email was sent asking to call me.
    No call by 17:30 so I called tech support again and spoke to Ian asking for head offices number so I could call them direct, Ian provided the number yet advised that HO are now closed.
    After expressing my frustration with this whole process and just how critical this machine is to my daily working life Ian promised to look into the case on Monday AM and try and expedite actually getting a phone call to at least start the process of having this laptop repaired.
    To say I'm annoyed is really a understatement not only has this failure to receive a simple phone call at least delayed the repair by almost a week but it is costing me more and money daily when I spent a large amount on what I imagined would be a great laptop for 3-4 years and believed Toshiba actually had good customer service in the event something did happen.
    My best guess is that Chloe is on holiday or is part time or such like as her phone just rings out and if that is the case then I would question why assign a case to her, if she isn't then I would want to know why after 2 additional mails advising that the customer is not happy and to contact them has there been no contact or are your case workers just so overworked with faulty products that they can't manage the workload ??
    So far Toshibas inability to produce a product that last as long as you expect it would has cost me 2 days off work that I am having to make up this weekend thus cancelling prior commitments, 166 extended warranty 600 for a HP laptop that I had to go and purchase yesterday 27th April 2012 to actually perform my work on and who knows how much in phone calls by the time this matter will finally be resolved.
    I was happy with Toshiba as a manufacturer and of course laptops can have issues however having now researched these issues far to many Qosmio X500 users report severe overheating just after the 12 month period or within it and many state that repair after repair has taken place but still to no avail, this on top of the cracking of the rear heat-sink guards has to be a design fault.
    This letter will not arrive with you before I have hopefully had a phone call and my laptop has at least been collected for repair, If I have not had that phone call then I would expect another letter very shortly.
    Why have I wrote this letter ? To express my disappointment with just how poor the durability of your flagship laptop is and also at just how poor your customer service are, 1500 is a lot of money in the PC purchasing scheme of things and to expect this quality of hardware and customer service is simply unacceptable.
    I expect the repair to be expedited and if like some of the horror storys I have read online parts required will take 4 weeks + then I would expect a replacement laptop, not everyone uses these things for entertainment and whilst the HP I had to rush out and buy with money I didn't really have available can allow me to perform my core duties to the minimum it cannot allow me to perform my duties to my standards, my employers standards or my expectant communities standards.
    This has been a really unfortunate series of events as I had been considering the X870 Ivy Bridge based on the Nvidia 670m Qosmio which would release soon and passing this X500 onto my partner but after these events and the fact that the HP laptop had to come out of the money saved for it then I can categorically state that will not be the case and I will instead opt for the Asus G55 or G75.
    If this issue cannot be resolved to a satisfactory manner then I will have no option but to seek an independent engineers report as well as printing the myriad of similar reports of these issues on the internet and return the item to PCWorld.
    In line with the sale of goods act 1979 a large electrical item has to be of satisfactory quality and fit for purpose for a period of 6 years whilst I wouldn't expect the full 6 years from a laptop I would expect at least 3-4 year especially considering that this is a near 2000 flagship model not a 200 budget model.
    This is a action I really do not want to take as it will likely end in small claims court against PCWorld a company that on this occasion has done nothing wrong, I do not believe in punishing those who are not at fault so its a action I really wouldn't be happy with and I'm sure PCWorld one of if not the largest vendor of Toshiba products when you incorporate the rest of the DSG group wouldn't be too pleased with it either.
    Frustratingly

    So I received my laptop back today after having fans replaced and a good clean as well as the top cover replaced.
    Opened the box and took the laptop out 1st thing I noticed was a screw rattling around inside, SIGH!!!!
    Plugged the laptop in and attempted to boot it at this point it just cycle through finalisation of windows install and shutdown.
    How could a laptop have been tested if it didn't even have windows installed ?
    An hour later and I gave up unplugged it and lo and behold it actually booted when on battery only.
    I then noticed that the SSD was full, oh wait no it wasn't the head office engineer in his infinite wisdom decided that partitioning a 64GB SSD to 2 drives barely even leaving enough for Windows on the C: and wait for it putting the HDD recovery on the second partition was a good course of action.
    So a completely borked install and a screw floating around inside remind me how this particular engineer has a job ??
    I spent the next 15 minutes just moving data around and creating and deleting partiitions to fix this mess up.
    Grabbed HWMonitor to check temps and at an idle 50c on CPU and 36c on GPU they didn't look too bad,
    Installed the Toshiba recommended Nvidia driver a driver I hasten to add that was released in 2010 as Toshiba have not updated the drivers for their flagship series laptop since then, They are happy to take your 1643 that the unit cost but then don't expect support for it.
    Anyway that aside I then installed 1 of the games I work on and began to run the machine through our benchmark software wooooosh the temps shot up to 90c+ on both CPU and GPU and remained at this temp for the duration of the benchmark never quite triggering thermal shutdown, I then loaded into a warzone for further testing and sure enough half way through it the machine shut down due to thermal shutdown.
    I then uninstalled the toshiba driver and tried a NVidia one sure enough as others have advised actual Nvidia drivers seem worse and thermal shutdown came so much earlier.
    I have been to PCWorld today to begin proceedings of returning outside of warranty due to not being fit for purpose or of suitable quality. This is costing me a further 60 and at least 2 weeks more without a proper machine and will likely result in me getting about 1300 back from PCWorld.
    So lets do the math on just what this will have cost me by the time its finished.
    1634 Original purchase
    166 Extended Warranty
    600 Backup Laptop whilst this was away for a month
    60 outside of warranty assessment
    50 phone calls
    I will probably receive 1300 back but then 1300 doenst buy me the spec I need for work so I will have to pull out another 300-400 for the required spec so lets add that to the original figures.
    A Toshiba Qosmio, Toshibas flagship laptop will have cost me in total 2910 almost double its actual retail price.
    I will NEVER buy a Toshiba product again and it will become my lifes mission to let everyone know just how terrible they are.

  • No Hard Drive Or Volume Icon In Powerbook G4 Firewire (aluminium) Disk Utilities: Reads Error: No Valid Packages (-9997)

    Whilst performing a zero/erase install on my Powerbook G4 Firewire (aluminium) with an OSX Tiger install disk (Tiger was the OSX i had erased), I had to force quite the installer as it appeared to be stuck on the Chinese script install section. I crashed the Powerbook down using the power button method. Now, when i power up the computer, it stays on the grey screen and just beeps at me. If i insert the install disks (both OSX Tiger or the original Powerbook Panther ones) there is no volume found  during the install process. In disk utilities no hard drive icon or volumes appear in the left hand list, just 2 headings regarding the OSX install disk. I have clicked 'Verify Disk Permissions' on these headings and receive this message in the action box: Error: No Valid Packages (-9997). All other options in disk utilities are not available to use (partitions section etc), as there is no hard drive recognized to perform anything on. I presume my erase install has wiped out my previous OSX Tiger without installing some essential on the Powerbook (receipts perhaps?). My Powerbook was working 100% before this install attempt. It's a very lightly used machine with no noises/whirrs coming from the hard drive that would suggest failure of some kind. Any advice would be much appreciated.

    Many thanks for your advice old comm guy.
    I have run the Hardware Test as supplied with the Powerbooks install disks and everything has passed. I presume i can put my mind at rest about it being a problem in any of those departments. I have been browsing for a couple of weeks now and think my problem could be a loss in receipts/permissions somewhere. I remember looking for a lost file awhile back using a hard drive search programme through Terminal. It filled my hard drive almost to the maximum with unwanted retrieved files, it took me hours to erase all this again (never found the document i was looking for either). Perhaps a receipt was erased/trashed at this time?. Sometime later (prob weeks) i performed a fresh OSX install to give me an uncluttered faster running machine (I do this once a year). I zero erased the hard drive (including free space) and it was during this install that i had to force quit. It seemed to be stuck loading the Chinese Script so i had no option. After this the problem as described above has been persistent. Is there a way to restore receipts/permissions through Terminal or something like that?. Or maybe a procedure that one has to do when installing a new hard drive?. A step by step guide from someone would be a real help as i am not really confident using these advanced procedures.

  • Where are Thunderbird e-mail files stored on my computer?

    I have read the suggested articles and followed the instructions as best I can, but I still cannot figure out how to get to profile (the path revealed in "Troubleshooting Information," by clicking "show folder," was not what I found on my computer---one element in the supposed path, "AppData," simply was not there in the tree) unless I somehow missed a hidden clue. Furthermore, even if I manage to get to profile, I still don't comprehend how to move my e-mail files from there to a location on my computer that is easy to get to and to back up along with all my other data files.
    Perhaps my level of knowledge is too modest here because the assumption is that I know more than I actually do know. If that is the case, I apologize, but that does not resolve the issue. I wonder why the folders containing e-mails are not placed in an obvious and handy location to begin with, but that of course is a different matter.
    But right now, all I want to do is to (1) get to profile, (2) understand how to back up the actual profile (or profiles, if I ever have more than one, which I don't quite understand, either), and (3) comprehend how to separate out and move the e-mail files/folders located there to an easily accessible and obvious (to me) location. I would greatly appreciate some basic-level instruction on this.
    (I might mention that because it did not meet my needs generally, and also because it was most inconveniently down periodically, otherwise difficult to use far too frequently, and administered with shockingly scant attention to customer satisfaction despite its full-bore commercial nature, I abandoned AT&T/Yahoo web mail for a computer-resident POP client. I chose Thunderbird on the recommendation of a knowledgeable friend. I had used Outlook with relatively good success quite some time ago but have a fundamental aversion to patronizing Microsoft when I do not absolutely have to do so. That is why I am trying with much energy to get Thunderbird to work for me with some reasonable degree of convenience and functionality.)
    Thank you.

    ''re: A folder-copy isn't easy to read,''
    Only if you need to read a specific email as emails are not stored in separate .eml files. They are stored in mbox files which look like a long text document containing emails written one after the other in the order downloaded. But for backing up and reinstalling a Profle which contains all your data, it is stored exactly as required for reinstalling. It also stores all your preferences and account details and so on - eg: address books.
    ''re: if its not compressed it also includes all deleted files.''
    What gnospen actually means is 'compacted' not compressed. They are two entirely different things which should not be confused. You can easily empty the Deleted and Junk folders and then compact all your folders before backing up. This resolves this if it is of a concern to you.
    As gnospen says, ImportExportTools is an excellent tool for backing up emails - not your Profile, not your account settings and preferences and not your address books.
    You can choose to use to store emails as separate .eml files or HTML or plain text format or as a single text file or pdf format or export the entire folder in mbox format with or with subfolders.
    If you want to use ImportExportTools, Thunderbird needs to running, I would advise you go into Offline mode whilst backing up as you do not want your folders synchronising whilst performing this task.
    Here is a link to ImportExporttools addon:
    * https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/
    I suppose what you need to determine is what do you want to backup.
    I would advise, if you want all your prefernces, account settings, address books and emails saved in one go, then copy the Profile to create a backup or use MozBackup tool.
    If you only want to backup emails then use ImportExportTools addon tool.
    If not backing up your entire profile, but you do want to keep a backup of address books then you can go to Address Book and select the address book, then Tools > Export as either LDIF or comma separated .csv file.
    Note: comma separated .csv files can be opened by other programs such as Excel and can also be easily imported into any email client or back into Thunderbird.

  • Time Machine fails to backup home space.

    Summary:
    I've been having problems with Time Machine since I enabled it. For some reason it refuses to backup any file in my account (/Users/ritchiem/). I have spoken with the an Apple 'Genius' and they were dumb founded. So I ask here in the hope that someone has had this issue occur and know what the cause is and how to fix it. I'm not really looking for work-arounds, though I will cover that later.
    *Problem Description:*
    A new 500GB external drive was erased and formatted HFS+ Journaled.
    TimeMachine was then opened and enabled on this drive.
    Back Up Now was selected and left to run assuming it would take a while on the 500Gb internal drive that had a around 200Gi-250Gi of used.
    It ran successfully.
    When entering TimeMachine, history shows the top level drive and navigating down the Users folder shows only my 'test' user account. My user account 'ritchiem' is not listed.
    There was no error presented from Time Machine an the System Preferences panel reported it was successful.
    Console.logs shows that backup was performed successfully.
    Steps already taken to address issue:
    I have verified/repaired permissions on my boot drive, a few files were changed but none in /Users/ritchiem
    I have deleted the Time Machine preferences: /Library/Preferences/com.apple.TimeMachine.plist
    I have tried a second external hard drive, in this case it was more interesting:
    It was reported as being to small to perform the backup. So I added some exclusions such as my large iTunes library.
    This allowed the Time Machine to proceed but again there was no backup performed of any file in home space.
    This is where I thought I must be doing something wrong and went to the Apple Store the genius tried all the usual suspects, permissions, preferences. But no success.
    It was only then that one of his colleagues picked up on discussion that it was only my user that was being skipped and suggested the risky move of renaming my user. He showed me the 'Advanced' panel in the Account System Preferences. (I never realised you could use a nice gui to do the renaming of a user in all the right Apple places.)
    So I swapped users and renamed my account, and moved my home space to a new user name. mv /Users/ritchiem /Users/martin
    I then logged back in to my account to verify the rename all worked and it had.
    _*Time Machine now worked!*_
    HOWEVER, that is a total hack. I use the username 'ritchiem' all across my local network and it was not recommended to have a user ritchiem but a home space in /Users/martin.
    I renamed my account back to 'ritchiem' and Time Machine again is blocking backups of /Users/ritchiem
    Somewhere on my drive there MUST be an exclusion that is preventing the first user that I created on my 2008 MacBook from being backed up. So far my grep-ing of the filesystem for 'ritchiem' has not shown any likely suspects. If anyone here knows where the mystic plist/file is that I need to zap then that would be great.
    If of course you have another work-around that does not require me to rename either my account or my home space then that would be great.
    Oh and I also tried to trick TimeMachine by creating a symbolic link in /Users to my home space (ln -s /Users/ritchiem /Users/martin). It resolves the link and refuses to backup the contents of my home space just as before.
    Please remember here that in all backups that Time Machine performed there was no error, console.log and the UI all report success.
    Now if I had a new blank machine and some time I could test out the theory that it is always the first user of a freshly installed machine. However, if other people have it working then it is perhaps not that simple.
    TIA
    Martin

    Thank you for all your advice and suggestions. Apologies for the delay I had difficulty locating my original install DVDs.
    Summary
    I have performed all the steps and checked items as requested however backups are still not including my home space (/Users/ritchiem)
    What I do find interesting is the output of the TimeMachine backup log (at the very end of this VERY long post) which states that 84.8 GB should be backed up but only 24.3 GB is actually backed up.
    Would love to know why TM decided 60.5GB of data should not be backed up but not explained in any of the log files and a successful backup reported.
    Before I go on to the details of what i've done, I should also mention in case it is important that I have of course been logged in with my user (ritchiem) whilst performing all of these backups. I assume that is normal and that you shouldn't have to log out for TM to actually backup your data. To verify this previously I have logged out user ritchiem and logged in as a test account. The path /Users/ritchiem still failed to backup. I have not tried this recently, however, I would be really surprised if you had to log out of your user account for the data to be backed up.
    Detail
    So to answer V.K. first: My drive did indeed have some items that it said I should repair. Hence the search for the install DVDs. I ran the Disk Utility from the Leopard installer and it repaired the drive. The verify now runs green.
    As I had just rebooted the machine and it was all fresh I repeated Pondini's previous steps as well.
    * Disabled TM
    * Exited System Preferences
    * Deleted /Library/Preferences/com.apple.TimeMachine.plist
    I then also deleted the Backups.backupdb from my external drive so everything was fresh and new. I would have just formatted it (which would have been waaay faster, but I have some copies as backups on there for now.)
    I started the TM prefs panel and added a few items to the disabled list to a) speed up the backup but also b) I have a 320g internal drive and only a 250g external. My total disk usage is 288 which won't fit, especially with the breathing space TM likes to have.
    Here is the data from console.log from the first two backup runs:
    *The first automated run that occured whilst I was still disabling items*
    Jul 9 00:05:28 ramaII /System/Library/CoreServices/backupd[371]: Backup requested due to disk attach
    Jul 9 00:05:28 ramaII /System/Library/CoreServices/backupd[371]: Starting standard backup
    Jul 9 00:05:28 ramaII /System/Library/CoreServices/backupd[371]: Backing up to: /Volumes/Red-5/Backups.backupdb
    Jul 9 00:05:52 ramaII /System/Library/CoreServices/backupd[371]: Event store UUIDs don't match for volume: ramaII
    Jul 9 00:05:53 ramaII /System/Library/CoreServices/backupd[371]: Backup content size: 288.2 GB excluded items size: 0 bytes for volume ramaII
    Jul 9 00:05:53 ramaII /System/Library/CoreServices/backupd[371]: Starting pre-backup thinning: 347.15 GB requested (including padding), 134.18 GB available
    Jul 9 00:05:53 ramaII /System/Library/CoreServices/backupd[371]: No expired backups exist - deleting oldest backups to make room
    Jul 9 00:05:53 ramaII /System/Library/CoreServices/backupd[371]: Error: backup disk is full - all 0 possible backups were removed, but space is still needed.
    Jul 9 00:05:53 ramaII /System/Library/CoreServices/backupd[371]: Backup Failed: unable to free 347.15 GB needed space
    Jul 9 00:05:59 ramaII /System/Library/CoreServices/backupd[371]: Backup failed with error: Not enough available disk space on the target volume.
    *The second much smaller backup run*
    Jul 9 00:06:29 ramaII /System/Library/CoreServices/backupd[371]: Backup requested by user
    Jul 9 00:06:29 ramaII /System/Library/CoreServices/backupd[371]: Starting standard backup
    Jul 9 00:06:31 ramaII /System/Library/CoreServices/backupd[371]: Backing up to: /Volumes/Red-5/Backups.backupdb
    Jul 9 00:06:32 ramaII /System/Library/CoreServices/backupd[371]: Event store UUIDs don't match for volume: ramaII
    Jul 9 00:15:57 ramaII /System/Library/CoreServices/backupd[371]: Backup content size: 288.2 GB excluded items size: 203.4 GB for volume ramaII
    Jul 9 00:15:57 ramaII /System/Library/CoreServices/backupd[371]: No pre-backup thinning needed: 103.06 GB requested (including padding), 134.18 GB available
    Jul 9 01:10:18 ramaII /System/Library/CoreServices/backupd[371]: Copied 191916 files (24.3 GB) from volume ramaII.
    Jul 9 01:10:19 ramaII /System/Library/CoreServices/backupd[371]: No pre-backup thinning needed: 1.75 GB requested (including padding), 108.05 GB available
    Jul 9 01:10:25 ramaII /System/Library/CoreServices/backupd[371]: Copied 114 files (93 bytes) from volume ramaII.
    Jul 9 01:10:25 ramaII /System/Library/CoreServices/backupd[371]: Starting post-backup thinning
    Jul 9 01:10:25 ramaII /System/Library/CoreServices/backupd[371]: No post-back up thinning needed: no expired backups exist
    Jul 9 01:10:26 ramaII /System/Library/CoreServices/backupd[371]: Backup completed successfully.
    What I find interesting is that only it only copied '191916 files (24.3 GB)' It said it was going to backup '103.06 GB requested (including padding)'.
    As requested here is the hidden .exclude.plist file, I printed the contents using the Terminal rather than TinkerTool.
    .exclude.plist
    ramaII:~ ritchiem$ sudo cat /Volumes/Red-5/Backups.backupdb/ramaII/2009-07-09-011025/.exclusions.plist
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>sourcePaths</key>
    <array>
    <string>/</string>
    </array>
    <key>standardExclusionPaths</key>
    <array/>
    <key>systemFilesExcluded</key>
    <false/>
    <key>userExclusionPaths</key>
    <array>
    <string>/Users/ritchiem/Music</string>
    <string>/Users/ritchiem/dev</string>
    <string>/Applications</string>
    <string>/Users/ritchiem/Desktop</string>
    <string>/Users/ritchiem/Downloads</string>
    <string>/Users/ritchiem/Movies</string>
    <string>/Users/ritchiem/ritchiem.sparseimage</string>
    </array>
    </dict>
    </plist>
    This content mirrors what is in the /Library/Preferences/com.apple.TimeMachine.plist I resaved this to my desktop as a xml plist so I could print it for copying:
    /Library/Preferences/com.apple.TimeMachine.plist
    ramaII:~ ritchiem$ cat Desktop/com.apple.TimeMachine.plist
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>AlwaysShowDeletedBackupsWarning</key>
    <true/>
    <key>AutoBackup</key>
    <true/>
    <key>BackupAlias</key>
    <data>-snipped-</data>
    <key>ExcludeByPath</key>
    <array>
    <string>/Users/ritchiem/Library/Calendars/Calendar Cache</string>
    <string>/Users/cristina/Library/Calendars/Calendar Cache</string>
    </array>
    <key>MaxSize</key>
    <integer>0</integer>
    <key>RequiresACPower</key>
    <false/>
    <key>SkipPaths</key>
    <array>
    <string>~ritchiem/Music</string>
    <string>~ritchiem/dev</string>
    <string>/Applications</string>
    <string>~ritchiem/Desktop</string>
    <string>~ritchiem/Downloads</string>
    <string>~ritchiem/Movies</string>
    <string>~ritchiem/ritchiem.sparseimage</string>
    </array>
    <key>SkipSystemFiles</key>
    <false/>
    </dict>
    </plist>
    *Other Steps*
    Whilst running TM I also setup dtrace to log every file open: (http://www.macosxhints.com/article.php?story=20071031121823710)
    Looking for any files in my home space that it might have opened returned none:
    ramaII:~ ritchiem$ grep "/Users/ritchiem" tm.dtrace |grep "entry backupd" |wc -l
    0
    Yet looking for all the files backed up from the /Users directory there were 458!
    ramaII:~ ritchiem$ grep "/Users/" tm.dtrace |grep "entry backupd" |wc -l
    458
    Dtrace also highlights the files that backupd uses unfortuately the only files it opened before it started its backup were:
    0 17720 open:entry backupd /Library/Preferences/com.apple.TimeMachine.plist
    0 17720 open:entry backupd /var/db/.TimeMachine.Cookie
    0 18506 open_nocancel:entry backupd /System/Library/CoreServices/backupd.bundle/Contents/Res
    ources/StdExclusions.plist
    The only file on that list I haven't seen mentioned before is the StdExclusions but I'm sure that is the same on everyone's machines... just incase though:
    ramaII:~ ritchiem$ cat /System/Library/CoreServices/backupd.bundle/Contents/Resources/StdExclusions.pl ist
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <!-- paths we do not want to include in a system backup -->
    <key>PathsExcluded</key>
    <array>
    <string>/.Spotlight-V100</string>
    <string>/.Trashes</string>
    <string>/.fseventsd</string>
    <string>/.hotfiles.btree</string>
    <string>/Backups.backupdb</string>
    <string>/Desktop DB</string>
    <string>/Desktop DF</string>
    <string>/Network/Servers</string>
    <string>/Previous Systems</string>
    <string>/Users/Shared/SC Info</string>
    <string>/Users/Guest</string>
    <string>/dev</string>
    <string>/home</string>
    <string>/net</string>
    <string>/private/var/db/Spotlight</string> <!-- old tiger location of the Spotlight db -->
    <string>/private/var/db/Spotlight-V100</string> <!-- old tiger location of the Spotlight db -->
    </array>
    <!-- paths we need to include in backup so we can restore disk structure, but don't want to backup contents -->
    <key>ContentsExcluded</key>
    <array>
    <string>/Volumes</string>
    <string>/Network</string>
    <string>/automount</string>
    <string>/.vol</string>
    <string>/tmp</string>
    <string>/cores</string>
    <string>/private/tmp</string>
    <string>/private/Network</string>
    <string>/private/tftpboot</string>
    <string>/private/var/automount</string>
    <string>/private/var/log</string>
    <string>/private/var/folders</string>
    <string>/private/var/log/apache2</string>
    <string>/private/var/log/cups</string>
    <string>/private/var/log/fax</string>
    <string>/private/var/log/ppp</string>
    <string>/private/var/log/sa</string>
    <string>/private/var/log/samba</string>
    <string>/private/var/log/uucp</string>
    <string>/private/var/run</string>
    <string>/private/var/spool</string>
    <string>/private/var/tmp</string>
    <string>/private/var/vm</string>
    <string>/private/var/db/dhcpclient</string>
    <string>/private/var/db/fseventsd</string>
    <string>/Library/Caches</string>
    <string>/Library/Logs</string>
    <string>/System/Library/Caches</string>
    <string>/System/Library/Extensions/Caches</string>
    </array>
    <!-- standard user paths we want to skip for each user (subpath relative to root of home directory) -->
    <key>UserPathsExcluded</key>
    <array>
    <string>Library/Application Support/SyncServices</string>
    <string>Library/Caches</string>
    <string>Library/Logs</string>
    <string>Library/Mail/Envelope Index</string>
    <string>Library/Mail/AvailableFeeds</string>
    <string>Library/Mirrors</string>
    <string>Library/PubSub/Database</string>
    <string>Library/PubSub/Downloads</string>
    <string>Library/PubSub/Feeds</string>
    <string>Library/Safari/Icons.db</string>
    <string>Library/Safari/HistoryIndex.sk</string>
    </array>
    </dict>
    </plist>
    Finally here is the backup log that was generated incase you spot something I haven't
    Backup.log
    ramaII:~ ritchiem$ sudo cat /Volumes/Red-5/Backups.backupdb/ramaII/2009-07-09-011025/.Backup.log
    2009-07-09-00:06:32 - Starting backup
    Previous snapshot:
    None
    Will traverse "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    === Starting backup loop #1 ===
    Will use FirstBackupCopier
    Running preflight for "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Excluding /Users/ritchiem/Music: 36.1 GB (6083 items)
    Excluding /Users/ritchiem/dev: 20.8 GB (488641 items)
    Excluding /Applications: 9.6 GB (15070 items)
    Excluding /Users/ritchiem/Desktop: 26.3 GB (2444 items)
    Excluding /Users/ritchiem/Downloads: 3.8 GB (1127 items)
    Excluding /Users/ritchiem/Movies: 79.6 GB (167 items)
    Excluding /Users/ritchiem/ritchiem.sparseimage: 27.2 GB (1 items)
    Should copy 2853633 items (84.8 GB) representing 22223169 blocks of size 4096. 35174679 blocks available.
    Preflight complete for "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Time elapsed: 9 minutes, 25.000 seconds
    Processing preflight info
    Space needed for this backup: 103.1 GB (27016262 blocks of size 4096)
    Finished processing preflight info
    Copying items from "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Finished copying items for "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Time elapsed: 54 minutes, 20.000 seconds
    Copied 191916 items (24.3 GB)
    Gathering events since 390504228.
    Needs new backup due to change in /Library/Preferences
    === Starting backup loop #2 ===
    Will use IncrementalBackupCopier
    Running preflight for "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Calculating size of changes
    Should copy 4 items (0 bytes) representing 0 blocks of size 4096. 28325806 blocks available.
    Preflight complete for "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Time elapsed: 1.243 seconds
    Processing preflight info
    Space needed for this backup: 1.8 GB (459904 blocks of size 4096)
    Preserving last snapshot /Volumes/Red-5/Backups.backupdb/ramaII/2009-07-09-000552.inProgress/79ECBD8C-12 BE-4067-A202-B7033190FD82
    Finished processing preflight info
    Copying items from "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Finished copying items for "ramaII" (mount: '/' fsUUID: 3E4CD731-945C-3BA3-85D5-67B401082442 eventDBUUID: FDD41B79-8CEF-4F57-810C-B1C56476640B)
    Time elapsed: 6.147 seconds
    Copied 114 items (93 bytes)
    Gathering events since 406201626.
    Finalizing completed snapshot
    Finished finalizing completed snapshot
    Backup complete.
    Total time elapsed: 1 hour, 3 minutes, 54.000 seconds
    *Next Steps*
    I've been thinking about what i could try next and not having many ideas. So I'm really hoping someone here will have a flash of inspiration.
    If I find some time at the weekend then I will try renaming my account again and verifying that it does backup under a new name.
    Just incase there is something odd about the first user account created, i.e. UID:501 I will make a new 'ritchiem' account (which will have the next UID, UID:504) and see if that gets backed up, I can try this while my current account has been renamed. If that does work then I can copy my files back in to that account and verify it isn't something in my home directory that is upsetting TM. Although I doubt this is the case as it never read any files from home space during the backup process.
    Here's hoping there is something in the above logs etc, that give a clue to what might be going wrong.
    Cheers
    Martin

  • Midi / USB drop out since Lion upgrade!

    Hi all, i have had great responses and success in the past with this forum, i really really hope this will continue.
    I have been gigging using mainstage 2 and a M-Audio Oxygen midi keyboard controller for a few years now and until lately it's been fantastic. I will never go back to a stand alone manufactured synth. I am using a macbook pro, 2.93ghz with 8 gb ram. I initially upgraded from snow leopard to lion when it was launched but had to go back as Creative hadn't any lion drivers for use with my emu 0202 audio interface. Last month i found that they had done them and i re-upgraded to Lion. Since the upgrade i am experiencing Midi drop outs. This is to say that whilst performing i get an error message saying something like midi input device no longer available. This has happened a few times now but last night (new years eve!!), not only did i get this message which i sorted with a reboot but a few minutes later i had a midi note hang and i noticed that there was no longer any usb supplied power to my keyboard. The answer again at this stage was a reboot.
    I would ideally not like to reinstall snow leopard as there are quite a few great things in lion which i would miss, but obviously if i can't resolve these issues i don't see that i have any other choice.
    Any possible suggestions as to what may be causing these problems will be very much appreciated.
    Thanking you in advance
    Mark
    PS    Happy New Year

    My experience with Lion was great for a while, it was effortless, everything I had attached still worked with no problems aside from needing occasional drivers.  Once Lion 10.7.2 was released, I updated my system and again, no problems.  If I recall correctly, 10.7.2 was released in October.  Suddenly in December, I began having random software and midi issues all around my system.  I do not use Mainstage but I have noticed others have had similar problems with various software and USB midi controllers, and have not seen a fix.
    I regularly use Pro Tools 8, Ableton Live 8 and occasionally Reason 5.  I also have an M-Audio Axiom 61 and Korg padKontrol attached via USB.  After about 2 months of trouble-free operation, Live and Reason would not open and the accompanying software for my padKontrol no longer would either.  These apps would just "hang" and I would eventually have to force quit them.  In addition, Audio Midi Setup would also hang when attempting to switch to the midi preferences page.  Pro Tools still worked, but I could no longer receive midi signals.  I also use a wireless USB stick to connect to my home wifi signal and that no longer worked and neither did the accompanying software.
    It's possible that there are deeper issues in your system as well as mine and the others having similar problems.
    At times, I wonder if there is some kernel errors embedded in my computer.  I got my MacPro when Snow Leopard was fairly new and had numerous kernel errors resulting in many applications not functioning.  I eventually sorted them out but ran into similar USB related issues with the Snow Leopard 10.6.8 update, so I remained on 10.6.7 until Lion was released.
    The only successful fix I've had is switching from Lion back to Snow Leopard 10.6.7 after erasing my entire hard drive.  I've tried reinstalling Lion through both upgrading from Snow Leopard and a clean install of 10.7.2 after erasing my hard drive again.
    I believe my USB and midi problems stem from kernel errors somewhere but cannot find them (I have used Disk Utility many times).  I really liked using Lion but I lose so much functionality and my internet connection so I have determined that I will not be using it.  I may try Lion again when 10.7.3 is released but am wary.  If anyone has ideas on how to fix these issues, I would love to hear them.

  • Itunes not working and unable to re-install

    Please help. I have owned my Nano for three days and have lost access to itunes. Story so far… Day 1 set up disk installed and itunes working great. Upgraded software online and problems started and unable to open itunes.
    Action taken:
    1.Tried to re-install original software from disk but get error –itunes cannot run because some of its required files are missing.
    2. QuickTime also failed to initiate with error 2095 – message make sure QTime properly installed.
    3. Removed both itunes and Qtime through control panel and downloaded and used Windows installer clean up to confirm removal (files seemed to remain on computer?)
    4. Installed stand alone Qtime which seems ok
    5. Downloaded stand alone itunes but could not run error message: errors encountered whilst performing the operation.
    6. As last resort tried to re-install from disk but get same message: itunes cannot run because some of its required files are missing.
    I am at a loss. I am not computer literate and would really appreciate help. Please note I also disabled virus software whist trying to install.

    Paul hello,
    Welcome to the Apple Discussions as you are not running a MAC your question would be best served in the special
    iTunes for windows forum. Click here
    repost your question there Paul ... copy and paste.
    good luck ... TP

  • JVM 1.4.2_12-b03 Internal Error assistance?

    Hi all
    We have a production application running on WebLogic 8.1 SP4 that has recently been crashing out giving the below error. We've tried adjusting our JVM settings from
    JAVA_OPTIONS="-Dnetworkaddress.cache.ttl=60 -Xms2048M -Xmx2048M -XX:NewSize=512M -XX:MaxNewSize=512M -XX:MaxPermSize=256m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -Xloggc:gc.log"
    to
    JAVA_OPTIONS="-server -Dnetworkaddress.cache.ttl=60 -Xms2048M -Xmx2048M -XX:NewSize=512M -XX:MaxNewSize=512M -XX:MaxPermSize=256m -XX:+UseParallelGC -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -Xloggc:gc.log "
    as we believed the problem might lie with the CMS collector since the system bailed out whilst performing this type of collection but the system has since crashed with the revised arguments. Anyone encountered the same error?
    The tail end of out gc.log reads
    237671.735: [GC  {Heap before GC invocations=1257:
    Heap
    par new generation   total 523840K, used 523383K [0x69400000, 0x89400000, 0x89400000)
      eden space 523392K,  99% used [0x69400000, 0x8931dee8, 0x89320000)
      from space 448K,   0% used [0x89390000, 0x89390000, 0x89400000)
      to   space 448K,   0% used [0x89320000, 0x89320000, 0x89390000)
    concurrent mark-sweep generation total 1572864K, used 777794K [0x89400000, 0xe9400000, 0xe9400000)
    concurrent-mark-sweep perm gen total 117040K, used 70194K [0xe9400000, 0xf064c000, 0xf9400000)
    237671.736: [ParNew: 523383K->0K(523840K), 0.5832577 secs] 1301178K->819005K(2096704K) Heap after GC invocations=1258:
    Heap
    par new generation total 523840K, used 0K [0x69400000, 0x89400000, 0x89400000)
    eden space 523392K, 0% used [0x69400000, 0x69400000, 0x89320000)
    from space 448K, 0% used [0x89320000, 0x89320000, 0x89390000)
    to space 448K, 0% used [0x89390000, 0x89390000, 0x89400000)
    concurrent mark-sweep generation total 1572864K, used 819005K [0x89400000, 0xe9400000, 0xe9400000)
    concurrent-mark-sweep perm gen total 117040K, used 70194K [0xe9400000, 0xf064c000, 0xf9400000)
    } , 0.5835878 secs]
    237672.327: [GC [1 CMS-initial-mark: 819005K(1572864K)] 819017K(2096704K), 0.0190249 secs]
    237672.347: [CMS-concurrent-mark-start]
    237675.099: [CMS-concurrent-mark: 2.752/2.752 secs]
    237675.099: [CMS-concurrent-preclean-start]
    237675.140: [CMS-concurrent-preclean: 0.040/0.041 secs]
    237675.143: [GC[/b]
    And below is the err log:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # Internal Error (434F4E43555252454E542D41524B335745455027454E45524154494F4E0E4350501175 01), pid=10258, tid=5
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_12-b03 mixed mode)
    --------------- T H R E A D ---------------
    Current thread (0x000a27d0): [b]GCTaskThread [id=5]
    Stack: [0x00000000,0x00000000), sp=0xfde818d0, free space=-34298k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x3b0060]
    V [libjvm.so+0x23bab4]
    V [libjvm.so+0x236784]
    V [libjvm.so+0x34fd88]
    V [libjvm.so+0x237a0c]
    V [libjvm.so+0x232754]
    V [libjvm.so+0x3b3704]
    V [libjvm.so+0x356648]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x008333c8 JavaThread "Thread-82" daemon [_thread_blocked, id=127]
    0x00c6e8f8 JavaThread "AWT-Motif" daemon [_thread_in_native, id=125]
    0x02b8eda0 JavaThread "AsyncRunner 1" daemon [_thread_blocked, id=98]
    0x01ae51a0 JavaThread "ExecuteThread: '2' for queue: 'weblogic.kernel.Non-Blocking'" daemon [_thread_blocked, id=97]
    0x01ae2b88 JavaThread "ExecuteThread: '1' for queue: 'weblogic.kernel.Non-Blocking'" daemon [_thread_blocked, id=96]
    0x01ae1b58 JavaThread "ExecuteThread: '0' for queue: 'weblogic.kernel.Non-Blocking'" daemon [_thread_blocked, id=95]
    0x01b58c20 JavaThread "AuditRotor" daemon [_thread_blocked, id=94]
    0x01be4100 JavaThread "ExecuteThread: '0' for queue: 'JMSStore<ScritturaJMSJDBCStore>.ioThreadPool'" daemon [_thread_blocked, id=93]
    0x01329500 JavaThread "LargeQueueThread" daemon [_thread_blocked, id=92]
    0x027e0f70 JavaThread "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=91]
    0x027e0378 JavaThread "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=90]
    0x027df780 JavaThread "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=89]
    0x027deb88 JavaThread "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=88]
    0x027ddf90 JavaThread "ExecuteThread: '10' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=87]
    0x027dd398 JavaThread "ExecuteThread: '9' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=86]
    0x027dc7a0 JavaThread "ExecuteThread: '8' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=85]
    0x027dbba8 JavaThread "ExecuteThread: '7' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=84]
    0x027dafb0 JavaThread "ExecuteThread: '6' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=83]
    0x027da3b8 JavaThread "ExecuteThread: '5' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=82]
    0x027d98d0 JavaThread "ExecuteThread: '4' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=81]
    0x01771928 JavaThread "ExecuteThread: '3' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=80]
    0x01770e40 JavaThread "ExecuteThread: '2' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=79]
    0x01770c98 JavaThread "ExecuteThread: '1' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=78]
    0x017701c8 JavaThread "ExecuteThread: '0' for queue: 'JmsDispatcher'" daemon [_thread_blocked, id=77]
    0x01770020 JavaThread "ListenThread.Default" [_thread_blocked, id=76]
    0x02816ab8 JavaThread "ScritturaCron" [_thread_blocked, id=73]
    0x02816910 JavaThread "TradeDropMonitor" [_thread_blocked, id=72]
    0x028030f0 JavaThread "DocMgr Import Daemon" [_thread_blocked, id=70]
    0x00f45230 JavaThread "ExecuteThread: '5' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=69]
    0x00f447d0 JavaThread "ExecuteThread: '4' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=68]
    0x00a46fa8 JavaThread "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=67]
    0x00a46550 JavaThread "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=66]
    0x00a45970 JavaThread "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=65]
    0x00a44990 JavaThread "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=64]
    0x01487960 JavaThread "Thread-7" daemon [_thread_blocked, id=63]
    0x008c9580 JavaThread "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon [_thread_blocked, id=62]
    0x00e6aaf0 JavaThread "Thread-6" [_thread_blocked, id=61]
    0x008ddd90 JavaThread "weblogic.health.CoreHealthMonitor" daemon [_thread_blocked, id=60]
    0x008693a0 JavaThread "Thread-5" [_thread_blocked, id=59]
    0x00aac6a0 JavaThread "LDAPConnThread-0 ldap://nys01a-4704.fir.fbc.com:19101" daemon [_thread_blocked, id=58]
    0x00a94308 JavaThread "VDE Transaction Processor Thread" [_thread_blocked, id=56]
    0x00a80fa0 JavaThread "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" daemon [_thread_blocked, id=55]
    0x00a80df8 JavaThread "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" daemon [_thread_blocked, id=54]
    0x00a80c50 JavaThread "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" daemon [_thread_blocked, id=53]
    0x00861cf8 JavaThread "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon [_thread_blocked, id=52]
    0x0014dce0 JavaThread "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon [_thread_blocked, id=51]
    0x00862508 JavaThread "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon [_thread_in_native, id=50]
    0x00147f98 JavaThread "weblogic.security.SpinnerRandomSource" daemon [_thread_blocked, id=49]
    0x00147678 JavaThread "weblogic.time.TimeEventGenerator" daemon [_thread_blocked, id=48]
    0x0022ff38 JavaThread "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=47]
    0x0022f340 JavaThread "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=46]
    0x0022e340 JavaThread "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=45]
    0x0022d748 JavaThread "ExecuteThread: '1' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=44]
    0x0022cb50 JavaThread "ExecuteThread: '0' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=43]
    0x0022bf58 JavaThread "ExecuteThread: '24' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=42]
    0x0022b360 JavaThread "ExecuteThread: '23' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=41]
    0x0022a768 JavaThread "ExecuteThread: '22' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=40]
    0x00229b70 JavaThread "ExecuteThread: '21' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=39]
    0x00229088 JavaThread "ExecuteThread: '20' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=38]
    0x00212048 JavaThread "ExecuteThread: '19' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=37]
    0x00211450 JavaThread "ExecuteThread: '18' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=36]
    0x00210858 JavaThread "ExecuteThread: '17' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=35]
    0x0020fc60 JavaThread "ExecuteThread: '16' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=34]
    0x0020f068 JavaThread "ExecuteThread: '15' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=33]
    0x0020e470 JavaThread "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=32]
    0x0020d878 JavaThread "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=31]
    0x0020cc80 JavaThread "ExecuteThread: '12' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=30]
    0x0020c088 JavaThread "ExecuteThread: '11' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=29]
    0x0020b568 JavaThread "ExecuteThread: '10' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=28]
    0x003490f0 JavaThread "ExecuteThread: '9' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=27]
    0x003484f8 JavaThread "ExecuteThread: '8' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=26]
    0x003472f8 JavaThread "ExecuteThread: '7' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=25]
    0x00346700 JavaThread "ExecuteThread: '6' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=24]
    0x00345b08 JavaThread "ExecuteThread: '5' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=23]
    0x00344f40 JavaThread "ExecuteThread: '4' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=22]
    0x00344558 JavaThread "ExecuteThread: '3' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=21]
    0x00343b70 JavaThread "ExecuteThread: '2' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=20]
    0x00343188 JavaThread "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=19]
    0x00342fe0 JavaThread "ExecuteThread: '0' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=18]
    0x00853f00 JavaThread "Thread-1" daemon [_thread_blocked, id=17]
    0x00142dc0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=15]
    0x00142158 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14]
    0x0013ee40 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=12]
    0x0013d5a8 JavaThread "Finalizer" daemon [_thread_blocked, id=11]
    0x0013bc40 JavaThread "Reference Handler" daemon [_thread_blocked, id=10]
    0x00038a90 JavaThread "main" [_thread_blocked, id=1]
    Other Threads:
    0x0013a7d8 VMThread [id=9]
    0x001447c0 WatcherThread [id=16]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00038340/0x00038370] Threads_lock - owner thread: 0x00115858
    [0x00035388/0x000386c0] Heap_lock - owner thread: 0x00115858
    Heap
    par new generation total 523840K, used 19742K [0x69400000, 0x89400000, 0x89400000)
    eden space 523392K, 3% used [0x69400000, 0x6a747ac8, 0x89320000)
    from space 448K, 0% used [0x89320000, 0x89320000, 0x89390000)
    to space 448K, 0% used [0x89390000, 0x89390000, 0x89400000)
    concurrent mark-sweep generation total 1572864K, used 790031K [0x89400000, 0xe9400000, 0xe9400000)
    concurrent-mark-sweep perm gen total 109584K, used 65799K [0xe9400000, 0xeff04000, 0xf9400000)
    Dynamic libraries:
    0x00010000      java
    0xff350000      /usr/lib/libthread.so.1
    0xff340000      /usr/lib/libdl.so.1
    0xff200000      /usr/lib/libc.so.1
    0xff390000      /usr/platform/SUNW,Sun-Fire-V440/lib/libc_psr.so.1
    0xfe000000      /app/java/jdk1.4.2_12/jre/lib/sparc/client/libjvm.so
    0xff2e0000      /usr/lib/libCrun.so.1
    0xff1e0000      /usr/lib/libsocket.so.1
    0xff100000      /usr/lib/libnsl.so.1
    0xff0b0000      /usr/lib/libm.so.1
    0xff1c0000      /usr/lib/libsched.so.1
    0xff310000      /usr/lib/libw.so.1
    0xff080000      /usr/lib/libmp.so.2
    0xff040000      /app/java/jdk1.4.2_12/jre/lib/sparc/native_threads/libhpi.so
    0xfe7d0000      /app/java/jdk1.4.2_12/jre/lib/sparc/libverify.so
    0xfe790000      /app/java/jdk1.4.2_12/jre/lib/sparc/libjava.so
    0xfe770000      /app/java/jdk1.4.2_12/jre/lib/sparc/libzip.so
    0xfbba0000      /app/java/jdk1.4.2_12/jre/lib/sparc/libnet.so
    0xfc1e0000      /app/bea/weblogic81sp4/server/lib/solaris/libweblogicunix1.so
    0xf9690000      /app/bea/weblogic81sp4/server/lib/solaris/libstackdump.so
    0xf95e0000      /app/bea/weblogic81sp4/server/lib/solaris/libmuxer.so
    0xf95c0000      /usr/ucblib/libucb.so.1
    0xf94b0000      /usr/lib/libresolv.so.2
    0xf9470000      /usr/lib/libelf.so.1
    0xf9590000      /app/java/jdk1.4.2_12/jre/lib/sparc/libnio.so
    0x693a0000      /usr/lib/librt.so.1
    0x692e0000      /usr/lib/libaio.so.1
    0x692c0000      /usr/lib/libsendfile.so.1
    0x692a0000      /app/java/jdk1.4.2_12/jre/lib/sparc/libioser12.so
    0x50900000      /app/java/jdk1.4.2_12/jre/lib/sparc/libmlib_image.so
    0x4f200000      /app/java/jdk1.4.2_12/jre/lib/sparc/libawt.so
    0x5c510000      /app/java/jdk1.4.2_12/jre/lib/sparc/motif21/libmawt.so
    0x4ef80000      /usr/dt/lib/libXm.so.4
    0x5e610000      /usr/openwin/lib/libXt.so.4
    0x5e710000      /usr/openwin/lib/libXext.so.0
    0x5e560000      /usr/openwin/lib/libXtst.so.1
    0x4ee80000      /usr/openwin/lib/libX11.so.4
    0x5e420000      /usr/openwin/lib/libdps.so.5
    0x5e530000      /usr/openwin/lib/libSM.so.6
    0x5e350000      /usr/openwin/lib/libICE.so.6
    0x4ed80000      /app/java/jdk1.4.2_12/jre/lib/sparc/libfontmanager.so
    0x5e230000      /app/java/jdk1.4.2_12/jre/lib/sparc/libcmm.so
    0x5e130000      /app/java/jdk1.4.2_12/jre/lib/sparc/libjpeg.so
    VM Arguments:
    jvm_args: -Dnetworkaddress.cache.ttl=60 -Xms2048M -Xmx2048M -XX:NewSize=512M -XX:MaxNewSize=512M -XX:MaxPermSize=256m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -Xloggc:/app/fid/edocs/config/mydomain/logs/gc.log -Dscrittura.home=/app/fid/edocs/config/mydomain/scrittura -Dscrittura.env=PROD -Dscrittura.workflow.halted=true -Dscrittura.scrittura.halted=true -Dweblogic.alternateTypesDirectory=/app/fid/edocs/config/mydomain/applications/mbeantypes -Dscrittura.messaging.econfirm.transport.url=https://www.econfirm.com/ECFXmlMessaging/ECFXmlMessaging.class -Dscrittura.messaging.proxy.host=169.37.104.17 -Dscrittura.messaging.proxy.port=8080 -Dscrittura.messaging.econfirm.username=systemadmin -Dscrittura.messaging.econfirm.password=System25 -Dscrittura.messaging.econfirm.CSIBatchId=11472 -Dscrittura.messaging.econfirm.CSEBatchId=11508 -Dscrittura.messaging.econfirm.companyName=Test -Dwordml.pdf.timeout=120000 -Dwordml.datamatrix.dotSize=3 -Dcom.ipicorp.scrittura.disableRefiling=true -Dcom.ipicorp.mvc.disableSecurityChecks=true -Dscrittura.bulk.multi.transactions=true -Dscrittura.pdfpreview.quality=grayscale -Dscrittura.pib.bumpUpdate=true -Dweblogic.management.discover=true -Dweblogic.ProductionModeEnabled=true -Dweblogic.Name=edocs -Dbea.home=/app/bea/weblogic81sp4/server/.. -Djava.security.policy==/app/fid/edocs/config/mydomain/weblogic.policy -Dweblogic.system.StoreBootIdentity=true -Dweblogic.security.SSL.trustedCAKeyStore=/app/bea/weblogic81sp4/server/lib/csfbDefaultKeyStore.jks -Dweblogic.management.server=http://nys01a-4704.fir.fbc.com:19101
    java_command: weblogic.Server
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=:/app/bea/weblogic81sp4/server/lib/CR174593_81sp4_v2.jar:/app/java/jdk1.4.2_12/lib/tools.jar:/app/bea/weblogic81sp4/server/lib/CSFB_security_patches_81sp4.jar:/app/bea/weblogic81sp4/server/lib/weblogic_sp.jar:/app/bea/weblogic81sp4/server/lib/weblogic.jar:/app/fid/edocs/config/mydomain/applications/lib/commons-beanutils.jar:/app/fid/edocs/config/mydomain/applications/lib/commons-collections.jar:/app/fid/edocs/config/mydomain/applications/lib/commons-digester.jar:/app/fid/edocs/config/mydomain/applications/lib/commons-logging.jar:/app/fid/edocs/config/mydomain/applications/lib/dom4j-full.jar:/app/fid/edocs/config/mydomain/applications/lib/iText.jar:/app/fid/edocs/config/mydomain/applications/lib/jasperreports-1.3.0.jar:/app/fid/edocs/config/mydomain/applications/lib/jcommon-0.9.4.jar:/app/fid/edocs/config/mydomain/applications/lib/jcommon-1.0.6.jar:/app/fid/edocs/config/mydomain/applications/lib/jfreechart-0.9.19.jar:/app/fid/edocs/config/mydomain/applications/lib/jfreechart-1.0.3.jar:/app/fid/edocs/config/mydomain/applications/lib/log4j.jar:/app/fid/edocs/config/mydomain/applications/lib/Multivalent20040415.jar:/app/fid/edocs/config/mydomain/applications/lib/poi-2.5.1-final-20040804.jar
    PATH=/app/java/jdk1.4.2_12/jre/bin:/app/java/jdk1.4.2_12/bin:/bin:/usr/bin
    LD_LIBRARY_PATH=/app/java/jdk1.4.2_12/jre/lib/sparc/client:/app/java/jdk1.4.2_12/jre/lib/sparc:/app/java/jdk1.4.2_12/jre/../lib/sparc:/app/bea/weblogic81sp4/server/lib/solaris:/app/bea/weblogic81sp4/server/lib/solaris/oci816_8
    SHELL=/bin/ksh
    DISPLAY=:1
    --------------- S Y S T E M ---------------
    OS: Solaris 8 2/04 s28s_hw4wos_05a SPARC
    Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
    Assembled 08 January 2004
    uname:SunOS 5.8 Generic_117000-05 sun4u (T1 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 8192, AS infinity
    load average:0.33 0.46 0.62
    CPU:total 4 has_v8, has_v9, has_vis1, has_vis2, is_ultra3
    Memory: 8k page, physical 16777216k(10879240k free)
    vm_info: Java HotSpot(TM) Client VM (1.4.2_12-b03) for solaris-sparc, built on May 9 2006 13:03:17 by unknown with Workshop 5.2 compat=5

    >
    # Internal Error (434F4E43555252454E542D41524B335745455027454E45524154494F4E0E4350501175 01), pid=10258, tid=5
    Heap
    par new generation total 523840K, used 19742K [0x69400000, 0x89400000, 0x89400000)
    eden space 523392K, 3% used [0x69400000, 0x6a747ac8, 0x89320000)
    from space 448K, 0% used [0x89320000, 0x89320000, 0x89390000)
    to space 448K, 0% used [0x89390000, 0x89390000, 0x89400000)
    concurrent mark-sweep generation total 1572864K, used 790031K [0x89400000, 0xe9400000, 0xe9400000)
    concurrent-mark-sweep perm gen total 109584K, used 65799K [0xe9400000, 0xeff04000, 0xf9400000)
    vm_info: Java HotSpot(TM) Client VM (1.4.2_12-b03) for solaris-sparc, built on May 9 2006 13:03:17 by unknown with Workshop 5.2 compat=5The error you are seeing was fixed in 1.4.2_14 in CR 6409002, which also
    lists (as of this moment) the workaround -XX:-CMSParallelRemakrEnabled -XX:CMSMakrStackSize=64m
    (or some suitable large value, i think the default is 8M, but am not sure; however
    this can increase the GC pause "CMS-remark" pause times, which
    could be as much as ~3 x on your 4 cpu box):-
    http://bugs.sun.com/view_bug.do?bug_id=6409002
    For more details see:
    http://bugs.sun.com/view_bug.do?bug_id=4615723
    The latest publicly available version of 1.4.2 is 1.4.2_17, so you might
    consider upgrading to that instead of to 1.4.2_14.
    Aside: I notice that you are using the "client jvm"; you might consider the
    server jvm (via -server) for improved performance.

Maybe you are looking for