OBIEE 11g best practice - when to use the new "presentation hierarchies"

Hi, maybe a dumb question, but what are the rules of thumb for when to expose a presentation hierarchy to end users. Obviously this must be done when using a parent / child hierarchy, as there is no level info that would allow drilling the "10g" way. However, I'm not so sure what the bonuses / drawbacks are when using level based hierarchies.
I have noticed that the SQL seems more complex and less performant when using the hierarchy. As an example, I have a simple dimension (business unit) that has a hierarchy with a total level, and 3 members in the detail level.
If I create this as a 10g style report, I add business unit column, dollar amounts, and a table total (so I can see grand total amounts), the SQL launched looks like this:
WITH
SAWITH0 AS (select sum(1) as c1,
sum(T45393.SPEND_AMOUNT) as c2,
T45273.BUSINESS_UNIT_CODE as c3
from
DIM_BUSINESS_UNIT T45273,
FACT_SPEND_ANALYTICS T45393
where ( T45273.BUSINESS_UNIT_KEY = T45393.BUSINESS_UNIT_KEY )
group by T45273.BUSINESS_UNIT_CODE)
select distinct 0 as c1,
D1.c3 as c2,
D1.c2 as c3,
D1.c1 as c4,
0 as c5,
0 as c6
from
SAWITH0 D1
This is simple and efficient, and OBIEE "knows" the grand total can be calculated by simply summing the business unit totals together.
But if I create this as an 11g style report using the presentation hierarchy, with all members selected (so I can get the detailed business units plus the grand total), the SQL is much less efficient, it actually fires two queries - one for the detail level, another for the total level:
WITH
SAWITH0 AS (select distinct sum(1) as c1,
sum(T45393.SPEND_AMOUNT) as c2
from
FACT_SPEND_ANALYTICS T45393)
select distinct 0 as c1,
NULL as c2,
'All Business Units' as c3,
1 as c4,
NULL as c5,
D1.c2 as c6,
D1.c1 as c7
from
SAWITH0 D1
AND
WITH
SAWITH0 AS (select sum(1) as c1,
sum(T45393.SPEND_AMOUNT) as c2,
T45273.BUSINESS_UNIT_CODE as c3
from
DIM_BUSINESS_UNIT T45273,
FACT_SPEND_ANALYTICS T45393
where ( T45273.BUSINESS_UNIT_KEY = T45393.BUSINESS_UNIT_KEY )
group by T45273.BUSINESS_UNIT_CODE)
select distinct 1 as c1,
D1.c3 as c2,
'All Business Units' as c3,
1 as c4,
D1.c3 as c5,
D1.c2 as c6,
D1.c1 as c7
from
SAWITH0 D1
Not only does this fire off two queries - but it doesn't use the existing cache for the "detail" level generated by the "non-hierarchy" query.
So I'm trying to figure out pros and cons of exposing hierarchies for end users. I've come up with the following:
Pros:
- Users can click on the + and - signs to drill / collapse individual members while still keeping all other members on the report
Cons:
- Queries fired at all levels, doesn't seem like it's smart enough to figure out it doesn't need to send a level query to database if all children were already queried
- In 10g if I want to expand all children (i.e. drill down all quarters to the month level) I could just click on the column header. Doesn't appear to be any way to do that using the hierarchical drills, I have to click each and every one to see all the months.
Any insights would be appreciated!
Thanks,
Scott

Hi, no, I haven't tried setting options such as "report based totals" - simply because I wouldn't want an option that requires users to tweak settings on each and every report they create to get stuff working efficiently.
Thanks,
Scott

Similar Messages

  • When I use the new Pages on my iPad, I can't open it on my new computer. It tells me that I must download the new Pages to see the Pages document, but when I try to download the new pages to my computer it tells me all apps are up to date.

    When I use the new Pages app. On my IPod  to type documents, I can't open them on my new computer. It sends me a message that I have to download a newer version of pages to see the Pages document. When I try to do that it tells me all my apps are up to date and will not allow me to upgrade the pages on my iMac.
    Any suggestions?

    What level of OS X is installed on your Mac (your profile is incomplete)?
    Barry

  • I share a macbook with my other half and we both use it for our iphones. When syncing using the new software I now have all of her and my contacts on my phone.  I don't want her contacts! How do I get rid?

    I share a macbook with my other half and we both use it for our iphones. When syncing using the new software I now have all of her and my contacts on my phone.  I don't want her contacts! How do I get rid?

    Hi,
    You have 2 solutions:
    1 - You can use 2 differents icloud account
    2 - You use the same account but you don't sync yours contacts.
    You configure that in  Settings > icloud
    You activate or desactivate what you want.
    Have a nice day.

  • My computer crashed and I have to buy a new one.  What happens to my Contacts, Photos, etc when i use the new computer?  I do not have an iTunes backup.

    My computer crashed and I have to buy a new one.  What happens to my Contacts, Photos, etc when i use the new computer?  I do not have an iTunes backup.

    Do you have the iCloud set up?  If you don't you need to buy a third party software that will do it for you when you plug your phone into the new computer.  You can google: iPad/iPhone/iPod to Computer Transfer.  You have to pay for the software but it's really a life saver and you get free updates for life.  It'll save you a lot of pain and suffering in the future.  I've used it many times.

  • When to use the new file based content repository

    In Service Pack 4 there's a new implementation of the CMSPI interfaces which is configured by using the following implementation class:
    com.bea.content.spi.internal.FileSystemRepositoryImpl
    When should one use this new file based repository versus the existing one (configured by using the following class: com.bea.content.spi.internal.RepositoryImpl).
    I've read the edocs, but it doesn't state when to use this new one compared to the previous implementation.
    We consider using a third party content repository, but for the time being we will use the content repository provided by BEA.
    Trond Andersen, Invenia AS, +4798290811

    use the new keyword when you don't have an instance of that object in memory that you want to use.  For example...
    if you have an object already in memory that is holding a property with a "CamelQuery" object, then you can say 
    var query = myobject.Query;
    however, if you have to write the query, or instantiate the object from nothing, then you need to use the "new" keyword.  A good example is SPSite object...
    if you can get a new SPSite object by either "newing one up and passing the URL" or getting the farm and getting a site from that object. 
    using(SPSite site = new SPSite("url to my site"))
    now I can use site.
    //or
    SPSite = myWebApp.Sites[0];
    // this gives you site at index 0 of current webApp
    most of the time in SharePOint you will be using the "new" keyword to open site collections, and then getting your subsites from there. BE CAREFUL using the "new" keyword. If you "new" up an object that is iDisposable... you
    MUST dispose of that, but if you use that same object but it comes from the "current context", you mustn't dispose of it.
    //dispose of this by using statement
    using(SPSite site = new SPSite(<url>))
    //do stuff
    //after this bracket it is disposed.
    //do not dispose of this:
    SPSite mysite = SPContext.Current.Site;
    //unpredictable behavior can occur because you will still need references to your current site.

  • When I use the new ColorSync icc Profile!

    Wwhen I use the new ColorSync icc Profile!
    the New Settings will be reset to Default Profile
    After Rebooting My Mac Mini 2010 with Mac OS X 10.6.7!
    Why? My LCD is Chimei 22sh-l with HDMI output.
    Thanks!

    The Critical Problem was solved by buying a Apple DisplayPort VGA Cable[New Taiwan Dollar :1,000]
    link http://store.apple.com/us/product/MB572Z/A?fnode=MTY1NDA3Ng&mco=MTA4NDU0NjA
    The Fact is that the Mac mini Bundled HDMI to DVI would made my ColorSync Profile to Default everytime I
    Reboot or logout my mac mini.
    Also, if you Rrealize the boot-up mac mini Superdrive DVD is noisy! You could just insert a DVD inside, then When you boot-up your Mac mini next time, the noise is Vanished ^^ & Happy
    So, Apple just accept its made Display Protocol for ColorSync to Adjust the Monitor Color, befroe I`ve done this,
    I  thought I have to buy a Apple Cinema Display or Macbook, then I can Get that kind of Benefits!
    But Hopefully, My problem is just solved & Happy .

  • Using my Actiontec modem's wifi, it doesn't find my new airport express.  When I use the new airport express network I created error message says ip address is wrong.  Help setting this new airport express up

    Using my Actiontec modem's wifi, it doesn't find my new airport express.  Using the new airport express network I just set up it says the ip address is invalid.  What can I do to overcome this blinking amber light and error messages?

    You need to begin by configuring the AEX to Join an existing network (Bridge Mode.) You can then connect to it using Wi-Fi, but the AEX will not extend your existing network.
    If you can connect the AEX to your existing router using Ethernet, then you could use it to Create a new network. Otherwise, if you want to extend your existing network you will need to get a Wireless Access Point - WAP - from a non-Apple product like D-Link.

  • Obiee 11g : Best practice for filtering data allowed to user

    Hi gurus,
    I have a table of the allowed areas for each user.
    I want to show only the data facts associated with these allowed areas.
    For instance my user scott can see France and Italy data.
    I made a variable session. I put this session variable in a filter.
    It works ok but only one value (the first one i think) is taken in account (for instance, with my solution scott will see only france data).
    I need all the possible values.
    I tried with the row wise parameter of the variable session. But it doesn't work (error obiee).
    I've read things on internet about using stragg or valuelistof but neither worked.
    What would be the best practice to achieve this goal of filtering data with conditions by user stored in database ?
    Thanks in advance, Emmanuel

    Check this link
    http://oraclebizint.wordpress.com/2008/06/30/oracle-bi-ee-1013332-row-level-security-and-row-wise-intialized-session-variables/

  • Obiee 11g and custom j2ee app using the same cookie name

    Hi,
    I wrote a same j2ee web application. i'am using authentification through a realm configured in the web.xml.
    This web app is deployed in the same weblogic than obiee 11g. What i want to do is to embed my application in a dashboard using an iframe tag, and use the same login from analytics to my custom web app.
    In this article http://docs.oracle.com/cd/E11035_01/wls100/security/thin_client.html#wp1039551, it is said that by default, all web apps in the sames weblogic server are using the same cookie name so that they share authentification between them. However, i have read in the web that analytics in obiee 11g is using a cookie with the name "ORA_BIPS_NQID".
    In the weblogic.xml of my custom application, i set the cookie-name parameter to ORA_BIPS_NQID. However, in the dashbord, it still prompt for authentification to my custom web app.
    How can we share authentification between analytics and a custom web app in the same weblogic ?
    NB : I dont want to pass the username et password through the url.
    Thanks.

    By default, if you don't specify a cookie-name in the weblogic.xml configuration file, the weblogic server create a cookie named JSESSIONID for your application. For exemple, if two applications use the default configuration, both of them will use the same cookie name which is JSESSIONID. In this case, when you log in the first application, your are automaticaly logged in the second application with the same credentials. I have already test this kind of integration and it works perfectly. You only need that the two applications are deployed in the same weblogic server.
    Now, i want to have the same behaviour between obiee 11g and my custom application deployed in the same weblogic server. I read somewhere in the web that obiee 11g presentation service (analytics) is configured with a cookie-name value = "ORA_BIPS_NQID". So in the weblogic.xml configuration file of my web app, i specify a cookie-name value = "ORA_BIPS_NQID" to have the same cookie-name between the two application. But, it still not work. It prompt for authentification in the dashboards.
    I now, that such an integration is possible, because the other bi applications (mapviewer, bipublisher,...) are actually other web applications. However when using, for exemple, maps in dashbords, the mapviwer application automaticaly user the credentials of the user connected in analytics.

  • Best practice when using Tangosol with an app server

    Hi,
    I'm wondering what is the best practice when using Tangosol with an app server (Websphere 6.1 in this case). I've been able to set it up using the resource adapter, tried using distributed transactions and it appears to work as expected - I've also been able to see cache data from another app server instance.
    However, it appears that cache data vanishes after a while. I've not yet been able to put my finger on when, but garbage collection is a possibility I've come to suspect.
    Data in the cache survives the removal of the EJB, but somewhere later down the line it appear to vanish. I'm not aware of any expiry settings for the cache that would explain this (to the best of my understanding the default is "no expiry"), so GC came to mind. Would this be the explanation?
    If that would be the explanation, what would be a better way to keep the cache from being subject to GC - to have a "startup class" in the app server that holds on to the cache object, or would there be other ways? Currently the EJB calls getCacheAdapter, so I guess Bad Things may happen when the EJB is removed...
    Best regards,
    /Per

    Hi Gene,
    I found the configuration file embedded in coherence.jar. Am I supposed to replace it and re-package coherence.jar?
    If I put it elsewhere (in the "classpath") - is there a way I can be sure that it has been found by Coherence (like a message in the standard output stream)? My experience with Websphere is that "classpath" is a rather ...vague concept, we use the J2CA adapter which most probably has a different class loader than the EAR that contains the EJB, and I would rather avoid to do a lot of trial/error corrections to a file just to find that it's not actually been used.
    Anyway, at this stage my tests are still focused on distributed transactions/2PC/commit/rollback/recovery, and we're nowhere near 10,000 objects. As a matter of fact, we haven't had more than 1024 objects in these app servers. In the typical scenario where I've seen objects "fade away", there has been only one or two objects in the test data. And they both disappear...
    Still confused,
    /Per

  • Best practice when modifying SAP Standard Development Component

    Hello Experts,
    What is best practice when modifying SAP Standard Development Component (Java Web Dynpro)? Iu2019m looking for the best method to do modifications to SAP Standard DC so that my changes will be kept (or need low maintenance) after a new service package (or EHP) is applied.
    Thanks,
    Kevin

    Hi,
      'How to use Busiess Packages in Enterprise Portal 6.0' is available in this link.
    http://help.sap.com/bp_epv260/EP_EN/documentation/How-to_Guides/misc/Using_Business_Packages.pdf
    Check out for the best practices.
    Regards,
    Harini S

  • Books / links on best practices when writing on-line Help

    Hi everyone
    Not sure were to place this topic...
    I have not posted in here for ages...
    I am a RoboHelp user and I am looking for one or several
    books about best practices when writing on-line help. For examples,
    what are the "rules" or "do's" and "don'ts" for CSS, topic linking,
    number of clicks, links within a topic, index building, etc.
    Just wondering if some people on this forum know about some
    good books where all of the rules or do's would be compiled?
    Thanks in advance for any input.
    Regards

    KeepItSimple,Stupid!
    That is, just because there are neat things like drop-down
    text, marquees, and such, doesn't mean you should use them.
    Stick to the basic HTML fonts and colors (use the
    w3schools web site for all
    things HTML and CSS.
    Instead of styles, create your lists by selecting Normal
    paragraphs and formatting with the Bullet and Number toolbar
    buttons.
    Keep your tables as simple as possible (try not to nest them
    and have all sorts of row and column spans, and try to avoid lists
    and figures, if you can). Also, break up very long tables into
    functional groupings with introductory headings.
    Use
    Peter Grainge's web
    site and
    Rick
    Stone's web site for all the best workarounds and diagnostics.
    Good luck,
    Leon

  • IPhone shuts off when I use the internet on the 3G network & I can't upgrade/restore because of network connection error. Any Help?

    A few months ago, while on the 3G network, my iPhone 3GS starting turning off randomly when I was using safari or an online app and the battery was somewhere around 5-20%. When this happened the only way to get the phone back on was by fully charging it which sometimes took a few hours even. It wasn't a big deal at the time because it was infrequent and while the phone was at a low battery %. However, in the past few months, around the time I upgraded to iOS 5.1 it started happened more and more often and at higher and higher battery percentages. It is now at a point where my phone shuts off every time I connect to the 3G network regardless of what my battery life is. I have called Rogers several times to complain about this and I have been told it is because of the battery for the most part but I don’t buy it; the problem has got to be more significant than the battery alone because I can listen to music and send texts at anytime and fully use the internet when I am connected to Wi-Fi. I more recently talked to someone in tech support from Rogers who said my phone cannot support the iOS 5.1 software and that is why it is crashing. They also asked if my phone was heating up more now than in the past and it is. They said this was further evidence that my phone was couldn't handle the new software and was basically on overload.  I was told to the best solution was to "Back Up" my iPhone then do a full "Restore". Here is where my next problem comes along. I cannot "Restore" my iPhone without doing an upgrade and every time I attempt to "Upgrade & Restore" an error message pops up that says "There was a problem downloading the software for the iPhone "...". The network connection timed out/was reset. -Make sure your network settings are correct and your network connection is active, or try again later". I have followed all of the protocol that is readily available online to address this problem but still no success. I disabled my firewall and anti-virus programs, I have ensured my connection is active and stable, I have upgraded to the newest iTunes, I have uninstalled iTunes and all apple programs in the correct order then reinstalled iTunes, I have disabled my DNS cache. Nothing works.
    If you have any advise whatsoever please share as it would be greatly appreciated.
    Thanks

    I was actually able to upgrade to the newest software, iOS 5.1.1 without connecting to my computer/iTunes but rather directly through my phone when I was home on Wi-Fi. After the upgrade I plugged my phone into a different USB port at the back of my computer and was able to do a full restore. I really don't think the USB port had anything to do with it because I use the same front USB port all the time with my external hard drive and other devices wuth no problems at all; regardless of what the actual solution was, I am now able to connect to iTunes and upgrade/restore without any problems so that half of my problem is resolved.
    I have yet to leave my house since doing the upgrade/restore so I am not sure if the problem with my phone crashing when I use the interent on the 3G is still an issue. I will test it today and tomorrow and give you an update.
    Thanks

  • Photoshop crashes when I use the marquis tool.

    Photoshop crashes when I use the marquee tool. As soon as I make a selection it crashes my computer (every time!) by either rendering the screen black or sometimes all white. I have to force shut down and restart. I'm using MacBook Pro OS 10.6.8 with Photoshop CS6. I am not in a position to update OS at this time. Is there anything I can do to work around this problem? It's extremely time-consuming and infuriating.
    Here's the crash report, if anyone is able to make sense of this, I'd sure appreciate knowing what the problem is.
    Interval Since Last Panic Report:  335913 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    A9EE1760-D467-49BB-B2EC-A100E2095A2E
    Mon Dec 30 15:09:00 2013
    panic(cpu 0 caller 0x9d4c9b): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0x7f494000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c922188 : 0x21b837 (0x5dd7fc 0x5c9221bc 0x223ce1 0x0)
    0x5c9221d8 : 0x9d4c9b (0xbea28c 0xc5a800 0xbf8e60 0x0)
    0x5c922278 : 0xaef608 (0x8f97c04 0x9338004 0x100 0xcb42b6)
    0x5c9222c8 : 0xae6601 (0x9338004 0x100 0x5c9222f8 0x9c4778)
    0x5c9222f8 : 0x16d49a6 (0x9338004 0x100 0x438004ee 0x5c922308)
    0x5c922438 : 0xb0e2b5 (0x9338004 0x9337004 0x0 0x0)
    0x5c922478 : 0x9dde7c (0x9338004 0x9337004 0x0 0x0)
    0x5c922518 : 0x9da55b (0x0 0x9 0x0 0x0)
    0x5c9226c8 : 0x9dc58f (0x0 0x600d600d 0x702b 0x5c9226f8)
    0x5c922798 : 0xc9feae (0xc1d0004d 0xbfef0033 0xbfef0034 0x857c)
    0x5c922808 : 0xcaf734 (0xa1a5a00 0x1473ec80 0x8 0x0)
    0x5c922828 : 0xcd4322 (0x1473ec80 0xb 0x5c922848 0x89e0)
    0x5c922858 : 0xcd4b3d (0x986c000 0x0 0x5c92287c 0x0)
    0x5c922888 : 0xcb4d79 (0x986c000 0x77890080 0x0 0x33)
    0x5c9228d8 : 0xc76d0c (0x4651a000 0x0 0x0 0x3)
    0x5c922948 : 0xc7640f (0x4651a000 0x0 0x2 0x3)
    0x5c922978 : 0xc6c05f (0x4651a000 0x0 0x2 0x46255000)
    0x5c922ab8 : 0xca55d8 (0x46255000 0x1 0x5c922bcc 0x5c922bc8)
    0x5c922b68 : 0xc67fe1 (0x46255000 0x1 0x5c922bcc 0x5c922bc8)
    0x5c922be8 : 0x56da06 (0x46255000 0x0 0x5c922e3c 0x5c922c74)
    0x5c922c38 : 0x56e2a5 (0xcf6720 0x46255000 0x8981a88 0x1)
    0x5c922c88 : 0x56eb59 (0x46255000 0x10 0x5c922cd0 0x0)
    0x5c922da8 : 0x286638 (0x46255000 0x10 0x8981a88 0x1)
    0x5c923e58 : 0x21dbe5 (0x8981a60 0x1103d5a0 0x1fd7e8 0x5d43)
    0x5c923e98 : 0x210a86 (0x8981a00 0x0 0x954dc70 0x98d6620)
    0x5c923ef8 : 0x216f84 (0x8981a00 0x0 0x0 0x0)
    0x5c923f78 : 0x295c57 (0x8cc0188 0x0 0x0 0x0)
    0x5c923fc8 : 0x2a256d (0x8cc0184 0x1 0x10 0x0)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.4.0)@0xc5c000->0xd12fff
                dependency: com.apple.NVDAResman(6.4.0)@0x96e000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x961000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x93f000
             com.apple.nvidia.nv50hal(6.4.0)@0x159e000->0x19b2fff
                dependency: com.apple.NVDAResman(6.4.0)@0x96e000
             com.apple.NVDAResman(6.4.0)@0x96e000->0xc5bfff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x961000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x93f000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 4671247742528
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI    4.2.0 (addr 0x1431000, size 0x65536) - last unloaded 114471438805
    loaded kexts:
    com.apple.driver.AppleHWSensor    1.9.3d0 - last loaded 45127423025
    com.apple.driver.IOBluetoothA2DPAudioDriver    2.4.5f3
    com.apple.driver.AppleMikeyHIDDriver    1.2.0
    com.apple.driver.AGPM    100.12.31
    com.apple.driver.AppleHDA    2.0.5f14
    com.apple.driver.AppleUpstreamUserClient    3.5.7
    com.apple.driver.AppleMCCSControl    1.0.20
    com.apple.driver.AppleMikeyDriver    2.0.5f14
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleIntelHDGraphics    6.4.0
    com.apple.driver.AppleIntelHDGraphicsFB    6.4.0
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0a1
    com.apple.GeForce    6.4.0
    com.apple.driver.AppleGraphicsControl    2.10.6
    com.apple.driver.AppleLPC    1.5.1
    com.apple.kext.AppleSMCLMU    1.5.2d10
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AppleUSBTCButtons    201.6
    com.apple.driver.AppleUSBCardReader    2.6.1
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController    303.8
    com.apple.iokit.SCSITaskUserClient    2.6.8
    com.apple.BootCache    31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage    1.6.4
    com.apple.driver.AppleFWOHCI    4.7.3
    com.apple.driver.AppleUSBHub    4.2.4
    com.apple.driver.AppleEFINVRAM    1.4.0
    com.apple.driver.AppleSmartBatteryManager    160.0.0
    com.apple.driver.AppleAHCIPort    2.1.7
    com.apple.driver.AirPortBrcm43224    428.42.4
    com.apple.iokit.AppleBCM5701Ethernet    3.0.5b8
    com.apple.driver.AppleUSBEHCI    4.2.4
    com.apple.driver.AppleACPIButtons    1.3.6
    com.apple.driver.AppleRTC    1.3.1
    com.apple.driver.AppleHPET    1.5
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.3.6
    com.apple.driver.AppleAPIC    1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient    142.6.0
    com.apple.security.sandbox    1
    com.apple.security.quarantine    0
    com.apple.nke.applicationfirewall    2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement    142.6.0
    com.apple.driver.DspFuncLib    2.0.5f14
    com.apple.driver.AppleProfileReadCounterAction    17
    com.apple.driver.AppleProfileTimestampAction    10
    com.apple.driver.AppleProfileThreadInfoAction    14
    com.apple.driver.AppleProfileRegisterStateAction    10
    com.apple.driver.AppleProfileKEventAction    10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP    2.0.3
    com.apple.iokit.IOSurface    74.2
    com.apple.iokit.IOBluetoothSerialManager    2.4.5f3
    com.apple.iokit.IOSerialFamily    10.0.3
    com.apple.iokit.IOAudioFamily    1.8.3fc2
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.0.5f14
    com.apple.iokit.IOHDAFamily    2.0.5f14
    com.apple.iokit.AppleProfileFamily    41
    com.apple.driver.IOPlatformPluginFamily    4.7.0a1
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleBacklightExpert    1.0.1
    com.apple.driver.AppleSMC    3.1.0d5
    com.apple.nvidia.nv50hal    6.4.0
    com.apple.NVDAResman    6.4.0
    com.apple.iokit.IONDRVSupport    2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController    2.4.5f3
    com.apple.iokit.IOBluetoothFamily    2.4.5f3
    com.apple.iokit.IOSCSIBlockCommandsDevice    2.6.8
    com.apple.iokit.IOUSBMassStorageClass    2.6.7
    com.apple.driver.AppleUSBMultitouch    207.7
    com.apple.iokit.IOUSBHIDDriver    4.2.0
    com.apple.driver.AppleUSBMergeNub    4.2.4
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.6.8
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.6.1
    com.apple.driver.XsanFilter    402.1
    com.apple.iokit.IOAHCISerialATAPI    1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.6.8
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IOUSBUserClient    4.2.4
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IO80211Family    320.1
    com.apple.iokit.IONetworkingFamily    1.10
    com.apple.iokit.IOUSBFamily    4.2.4
    com.apple.driver.AppleEFIRuntime    1.4.0
    com.apple.iokit.IOHIDFamily    1.6.6
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    6
    com.apple.driver.DiskImages    289
    com.apple.iokit.IOStorageFamily    1.6.3
    com.apple.driver.AppleACPIPlatform    1.3.6
    com.apple.iokit.IOPCIFamily    2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0

    That is not an application crash - that is a kernel panic, which means there is a hardware defect, a bug in the OS or a bug in a low level driver (like parts of the video driver).  Kernel panics are not caused by applications, but by defective hardware or bugs in the OS and drivers.
    Resetting prefs may avoid the settings that triggered the crash - but the cause remains in the hardware, OS, or driver code.
    Since Apple is not going to update the drivers in 10.6.8, your best bet is to update the OS when you can, and hope the new drivers are in better shape.  Unfortunately, it is also possible that you just have a bad GPU or video RAM - and fixing that would require replacing the video card or system (in the case of laptops or all-in-one machines).

  • Can you use the same charging cable for both an iPhone and an IPad or are they different?  When I use the charging cable for my iPhone on my Ipad, it doesn't charge.

    Can you use the same charging cable for both an iPhone and an IPad or are they different?  When I use the charging cable for my iPhone on my Ipad, it doesn't charge.

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
     Cheers, Tom

Maybe you are looking for