Removing LDOMS is failing

Hi,
I have successfully removed SUNWjass with the following command.
#pkgrm SUNWjass
but the gollowing error is thrown when I am removing
bash-3.00# pkgrm SUNWldm
The following package is currently installed:
SUNWldm Logical Domains Manager
(sparc.sun4v) 1.0.1,REV=2007.08.23.10.20
Do you want to remove this package? [y,n,?,q] y
## Removing installed package instance <SUNWldm>
(A previous attempt may have been unsuccessful.)
This package contains scripts which will be executed with super-user
permission during the process of removing this package.
# pkgrm SUNWldm
The following package is currently installed:
SUNWldm Logical Domains Manager
(sparc.sun4v) 1.0.1,REV=2007.08.23.10.20
Do you want to continue with the removal of this package [y,n,?,q] y
## Verifying package <SUNWldm> dependencies in global zone
## Processing package information.
## Executing preremove script.
## Removing pathnames in class <manifest>
svc:/ldoms/ldmd:default remains enabled; aborting
pkgrm: ERROR: class action script did not complete successfully
Removal of <SUNWldm> failed.
Could anyone help me.
Regards
Jayakrishna.K

The following worked for me:
#svccfg delete -f ldmd
& then
#pkgrm SUNWldm
removed the package
Regards
Jayakrishna.K

Similar Messages

  • An OLD INACTIVE email address, asking for a password, continues to show up to play certain selections in my iTunes Music Library.  I want to REMOVE this old email, HOW DO I REMOVE IT!!  All attempts to remove it have failed!

    An OLD INACTIVE email address, asking for a password, continues to show up to play certain selections in my iTunes Music Library.  I want to REMOVE this old email address, HOW DO I REMOVE IT!!  All attempts to remove it have failed!

    Yes, if you change your Apple ID to your new email address. You don't have to. Under those sort of situations you can speak to Apple about transferring your purchased items to the new Apple ID, and see if they will help you.
    You don't lose access to your older purchased items, you simply cannot update or re-download them or, in some cases, use them without providing the old Apple ID and password. All purchased items are permanently tied to the Apple ID used at time of purchase.

  • Remove & Push Settings failed

    I am trying to get profilemanager working - currently sending remove/push settings does fail immediately (remove settings) or is pending forever (push settings: depending on payload?) whereas device enrolment, trust certificate installation, initial installation of settings using the website as well as requesting "Update Info" from profile manager does work.
    1. During my research, I found out what ports to open in the firewall - amongst others: 5223
    2. The server port should be accessible from 17.0.0.0/8 network
    There I already seem to have an issue since I am not quite sure either it is a certificate, firewall, setup or service issue.
    Am I wrong if I would expect port 5223 to be listening on the OS X server - at least for localhost?
    master:~ root# telnet 127.0.0.1 5223
    Trying 127.0.0.1...
    telnet: connect to address 127.0.0.1: Connection refused
    telnet: Unable to connect to remote host
    OS X: 10.10.2
    Server: 4.0.3
    Client: iPhone 6
    iOS: 8.2
    Thank you for your suggestions!

    Solved by some nasty issues
    1. When using self signed certificates on your server, make sure to export the ROOT certificate from your keychain to install by hand on your device(s)
    2. Do not use IKEv2 VPN or other profile settings restricted to "supervised devices" unless you are sure they are supervised
    3. Ignore the fact the your server may not listen to port 5223
    If you are still having issue, enabling Push Notification Log will also help.

  • How to remove customization when fail to entry customization region.

    I make a customization to a region, but this customization make the page fail, that the page can't show the region.
    Then, how can I remove the customization for the region.
    Thanks.

    Sumury,
    1) Profile Option : Personalize Self-service Defn
    Value : Set to "NO"
    This will disable all the personalizations in the application done.
    2) begin
    jdr_utils.deleteDocument('/oracle/apps/apps...../site/0/...PG');
    end;
    Note - Don't forget to commit.
    Regards,
    Gyan

  • Trying to remove ldoms but memory will not release

    I've pkgrm'd every ldom package and the jass stuff but I cannot get it to release the memory! It shows that I only have 1 GB of memory when prtdiag shows 32. My Oracle guys are trying to work on this server but it's only using 1 GB.
    Thanks for your help,
    Maria

    Try removing all old spconfigs after reinstalling SUNWldm package
    /opt/SUNWldm/bin/ldm ls-spconfig
    /opt/SUNWldm/bin/ldm rm-spconfig <config-file>
    Do not delete <factory-default> config file but delete the other ones if they still exist
    Then reboot

  • Set-acl and remove-ntfs both fail from PowerShell yet i can do it from the GUI

    I have put together a script that searches all of our folders then searches the folders for groups that should have access and do not and groups that should not have access and do.
    Finding only the folders that need NTFS permissions changed works great.  Adding the groups that need added works great but removing groups is not working.  Below is a section of my script with the section not working underlined.  You can
    see i have tried 2 approaches.  
    If i use the Remove-NTFSAccess command (which i really prefer) I get no errors and you would think all worked until you check.
    If i use set-acl about half give me a error  "Set-Acl : The process does not possess the 'SeSecurityPrivilege' privilege which is required for this operation" but it does not remove the Domain admins for any of the
    folders including the ones that give no error.
    I have privileges to do it.  I can go to a folder and remove the group from the NTFS permissions in the GUI with no issue. 
    Thanks!
    "Add Nseries Admins"
    $workingdir = (Get-Content "$env:TEMP\Add nseries admins.txt")
    $mynum=[int]$workingdir.Count
    foreach ($path in $workingdir) {
    $mynum
    $mynum = $mynum - 1
    $path
    Add-NTFSAccess -Path "$path" -Account "SCHOOLS\Nseries Admins" -AccessRights FullControl -AccessType Allow -AppliesTo ThisFolderSubfoldersAndFiles
    "Romeve Domain admins"
    $workingdir = (Get-Content "$env:TEMP\Remove domain admins.txt")
    $mynum=[int]$workingdir.Count
    foreach ($path in $workingdir) {
    $mynum
    $mynum = $mynum - 1
    $path
    # Add-NTFSAccess -Path "$path" -Account "SCHOOLS\Nseries Admins" -AccessRights FullControl -AccessType Allow -AppliesTo ThisFolderSubfoldersAndFiles
    # Remove-NTFSAccess -Path "$path" -Account "SCHOOLS\Domain Admins" -AccessRights Read -AccessType Allow -AppliesTo ThisFolderOnly
    $acl=get-acl "$path"
    $accessrule = New-Object system.security.AccessControl.FileSystemAccessRule("SCHOOLS\Domain Admins","Read",,,"Allow")
    $acl.RemoveAccessRuleAll($accessrule)
    Set-Acl -Path "$path" -AclObject $acl

    I just ran that a couple of times.  No errors as long as the subfolders are not protected in a way the blocks the admin.  I will try and find a folder that causes this exact scenario.
    Is it possible that this was fixed in V4?
    ¯\_(ツ)_/¯
    The SACL being overwritten isn't fixed. There's a Connect bug
    here. Set-Acl basically does this before trying to call SetAccessControl():
    $path = "$env:Temp\temp_item_name"
    $acl = Get-Acl $path
    # Get the binary form:
    $binaryForm = $acl.GetSecurityDescriptorBinaryForm()
    # Create a new SD object:
    $newacl = New-Object $acl.GetType()
    # Take the old binary form and use it for the new SD object,
    # but tell it it's for all sections, including the SACL:
    $newacl.SetSecurityDescriptorBinaryForm($binaryForm, "All")
    Next, it tries to call SetAccessControl() inside of a try{} block. If it detects a PrivilegeNotHeld exception, it will try to redo the section above without setting the Owner, Group, and SACL (if certain conditions are met). I can't get the second call to
    error the way Lishron did, but that doesn't mean there's no scenario where that can't happen.
    By the way, here's an example of trying to call SetAccessControl() with the modified SD object from above:
    $FileSystemItem = Get-Item $path
    $FileSystemItem.SetAccessControl($newacl) # <-- Fails if you're not an admin; overwrites SACL if you are
    $FileSystemItem.SetAccessControl($acl) # <-- Succeeds (unless you're trying to change the owner)

  • SCVMM 2012 R2 Remove Storage Classification fails

    Hello.
    I'm trying to remove an unused Storage Classification, but it fails:
    Warning (26154)
    The storage classification cannot be removed as one or more objects are associated with this classification.
    Recommended Action
    Remove all associations of this classification and retry the operation.
    I have checked the dependencies with the "View Dependent Resources" button and changed a few templates that depended on this classification. I tried to remove it again but it throws the same error. This happens with more tan one Storage classification.
    I have only been able to remove one classification that I think i had never used.
    Any ideas?

    The IP address was in use by the cluster.  The IP has to be free (not pingable) and host name must not already exist in AD.  Fixed.

  • Removing xml schema fails

    When i try to remove an xml schema using the enterprise manager (10.1.0.2.0) console i receive the following error:
    VB0-8051: ...
    ORA-31000: Resource ... is not an xdb-schema document
    ORA-06512: in XDB.DBMS_XMLSCHEMA_INT: row 70
    ORA-06512: in XDB.DBMS_XMLSCHEMA: row 103
    ORA-06512: in row 1
    Thanks for any hint,
    Christian
    What i see in the schema code (see below) is that the <xs:schema>-tag is directly following the comment.
    Even if i register a schema without a comment, i can't remove it from xdb :-((((
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!-- edited with XMLSpy v2005 sp2 U (http://www.altova.com) by --><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:oraxdb="http://xmlns.oracle.com/xdb" oraxdb:flags="279" oraxdb:schemaURL="stdb1296/objects.xsd" oraxdb:schemaOwner="ISMED_XML" oraxdb:numProps="12">
    <xs:element name="objects" oraxdb:propNumber="2408" oraxdb:global="true" oraxdb:SQLName="objects" oraxdb:SQLType="objects137_T" oraxdb:SQLSchema="ISMED_XML" oraxdb:memType="258" oraxdb:defaultTable="objects143_TAB" oraxdb:defaultTableSchema="ISMED_XML">
    <xs:annotation>
    <xs:documentation>Top level element als Klammer über alle Instanzen.</xs:documentation>
    </xs:annotation>
    .....

    Christian,
    I run the following code from sql to remove the schemas I register.
    I've noticed when I try to register schemas multiple times I will get errors.
    I got this code from one of the XML documents or XDB documents. I don't remember where I found it. You may be able to do a search if you want more information.
    declare
    unregistered_schema exception;
    PRAGMA EXCEPTION_INIT( unregistered_schema -31000 );
    begin
    dbms_xmlschema.deleteschema('schemaregisterednamehere',dbms_xmlschema.DELETE_CASCADE_FORCE);
    exception
    when unregistered_schema then
    null;
    end;

  • Make it go away! Removing LDOMs?

    How do I get rid of LDOMs entirely from a T2000? I want to get rid of all of the I/O and vldc stuff from the primary domain and go back to the old setup.
    I've tried uninstalling LDOMs and going back to 6.3.7 firmware but I get vldc hypervisor errors on boot. When I go to 6.4.6 again those errors go away.
    Either way VxVM can't see my FC HBAs.
    I want it all back to the way it came in the box but I can't seem to clear out the hypervisor stuff from the firmware.
    Thanks

    If you can run the ldm(1m) command, LDoms is still enabled. If you do the following on Solaris and reboot into the "factory-default" config, the machine should be as if LDoms was never running on it.
    ldm ls-config
    ldm rm-config <any created configs>
    svcadm disable ldmd
    svcadm disable vntsd
    pkgrm SUNWldmBTW, all sun4v machines have a hypervisor (even before LDoms support was added). It's just that from 6.4.x onwards, the hypervisor supports multiple domains.
    The messages with 6.3.7 are harmless - just debug messages telling you that LDoms is not supported on that firmware. They shouldn't have been printed, and they are fixed in OpenSolaris and Solaris 10 08/07 (U4)
    6495154 mdeg should not print a warning when the MD generation number does not change

  • GPO Deploy Reader 9.3 and remove earlier version fails

    Hi
    I am deploying Reader 9.3 with a mst from the Customization Wizard using a GPO. Basically this works perfect with the following exception:
    - I can not select to remove older versions in the Customization Wizard, its grayed out
    How do I manage to correctly remove the older version?
    The 8.x was installed by a GPO as well. Of course I can set to remove the 8.x version and - if possible - on the same boot install the new 9.3 version. Does that work? What's the 'Best practice' to update all clients from 8 to 9?
    Thanks
    Franz

    Hi
    I am trying to deploy 9.3 with GPO as well, I also cannot control the checkboxs' to uninstall older versions of acrobat and reader but I have found that it will uninstall the apps without these set.  By default remove older version of acrobat is checked and reader is not, but i have still found it to remove both...

  • GT70 0ND-204US Windows 7 removed and recovery fails due to drive reformat

    Model Number:GT70 0ND-204US
    Hello,
    I was attempting to install Unbuntu from a LiveCD to an external hard drive and I believe during that process I accidentally reformatted the SSD to be an ext4 partition and swap space.  When I rebooted to try to get into windows I got an error that said, "Bootmgr is missing" and when I tried to enter recovery mode I got as far as seeing a Windows 7 like user interface but then I was shown the error (paraphrasing here), "The installation drive must be named OS_install please try again."
    I'm typing this using the LiveCD on the undermentioned  computer and can use any tools available in Unbuntu if further diagnostic information is needed.
    Cheers!
    Also I would like to thank anyone in advance for their help and even if you're just reading this I appreciate the time you have given.

    Refer to >>Recovery HotKey User Manual<< or >>Reinstalling Windows when recovery fails<<

  • Crop tool remove white margins" fail

    I used to use the "remove white margins" option in the crop dialog all the time, to quickly make submitted ad materials easier to import into layouts. Lately it just stopped working. Clicking the option simply does nothing at all. It's as if there were no white margins. This happens on every ad now, not just a few scattered exceptions. Sometimes after restarting it seems like it works normally for a short while, but it inevitably quickly stops functioning again. Has anyone else run into this? New bug? My system only? Any known fix?

    In case it helps, this only happens in Acrobat Pro 10. I'm using 9 at home and have no problem with it. Does anyone else use the remove white margins option? You haven't noticed a problem in Acrobat Pro 10?

  • My Ipod touch Worked Fine Until Sound Just Dropped. Im not using apple earphones, But its not the earphones that are Bugging me its when i remove them Audio Fails.

    Is there anything that i could do to fix this?

    Try in order:
    - Resetting the iPOd:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restoring the iPod from backup via iTunes on your computer
    - Restoring the iPod to factory defaults/new iPod via iTunes.
    - Make an appointment at the Genius Bar of an Apple store.

  • Multipath I/O: Removal failed

    When I try to Remove  Multipath I/O feature (all customized settings on the MultiIO have been removed) , I got this error:
     <Error>: Attempt to un-install Multipath I/O failed with error code 0x80070643. Fatal error during installation
    Please refer to the full log at: 'C:\Windows\logs\ServerManager.log'
    In the Server Manager Log file, I found these logs:
    ==============================
    2320: 2012-05-30 11:15:01.089 [InstallationProgressPage]  Begining Sync operation...
    2320: 2012-05-30 11:15:01.089 [Sync]                     
    Sync Graph of changed nodes
    ==========
    name     : Multipath I/O
    state    : Deleted
    rank     : 1
    sync tech: CBS
    ant.     : empty
    pred.    : empty
    provider : Provider
    2320: 2012-05-30 11:15:01.089 [Sync]                      Calling sync provider of Multipath I/O ...
    2320: 2012-05-30 11:15:01.089 [Provider]                  Sync:: guest: 'Multipath I/O', guest deleted?: True
    2320: 2012-05-30 11:15:01.089 [Provider]                  Begin un-installation of 'Multipath I/O'...
    2320: 2012-05-30 11:15:01.089 [Provider]                  Uninstall: Guest: 'Multipath I/O', updateElement: 'MultipathIo'
    2320: 2012-05-30 11:15:01.089 [Provider]                  Un-installation queued for 'Multipath I/O'.
    2320: 2012-05-30 11:15:01.089 [Provider]                  [STAT] For 'Multipath I/O':
    2320: 2012-05-30 11:15:01.089 [Provider]                  [STAT] Un-Configuration took '0.0001109' second(s) total.
    2320: 2012-05-30 11:15:01.089 [CBS]                       uninstalling 'MultipathIo ' ...
    2320: 2012-05-30 11:15:02.072 [CBS]                       ...current state of 'MultipathIo': p: Installed, a: Installed, s: InstallRequested
    2320: 2012-05-30 11:15:02.072 [CBS]                       ...setting state of 'MultipathIo' to 'UninstallRequested'
    2320: 2012-05-30 11:15:02.431 [CbsUIHandler]              Initiate:
    2320: 2012-05-30 11:15:02.431 [InstallationProgressPage]  Removing...
    2320: 2012-05-30 11:15:14.067 [CbsUIHandler]              Error: -2147023293 :
    2320: 2012-05-30 11:15:14.067 [CbsUIHandler]              Terminate:
    2320: 2012-05-30 11:15:14.410 [InstallationProgressPage]  Verifying removal...
    2320: 2012-05-30 11:15:14.441 [CBS]                       ...done uninstalling 'MultipathIo '. Status: -2147023293 (80070643)
    2320: 2012-05-30 11:15:14.753 [Provider]                 
    [STAT] ---- CBS Session Consolidation -----
    [STAT] For
              'Multipath I/O'[STAT] Un-installation(s) took '13.3523268' second(s) total.
    2320: 2012-05-30 11:15:14.753 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: False, Id: 57
    2320: 2012-05-30 11:15:14.769 [Provider]                  Sync Message - OperationKind: UnConfiguration, MessageType: Information, MessageCode: 0, Message: <null>, AdditionalMessage:
    <null>
    2320: 2012-05-30 11:15:14.769 [Provider] Error (Id=0) Sync Message - OperationKind: Uninstall, MessageType: Error, MessageCode: -2147023293, Message: Attempt to un-install Multipath I/O failed with error code 0x80070643., AdditionalMessage: Fatal error during
    installation
    2320: 2012-05-30 11:15:14.769 [InstallationProgressPage]  Sync operation completed
    2320: 2012-05-30 11:15:14.769 [InstallationProgressPage]  Performing post install/uninstall discovery...
    2320: 2012-05-30 11:15:14.769 [Provider]                  C:\Windows\system32\ServerManager\Cache\CbsUpdateState.bin does not exist.
    ==============================
    What is the trick the remove this multiIO feature ? Did I miss anything?
    Thank you.

    Hi.
    I tried:
    1. deleted the 2 files in C:\Windows\system32\ServerManager\Cache directory folder then restarted Server Manager to remove MPI/O - Failed.
    2. Ran SFC and System Update Reainess tool. Found no error and then restarted server to remove MPI/O - Failed.
    The Error message is similar to the orignal post. Here is the log
    ===============
    3132: 2012-05-31 09:42:48.181 [InstallationProgressPage]  Loading progress page...
    3132: 2012-05-31 09:42:48.212 [InstallationProgressPage]  Begining Sync operation...
    3132: 2012-05-31 09:42:48.212 [Sync]                     
    Sync Graph of changed nodes
    ==========
    name     : Multipath I/O
    state    : Deleted
    rank     : 1
    sync tech: CBS
    ant.     : empty
    pred.    : empty
    provider : Provider
    3132: 2012-05-31 09:42:48.212 [Sync]                      Calling sync provider of Multipath I/O ...
    3132: 2012-05-31 09:42:48.212 [Provider]                  Sync:: guest: 'Multipath I/O', guest deleted?: True
    3132: 2012-05-31 09:42:48.228 [Provider]                  Begin un-installation of 'Multipath I/O'...
    3132: 2012-05-31 09:42:48.228 [Provider]                  Uninstall: Guest: 'Multipath I/O', updateElement: 'MultipathIo'
    3132: 2012-05-31 09:42:48.228 [Provider]                  Un-installation queued for 'Multipath I/O'.
    3132: 2012-05-31 09:42:48.228 [Provider]                  [STAT] For 'Multipath I/O':
    3132: 2012-05-31 09:42:48.228 [Provider]                  [STAT] Un-Configuration took '0.0001436' second(s) total.
    3132: 2012-05-31 09:42:48.228 [CBS]                       uninstalling 'MultipathIo ' ...
    3132: 2012-05-31 09:42:49.102 [CBS]                       ...current state of 'MultipathIo': p: Installed, a: Installed, s: InstallRequested
    3132: 2012-05-31 09:42:49.102 [CBS]                       ...setting state of 'MultipathIo' to 'UninstallRequested'
    3132: 2012-05-31 09:42:49.180 [CbsUIHandler]              Initiate:
    3132: 2012-05-31 09:42:49.180 [InstallationProgressPage]  Removing...
    3132: 2012-05-31 09:42:57.950 [CbsUIHandler]              Error: -2147023293 :
    3132: 2012-05-31 09:42:57.950 [CbsUIHandler]              Terminate:
    3132: 2012-05-31 09:42:58.293 [InstallationProgressPage]  Verifying removal...
    3132: 2012-05-31 09:42:58.324 [CBS]                       ...done uninstalling 'MultipathIo '. Status: -2147023293 (80070643)
    3132: 2012-05-31 09:42:58.355 [Provider]                 
    [STAT] ---- CBS Session Consolidation -----
    [STAT] For
              'Multipath I/O'[STAT] Un-installation(s) took '10.1042634' second(s) total.
    3132: 2012-05-31 09:42:58.355 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: False, Id: 57
    3132: 2012-05-31 09:42:58.371 [Provider]                  Sync Message - OperationKind: UnConfiguration, MessageType: Information, MessageCode: 0, Message: <null>, AdditionalMessage:
    <null>
    3132: 2012-05-31 09:42:58.371 [Provider] Error (Id=0) Sync Message - OperationKind: Uninstall, MessageType: Error, MessageCode: -2147023293, Message: Attempt to un-install Multipath I/O failed with error code 0x80070643., AdditionalMessage: Fatal error during
    installation
    3132: 2012-05-31 09:42:58.371 [InstallationProgressPage]  Sync operation completed
    3132: 2012-05-31 09:42:58.371 [InstallationProgressPage]  Performing post install/uninstall discovery...
    3132: 2012-05-31 09:42:58.371 [Provider]                  C:\Windows\system32\ServerManager\Cache\CbsUpdateState.bin does not exist.
    3132: 2012-05-31 09:42:58.371 [CBS]                       IsCacheStillGood: False.
    3132: 2012-05-31 09:42:59.354 [CBS]                      
    ===============
    This is the CheckSUR log:
    =================================
    Checking System Update Readiness.
    Binary Version 6.1.7601.21645
    Package Version 15.0
    2012-05-31 09:23
    Checking Windows Servicing Packages
    Checking Package Manifests and Catalogs
    Checking Package Watchlist
    Checking Component Watchlist
    Checking Packages
    Checking Component Store
    Summary:
    Seconds executed: 143
     No errors detected
    Please advise.
    -Neil

  • Can't remove expired apps from memory card

    I have an N73 and had some applications with a developers certification installed to my memory card. I then did a firmware upgrade. Now every time I start the phone it wants to install these applications but fails and tells me to upgrade via the Application Manager. In the Application Manager these apps are listed as uninstalled, if I try to remove them it fails due to expired certificate (which is probably true). But I can't remove them either, and haven't found any files to delete browsing the card. Suggestions? 

    This worked for one app--actually I could install it and after resetting the clock it still runs fine. Didn't think the certificate mechanism was so unintelligent.
    One app didn't work anyway, it might've gotten corrupted. Found I could mount my memory card to my desktop and search for the application code, which was listed in the Application Manager, and manually delete all references to it. 

Maybe you are looking for

  • D810 RAW not working with elememts 12

    I have a new Nikon D810. Shooting RAW I tried to download to elements 12 and it says the files are not recognizable. I upgraded capture RAW, and still no luck. I downloaded DNR 8.6 and can convert the files but still will not open in Elements. I can

  • SAPSCRIPT - print of scanned text

    Hi Guys, I have the following problem: We would like to print the scanned signatures of 2 persons at a orderform (sales order). The form is an sapscript form. For every sales order we have 2 persons which are responsible. Now we would like to print t

  • BDC or BAPI for HUP1 transaction?

    Dear All, I am trying record HUP1 transaction but not able to get HU number in recording. Even I tried BAPI_HU_CREATE for creating HU number and this BAPI creates HU number but when I saved HUP1 the system genrate one more HU number (new HU number).

  • New Apple 64 bit Windows 7 BootCamp Drivers!

    I, like several hundred thousand others have been patiently waiting for the promised 64 bit Win 7 boot camp drivers. I have still heard no announcement since the one that said they would be available before the end of 2009. Well, today I purchased a

  • How to get PerformanceProfiler/DMS/JMX for TopLink working on GlassFish

    Greetings, all I'm trying to configure Toplink 11.1.1.0 (instead of Toplink Essentials) as JPA provider to run on GlassFish V1 UR1 with performance monitoring via PerformanceProfiler and cache invalidation when needed, with the following configuratio