My experience with the Sun and IBM JVMs has uncovered two key differences for me. There are likely others, but these ones are the most important to what I've been doing recently. Hope it helps.
Memory Management
The IBM and Sun JVMs have drastically different memory models, which can significantly affect garbage collection performance. The Sun JVM uses a generational garbage collector, which performs better for short-lived objects and reasonably well if you allocate a lot of memory to your JVM (using the -Xms and -Xmx flags). It's typical when using the Sun JVM to use the same values for the minimum and maximum heap sizes (e.g. -Xms1536m -Xmx1536m). This works well for the generational GC model because the Sun JVM will do minor garbage collections periodically, sweeping only a small portion of the whole heap.
The IBM JVM, by default, does not use a generational garbage collector. You can instruct the IBM JVM to use one as a command line switch (-Xgcpolicy:gencon) but this is not the default. Keeping the default non-generational garbage collector can improve performance for some applications, but YMMV. With the IBM JVM, it's important to set -Xms as low as possible and allow the JVM to grow the heap up to -Xmx as needed. If you set both to the same value, as you might for the Sun JVM, you'll have very high application performance up to the very first "Stop the world" garbage collection. Then your application will hang for potentially minutes while it scavenges the heap.
Troubleshooting
I'm a huge fan of the IBM JVM's thread dumps. The Oracle/Sun ones are a lot easier to read if you're looking at them as a human, but I haven't found anything better than the IBM Thread and Monitor Dump Analyzer for the Oracle JVM. The IBM tool has been invaluable for me in troubleshooting performance problems.
I'm aware of Samurai, which is a roughly equivalent tool for Oracle JVM thread dumps, but it doesn't have as full a feature set as the IBM equivalent.