Experience with profiling products and tools

Hi,
I'd like to get a good tools for profiling an application
running under WebLogic 6.0 on Win 2000. So far searching the
web, I found Borland Optimizeit and Sitraka jprobe. I once
downloaded an evaluation copy of jprobe but I didn't have
sufficient time to really learn how to use it before the license
expired. I fiddled around a little with the the Java built-in
HPROF and a couple of tools to visualize the data. Specifically
HAT and PerfAnal. They both seem buggy and I was only able to
get PerfAnal to work on a simple application. Examining the data
file output from HPROF seems to provide limited or hard to read
information.
If you have experience with a tool that you like, I would very
much like to hear from you. Thanks in advance for your opinions
and insites.
Al Moyer

There are two levels that I'm used to seeing:
Code Profiling (lower level) -
JVM
jProbe
optimizit
etc.
Performance Management (higher level) -
Precise Indepth
Wily Introscope
Sitraka ??? (new product I can't remember the name)
Peace,
Cameron Purdy
Tangosol, Inc.
Clustering Weblogic? You're either using Coherence, or you should be!
Download a Tangosol Coherence eval today at http://www.tangosol.com/
"Alan Moyer" <[email protected]> wrote in message
news:3c99e72b$[email protected]..
>
Hi,
I'd like to get a good tools for profiling an application
running under WebLogic 6.0 on Win 2000. So far searching the
web, I found Borland Optimizeit and Sitraka jprobe. I once
downloaded an evaluation copy of jprobe but I didn't have
sufficient time to really learn how to use it before the license
expired. I fiddled around a little with the the Java built-in
HPROF and a couple of tools to visualize the data. Specifically
HAT and PerfAnal. They both seem buggy and I was only able to
get PerfAnal to work on a simple application. Examining the data
file output from HPROF seems to provide limited or hard to read
information.
If you have experience with a tool that you like, I would very
much like to hear from you. Thanks in advance for your opinions
and insites.
Al Moyer

Similar Messages

  • Anyone any experience with Oracle products and TurboLinux?

    Hi all,
    I would appreciate any thoughts or shared experience with
    TurboLinux and any Oracle products - incl. OAS 4, OWAS 3, O8i, O8
    and eventually others unknown to me.
    Thank you all very much in advance.
    P.S> I would appreciate if someone shares any general experience
    with TurboLinux - especially NLS support.
    null

    Hello,
    There is a known issue with PDF in 11.1.2.1 . The problem will appear or not according to the PDF viewer used :
    ALERT: Reports PDF Problems in 11.1.2.1.0 Patchset for Non-Linux Platforms [ID 1522543.1]
    "Interim patches" are available .
    Kind regards

  • Any kind of integration experience with Weblogic JMS and Oracle AQ?

    Hi,
    In my company I work with java developers who believe in some kind of "holly" database independence I don't understand and as a result my life as a database developer is hell on earth.. Yesterday we again started to discuss, this time where to log, they believe database is slow and prefer logging to filesystem, after some hours finally I could convince them for some operational and reporting needs to use the database and will do this in an asyncronous way whiich they won't get slow. After all I believe the reason for a database is data, this is the place where data lives, and with the correct desing and implementation logging to database would perform better.
    I love Oracle features, and know that we paid a lot for this software, so today I started investigating this promised solution. And quickly I found AQ and JMS topics in the documentation :)
    After this introduction here is my problem; my company use BEA Weblogic as application server and the java guys want AQ to automatically (but of course with some delay) take their JMS log requests into database tables. Does any one have similar application experience, or any kind of integration experience with Weblogic JMS and Oracle AQ?
    Any comments, references, documentation, sample code, url will be most welcomed :)
    Thank you very much!
    Tonguc
    [email protected]
    References I found upto now;
    Oracle® Streams Advanced Queuing Java API Reference 10g Release 2 (10.2) http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14291/toc.htm
    (Packages; javax.jms & oracle.jms)
    Oracle® Streams Advanced Queuing User's Guide and Reference 10g Release 2 (10.2) http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14257/toc.htm
    Part IV
    Using Oracle JMS and Oracle Streams AQPart V describes how to use Oracle JMS and Oracle Streams Advanced Queuing (AQ).
    Chapter 11, "Introducing Oracle JMS"
    Chapter 12, "Oracle JMS Basic Operations"
    Chapter 13, "Oracle JMS Point-to-Point"
    Chapter 14, "Oracle JMS Publish/Subscribe"
    Chapter 15, "Oracle JMS Shared Interfaces"
    Chapter 16, "Oracle JMS Types Examples"
    A Sample Code from Otn
    http://www.oracle.com/technology/sample_code/tech/java/web_services/jmsws/NewsQueueEJB.java.html

    I wouldn't go as far to say Oracle AQ is out-dated today. However, it is indeed a proprietary technology that did not found much main-stream adoption in the earlier years after its introduction. The advent of JMS made it somewhat more useful (or should I say intriguing, because more people are trying to tie it together with other J2EE technologies), but the Oracle's JMS wrapper classes in aqapi.jar were not feature complete for a long while, so using it outside Oracle's application server was painful, if not impossible. I do agree that the info at the dev2dev's JMS newsgroup or in this forum is highly fragmented, as neither Oracle nor BEA provides an official solution to integrate AQ with WebLogic, so people like us have to learn the technology through experimentation and in a piecemeal fashion.
    3 years ago I was literally "playing around" - we had a polling mechanism set up to use triggers to write Oracle data changes into an event table, and had a Java-based daemon to scan that table and publish events as JMS messages to the WebLogic JMS server. This continues to work reliably till today, but I was looking for a solution that has few parts - I wanted to hook up my WebLogic MDB directly to AQ as a foreign JMS provider. Although I was able to get it to work (including XA), there were a few hoops I had to jump through, such as decompiling the Oracle AQjms classes to make them bind to the WebLogic JNDI tree.
    One year after that Diptanshu Parui took what I did a giant step further - he extended the Oracle AQjms classes to allow them to be bound to the WebLogic JNDI tree naturally, and he figured out how to use WebLogic JMS messging bridge to re-send single-threaded AQ JMS messages to clustered JMS queues, which allow concurrent message assumption by multiple instances of MDB's. My impression is that he is using that setup in a production environment.
    I am sure you are aware of it but I would like to make it clear - in order to use AQ as a foreign JMS provider to WebLogic-hosted MDB's, you don't need to update your database to Oracle 10g - Oracle 8i is good enough (although I recommend at least 9i Release 2). It is not the database engine, but rather the aqapi.jar JMS wrapper on top of AQ that matters. I do recommend that you use aqapi.jar from Oracle Application Server 10.0.3 or up for better XA support, among other things. Again, you don't have to replace WebLogic with Oracle AS - you only need a single jar file from it and put it in your WebLogic's classpath. However, I don't know what this means from a licensing point of view if you ever go to production - do you have to pay the full price of OracleAS or OC4J just to use the aqapi.jar?
    In the coming days I will test the latest aqapi.jar to see how much progress Oracle has made in terms of making their J2EE products more spec-compliant :-).
    Hope the above gives you a different perspective.
    Eric

  • My Iphone4 Home button sometimes work nicely and sometimes it stop working. India Apple care says they cant give me even paid support because i bought phone from Australia. i don't know what to do. i m disappointed with the product and service support

    My Iphone4 Home button sometimes work nicely and sometimes it stop working. India Apple care says they cant give me even paid support because i bought phone from Australia. i don't know what to do. i m disappointed with the product and service support

    When you buy an iPhone in the U.S. it's locked to that country with the carrier you bought it for.
    If you bought the device unlocked in the U.S. it's unlocked, you can use it on any carrier. Even one's outside the country.
    If you want to do a repair on a device you bought in the U.S. and your using it in another country, you must send it back to the U.S. Why? That's where you bought it from.
    AppleCare Protection Plans and AppleCare Limited Warranties are registered to your hardware.
    Your hardware is your iPhone.
    Wherever hardware that was bought then that's the country it was designed to be used in and that's where it was manufactured.
    Apple is very localized - if you call U.S. tech support, you'll speak to somone in your country.
    So, what does all this mean?
    In order to do a repair, you need to send it back to the country you got it from.
    And we're all customers like you. We understand that you're upset, but Apple isn't gonna bend the rules to one individual.
    Policy is policy. Get over it.

  • I recently just bought a iphone 4 im happy with the product and it didnt cost an arm and a leg but i was wondering when the iphone 4 will become obsolete as in not receaving updates anymore etc

    I recently just bought a iphone 4 im happy with the product and it didnt cost an arm and a leg but i was wondering when the iphone 4 will become obsolete as in not receaving updates anymore etc

    Keep in mind that just because a device may not be upgradeable to the latest iOS release does not mean it cannot continue to work just fine on the last update it did get.  There will be many devices that were incompatible with iOS 7 that will continuing to work just fine on iOS 6 for a long time yet.  There are many people still using their iPad 1 despite the fact it stopped getting iOS updates after iOS 5.1.1.
    One way to safeguard your apps against future incompatible versions is to keep a backup of all your apps in iTunes on your computer.  That way, if an update to the app comes out that is not backwards compatible with your iOS, you still have a copy of the last version of the app that was compatible with your device and your iOS release.

  • Experience with iPod nano and iPod socks?

    After discussing with the Apple Helpline about the scratches on my nano, they quickly proposed to send my some iPod socks for free in order to protect the nano (is this like implicitely admitting that something went wrong?).
    My question: Does anybody have experience with iPod socks and the nano, i.e. do they scratch the nano as well (as somebody on another forum has posted)?

    lol, good one James. + for you.
    I remember this same thing with the iPod Mini. That was released in February 2004 and there were a huge number of cases by around April. But the mini was announced in January which ment the third party makers had a whole month to design and make cases.
    The ironic thing....people didnt need a case for the mini. Its was scratch resistant to begin with, however the nano is damaged by finger acid!!!
    *nathan
    PS: James, off topic, but do you use your iPods for different reasons, as im trying to think of ways to justify having three aswell?

  • 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.

  • New Customer - Have had MISERABLE experience with Verizon service and Customer service

    I am a brand new customer of Verizon Fios and so far I have zero good things to say about it.  If it wasn't for the aggrevation of switching cable companies, I most definitely would go back to Comcast.
    I moved into a new home in the middle of April.  The previous owner had Verizon Fios in this house, so there was minimal installation that had to be done when I initially set up my cable.  My house was pretty much empty at the time, so we had the TV's set up where we had a place to put it (upstairs, kitchen, and living room).  We recently bought bedroom furniture, so we could now move the TV to where we initially wanted it, in our bedroom.  However when we tried to hook it up to an outlet, no picture came though.  This is when my awful experience with verizon customer service (or lack there of) began.
    I took time out of my work day to call Verizon about this problem.  I was on hold for about 30 mins until I actually heard a human's voice.  He was unable to help me since I was not at home to unplug and plug things back in. 
    I called again when I was home, this time I was on hold for about 20 mins (wow)... the first person could not help me, so she transferred me to another department... put on hold for 35 mins.... this perosn couldnt help me either and they transferred me back to the SAME DEPARTMENT I WAS INITIALLY TRANSFERRED FROM.... put on hold for about 45 mins... finally i speak with someone that knows what they are talking about.  Of course I have to go through all the same steps that I did the first time which did not work.  As this person decides I need a technician, he begins to look up available dates... and then after an hour and 35 mins on the phone, it gets disconnected!  I wait for 5 minutes to get a call back but I get NOTHING.  I spent now 2 hours trying to deal with this and verizon doesnt even call me back when its their phone that gets disconnected? Thats terrible.
    I call back after 10 mins and am put on hold right away (obviously).... after 25 mins of being on hold, shocker - the call is disconnected again.
    That was enough for one day
    I call back again the next day... same old thing... put on hold for 30 mins, talk to one person who cant help me, transferred to another department and put on hold for 20 more mins.
    Finally with the tech department who says they are going to schedule a tech to come out to fix the problem but also mentioned they are going to charge me $55 for this! Are you kidding me?????? Verizon wastes about 4 hours of my life and busy day and then has the nerve to say they are going to charge me for it? I asked the person several times if I could speak with a manager or supervisor, they never let me.  I asked multiple times and she just said that they wouldnt be able to help me and that the charge would stick.
    I can't imagine that anyone would treat a brand new customer like this.  I will not recommend Verizon to any one until I see some kind of help or REAL customer service from them.

    I did call them this morning, and still on the phone.
    I will say this - the reps are very friendly and do try to help in earnest.  That's been my experience overall with Verizon.  So in terms of the actual people, I give them an A+.
    In terms of their system and how they process things, they get a big fat F.   The very idea that I sent back a phone with accessories and their warehouse only registered the return of the phone pretty much says that there is something fishy going on there at the warehouse.   And it took an hour to sort this out so far and counting.
    The thing that bugs me about Verizon is how complicated it is to get everything straightened out.  
    Right now, they are trying to sort out the activation fee - I already have been charged one and now they are trying to figure out if i have to pay another one.   Another 15 minutes just on that.
    Everything has been resolved.   Thankfully, Verizon's saving grace is that their reps are nice people.

  • Newbie problem with new objects and tools.

    in chapter 4 of the after effects essential training series from Lynda.com in the section about controlling animation with the pick whip. when he applies the null object the red bar immediately populates (correct usage?) the timeline to the right. when i apply the null object it's hidden to the left, under all the layer info, and i need to drag it out into view.
    ive found that whenever i have a problem, e.g., im using a tool and nothing is happening, it always comes down to this same thing: the layer is not with everything else and i need to drag it out into view.
    not only am i new to mac, but im only marginally literate and a total newb to anything more advanced than iphoto, any advice would be appreciated.

    Rick Gerard wrote:
    I'm not understanding what you are asking.
    If you have a layer in the timeline, a null, and the parenting column is visible you simply click on the pickwhip next to the layer and drag it to the name of the null layer. The Parenting box now says that Layer 1 is connected to Null 1.
    Now, when you move the null, the layer will move.
    i understand what they do and how to set them up.
    my question is more specific, but also applies more generally to other tools and layers. when Ian creates his null layer in the video (as well as other layers ive seen him create) the red bar that represents his null layer immediately appears in the timeline with the begining of the red bar at the left end of the work area. it is fully visible. when i create one the file shows up in the list of layers on the panel to the left of the time line, but it is not visible in the comp window and the red bar is hidden to the left side of the visible timeline to where you have to click its right end and drag it out from behind the panel on the left.
    this has happened with other layers ive created using other tools and before i figured out what to look for it was very frustrating. now, whenever i can't find something, or a tool that im using isnt doing anyhting (besides creating more and more layers) ive learned to look and see if theyre just hidden. it seems like it's probably a setting. but clearly, something is different: he creates a null layer and it appears in the timeline, and mine appear slid to the left.

  • Experience with Solaris 10 and 11 on Oracle VM 3.0.3?

    Greetings,
    We are trying to confirm with "first hand experience" how/if Oracle VM 3.0.3 supports Solaris 10 and 11 x86. For example, a) does OVM support Solaris as advertised? b) if yes, are there caveats excluding the HVM limitations? c) have you been able to use the Solaris Templates?
    Thank you,
    Roddy

    I ran into the same problem. Tried manually create software raid using the shell (ctrl F2 or F4), but it keeps shutting down the software raid and anaconda would die.
    Then I tried to use single disk but with logical volume (also set up manually from the shell). But after the installation, the system would not boot. Looking at the init script content in the initrd, I don't think it supports lvm.
    So I went back to square one, using the one disk with no lvm, but customized partition size. Will use raidder to build a raid 1 after this.
    Base on this experience installing the server, and also the VM Manager, I think Oracle VM is seriously going downhill. I can't believe how they would hire anyone that writes such poor quality installation scripts and package. Try mounting the VM Manager ISO under /tmp/mnt and install from there and you will see what I mean.
    ling

  • Experiences with Nikon D750 and Aperture

    Hi,
    a few weeks ago I bought a Nikon D750 – my camera before was a Nikon D700.
    All in all I am disappointed about the quality of my photos with the D750 in Aperture – they’re all 14bit RAWs without compression. The problems e. g. are:
    - Photos shot with the D750 at low light conditions at home are too much colour saturated - especially there’s too much red in it.
    - Contrast is much too high.
    - Dark areas are often black without details.
    I looked at many of these photos in Adobe’s Lightroom. The RAW intepretation seems a bit better (especially regarding contrast and dark areas) but has other problems (e. g. with skin tones).
    I made a few comparision photos with my D750 and the D700. All in all the D700 makes a much better job in home light conditions. You can see more details in the photos, colour saturation and contrast are better.
    Can anyone confirm these problems? At the moment I am not sure if it is a problem of the D750 (which is reviewed everywhere so excellent!) or of the CameraRAW interpretation of Apple. Will future Camera RAW updates mabye have better interpretations?
    Regards, Ulf

    To illustrate, what I mean: I shot today a photo (nothing special) with my lensbaby fisheye lens in low light.
    That’s the way the photo looks like in Aperture 3.6 (I tried to improve it a bit):
    In Apertue the photo has to much contrast. But reducing it makes the photo ugly. You can also see that dark parts of the photo (not the black) tend to be brown and the transition between black and brown looks terrible.
    The Same photo processed and also a bit improved with Lightroom 5.7 looks a lot better:
    You can see a lot more details - details you can never get with Aperture.
    In my opinion Apple’s camera raw for the Nikon D750 makes a very bad job. A lot of my photos can not good be processed in Aperture.
    Does anyone with the D750 make same experiences?

  • Any experience with Illustrator CS2 and MBP?

    Hi Everyone!
    I read a lot about the performance of Photoshop CS2 with Rosetta, but I would like to know how the Illustrator CS2 works with the new MacBook Pro.
    Thanks for your comments!
    Gus

    I work in prepress at a commercial printer. I have been testing out my MBP 1.8GHz with all CS1 and CS2 apps as well as Quark Xpress 6.5. I also only have 1GB of ram at the moment (second 1GB will arrive today). Anyway all the apps run slower than on my G5 Dual 1.8GHz. That may be due to the slower hard drive speed and lower amount of ram. Most apps take a little longer to launch, but once up and running perform just fine. Acrobat 6 and ID CS2 take the longest to launch. I haven't had any crashes or kernal panics with any of the apps. Quark also works well. Still a bit slow, but very fuctional once up and running. Also Citrix for Mac works as does ApogeeX client 1.27. Overall I have had a better experience with this machine than DC 2.0 GHZ G5. I had kernal panics from the beginning the MBP has had no problems so far. If you need to use a MBP fro serious design or prepress upgrade as much as possible. ie 7200RPM drive and 2GB of ram.

  • Any experience with Object Types and Forms6i / 9i ???

    Has anyone got any experience in working with Object Types and Object Views together with Forms 6i or 9i???
    TIA
    Rob Zoeteweij

    Hi AnneCarmen,
    Check this small video, http://project02.businesscatalyst.com/Jing/2012-07-13_0508.swf
    This is just an example where I am trying to demonstrate how the html embedded into the frame sticks to only one image and not to all the other images. Also, how to keep the thumbnails. Under menu options you can modify the transition and speed option as per your need.
    Regards,
    Abhishek Maurya

  • Experience with "Auto-Complete and Go-Less Prompts"

    Hi all,
    does anyone have experiences with editing instanceconfig.xml for auto-completing prompts?
    Is it buggy? Or are there any kinds of risks?
    reference: http://www.peakindicators.com/media_pi/Knowledge/oracle%20bi%2011g%20-%20applying%2011.1.1.6.2%20bp1%20-%20windows.pdf
    Please have a look at page 10, it describes how to edit the xml
    Thanks

    Hi Frank,
    I understand the single matching value and expecting move out in single tab for perfect match only. inputComboboxListOfValues selects the entry in one tab [even for single matching value] and user has to press another tab to go to next attribute.
    Are you suggesting that it actually moves out to next field in single tab for "single matching value"?
    Thanks,
    Jai

  • Experiences with windows vista and latest FATALITY drive

    This post is created? for people to post experiences with windows vista 32 bit and the latest fatality drivers!!?Tks?

    I have Fatality FPS edition, and I find that the volume keeps fluxuating in media player?during playback of music?with vista. Anyone have any idea how to fix this?

Maybe you are looking for

  • Google calendar iPhone sync issue

    Unable to uncheck a calendar in the iPhone google calendar sync menu. Keep receiving notifications linked to this calendar even though I have disabled notifications.

  • Finder and Spotlight no longer working

    Hi guys, Following the latest 10.4.3 update both Spotlight and Finder are refusing to work - no results are being returned, even having re-installed the 10.4.3 Common update. I have followed instructions to restart the Spotlight index/database, howev

  • My computer rebooted and now I have an older itunes library!

    My computer rebooted a couple of days ago and when I logged back in it looked like itunes was starting from scratch. My library opened up and I saw there was music there and didn't pay much attention until today. I tried to play a song and it couldn'

  • BO XI Portal Integration

    Hi Folks, is try to setup an evaluation scenario on the integration of BO Reports into Enterprise Portal according to this document: http://help.sap.com/businessobject/product_guides/boexir3/en/xi3_bip_sap_user_en.pdf chapter "Managing the SAP Enterp

  • Photoshop crashes, unable to perform Software Update, general slowness.

    I am writing on behalf of a colleague at work. He is using a brand new iMac 2.4 GHz Intel Core 2 Duo with 3GB 800 MHz DDR2 SDRAM. It is running Mac OS X 10.5.5 and he is trying to update to 10.5.6 to correct some problems he's been encountering. He h