Poor Performance of OBIEE url after adding BI Publisher link in a page

Hi Gurus,
I've added a BI Publisher report link in my existing OBIEE dashboard page.
After adding this BIP link,the performance of the obiee url becomes very poor.....and it's taking around 10-15 to open the page.
Earlier it use to open with in 5-10 secs.
Is there any resolution for this.
Any help will be more appreciated.
Thanks,
Pramod.

I have been able to improve processing speed up to
6-8 times with these two techniques:
1. A separate trickle thread was created that would
periodically call DbEnv::memp_trickle. This works
especially good on multicore machines, but also
speeds things up a bit on single CPU boxes. This
alone improved speed from 2K rec/sec to about 4K
rec/sec.Hello Stone,
I am facing a similar problem, and I too hope to resolve the same with memp_trickle. I had these queries.
1. what was the % of clean pages that you specified?
2. What duration were you clling this thread to call memp_trickle?
This would give me a rough idea about which to tune my app. Would really appreciate if you can answer these queries.
Regards,
Nishith.
>
2. Maintaining multiple secondary databases in real
time proved to be the bottleneck. The code was
changed to create secondary databases at the end of
the run (calling Db::associate with the DB_CREATE
flag), right before the reports are generated, which
use these secondary databases. This improved speed
from 4K rec/sec to 14K rec/sec.

Similar Messages

  • Poor performance on admin console after adding 1k+ teams and member profile

    We run v7sp3p2 (MS) now but even back on v5.1 see degraded performance in form of response times over 60 seconds when browsing security hierarchy in admin console after adding over 1000 teams and member access profiles.  We need the granularity in access for our many users.  Does anyone know any tricks to prevent the glacial and disappointing response times while maintaining the necessary security?  This behavior reflects poorly on the product's scalability.
    Thanks,
    Erik

    Sorin, I want to make sure I understand your recommendation.
    First, we do have more than 1000 users.  Each location has a unique team to which their users belong, and each of these teams has a member access profile with corresponding read/write access to the dimension member representing their location.  The users at each location only view data for their own location.
    Is your recommendation to use another interface besides the admin console for accomplishing security updates?
    We have a custom package that uses an API to upload data files with mass updates to security assignments and definitions, but hesitate to use this method for mundane changes for add/remove/change just a few users as this method bypasses the domain validation we get on the front end wherein we can only add users to the domain they correctly belong to.
    To dodge the risk of a bad user/domain matchup we'd like to use front end but it appears to not support our scale well.
    Thoughts on a setting or configuration we could manipulate to resolve the poor performance would be great - what levers can we pull?  If this is all the tool can support we just live with it and pay the cost in wasted man hours over the life of the product...

  • Dblink poor performance with varchar(4000) after upgrade 11g

    Hi
    Since a long time we connected from a 10g database via dblink to another 10g database to copy a simple table with four columns. Tablesize at about 500MB
    column1 (varchar(100))
    column2/3/4 (varchar(4000)).
    After the upgrade of the source database to 11g the dblink performance is poor with the big varchar columns. If I copy (select column1 from ) only column1 then I get the data within minutes. If I want to copy the whole table (select column1, column2, column3, column4 from...) then the performance is poor. It didn't finish within days.
    Does anyone know about dblink issues with 11g and big varchar columns?
    Thank you very much

    Use DBlink to pull data from table(s) using IMPDP:
    #1 Create DBlink in the Target database
    create database link sourceDB1_DBLINK connect to system identified by password10 using 'SourceDB1';
    [update tnsnames.ora appropriately]
    #2
    select DIRECTORY_PATH from dba_directories where DIRECTORY_NAME=’DATA_PUMP_DIR’;
    create DATA_PUMP_DIR directory if not exists
    #3
    impdp system/pwdxxx SCHEMAS=SCOTT NETWORK_LINK=ORCL10R2 JOB_NAME=scott_import LOGFILE=data_pump_dir:network_imp_scott.log
    That's all

  • Performance drop around 20% after adding an index

    Hi,
    I have an xml file (around 300 Kb, 3500 Nodes), the application internal works with dbxml handles but for display purposes I need xpaths for each node. First I was calculating them on request, but for requests with a lot of nodes it just takes too long (also memory usage was a big issue). In order to improve the performance I'm building a kind of metadata file after the import of the original document. The structure of this metadata file is:
    <data>
        <node idx:id="<berkeley dbxml node handle>">
            <xpath>...here some xpath...</xpath>
        </node>
    </data>That improved significantly the memory usage, but the response time is still a little bit below acceptable. Now I've thought, that adding an index to that metadata file would do it, BUT it doubled the response time. In the shell (with a much simpler query) the performance drop is around 20%.
    Query in the shell:
    doc("container.dbxml/test.xml.metadata")/data/node[@idx:id="BgIBBQAO"]/xpathQueryPlan without index:
    <XQuery>
      <DbXmlNav>
        <QueryPlanFunction result="document" container="container.dbxml">
          <OQPlan>D(node-metadata-equality-string,name:http://www.sleepycat.com/2002/dbxml,=,'test.xml.metadata',U)</OQPlan>
        </QueryPlanFunction>
        <DbXmlStep axis="child" name="data" nodeType="element"/>
        <DbXmlStep axis="child" name="node" nodeType="element"/>
        <DbXmlFilter>
          <DbXmlCompare name="equal" join="attribute" prefix="idx" uri="http://www.xyz.de/dnb/index" name="id" nodeType="attribute">
            <Sequence>
              <AnyAtomicTypeConstructor value="BgIBBQAO" typeuri="http://www.w3.org/2001/XMLSchema" typename="string"/>
            </Sequence>
          </DbXmlCompare>
        </DbXmlFilter>
        <DbXmlStep axis="child" name="xpath" nodeType="element"/>
      </DbXmlNav>
    </XQueryQueryPlan with index.
    <XQuery>
      <DbXmlNav>
        <QueryPlanFunction result="document" container="container.dbxml">
          <OQPlan>D(node-metadata-equality-string,name:http://www.sleepycat.com/2002/dbxml,=,'test.xml.metadata',V(node-attribute-equality-string,@id:http://www.xyz.de/dnb/index,=,'BgIBBQAO'))</OQPlan>
        </QueryPlanFunction>
        <DbXmlStep axis="child" name="data" nodeType="element"/>
        <DbXmlStep axis="child" name="node" nodeType="element"/>
        <DbXmlFilter>
          <DbXmlCompare name="equal" join="attribute" prefix="idx" uri="http://www.makrolog.ag/dnb/index" name="id" nodeType="attribute">
            <OQPlan>V(node-attribute-equality-string,@id:http://www.xyz.de/dnb/index,=,'BgIBBQAO')</OQPlan>
            <Sequence>
              <AnyAtomicTypeConstructor value="BgIBBQAO" typeuri="http://www.w3.org/2001/XMLSchema" typename="string"/>
            </Sequence>
          </DbXmlCompare>
        </DbXmlFilter>
        <DbXmlStep axis="child" name="xpath" nodeType="element"/>
      </DbXmlNav>
    </XQueryChanging query to
    doc("container.dbxml/test.xml.metadata")//node[@idx:id="BgIBBQAO"]/xpathslows down the query more than adding the index.
    In my application I've also tried setIndexNodes(true) on my container, the response time increased by factor 10... Am I doing something wrong?
    Please tell me, if you need more information.
    Best regards,
    Wadim
    Berkeley DBXML 2.3.10 (Patches 1-9, Patches 1-2 Berkeley DB)
    Java 1.6
    WinXP Pro SP2

    In my application, without fetching the metadata a query for 10 nodes takes 6ms, with fetching the metadata 6s (so around 1000 times slower).
    I could go down to 4.5s after changing:
    declare variable $METADATA := doc(concat($CONTAINER,'/',$DOCUMENT,'.metadata'))/data;and then in the function:
    distinct-values($METADATA/node[@idx:id = $id]/xpath)to:
    declare variable $METADATA := concat($CONTAINER,'/',$DOCUMENT,'.metadata');and in the function:
    doc($METADATA)/data/node[@idx:id = $id]/xpath I've also seen dbxml:lookup-attribute-index function, but calling ist like this
    dbxml:lookup-attribute-index($CONTAINER,"id")[1]results in:
    # An unexpected error has been detected by Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x1038d7d4, pid=976, tid=3664
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # C  [libdbxml23.dll+0x7d7d4]
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    ---------------  T H R E A D  ---------------
    Current thread (0x00386c00):  JavaThread "main" [_thread_in_native, id=3664]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000054
    Registers:
    EAX=0x00000000, EBX=0x103e7894, ECX=0xbcfa7f2b, EDX=0x65860002
    ESP=0x003eeaf4, EBP=0x1086580c, ESI=0x10732c70, EDI=0x00000000
    EIP=0x1038d7d4, EFLAGS=0x00010206
    Top of Stack: (sp=0x003eeaf4)
    0x003eeaf4:   bcfa7f7b 00000000 10736a18 003eec08
    0x003eeb04:   10747248 104d87d8 109110b4 120ace18
    0x003eeb14:   120ad55c 107c0ffc 10732c70 bcf812d7
    0x003eeb24:   10732c70 003eec3c 003eec9c 00000040
    0x003eeb34:   103e226c 00000000 00000000 00000000
    0x003eeb44:   00000000 00000000 10880c01 00000000
    0x003eeb54:   00000000 00000000 00000000 1089af01
    0x003eeb64:   10880c68 10747c20 00000001 00000000
    Instructions: (pc=0x1038d7d4)
    0x1038d7c4:   24 40 8b e8 e8 33 23 fc ff 8b 84 24 b0 00 00 00
    0x1038d7d4:   8b 4f 54 6a 00 8d 54 24 44 52 50 c7 84 24 b4 00
    Stack: [0x003a0000,0x003f0000),  sp=0x003eeaf4,  free space=314k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [libdbxml23.dll+0x7d7d4]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.sleepycat.dbxml.dbxml_javaJNI.XmlResults_next__SWIG_0(J)J+0
    j  com.sleepycat.dbxml.XmlResults.next()Lcom/sleepycat/dbxml/XmlValue;+4
    j  de.makrolog.dbxml.DBXMLDao.processQuery(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;+139
    j  de.dnb.edith.DBXMLIndicesTest.testIndices()V+183
    v  ~StubRoutines::call_stub
    j  sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j  sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j  sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j  junit.framework.TestCase.runTest()V+108
    j  junit.framework.TestCase.runBare()V+7
    j  junit.framework.TestResult$1.protect()V+4
    j  junit.framework.TestResult.runProtected(Ljunit/framework/Test;Ljunit/framework/Protectable;)V+1
    j  junit.framework.TestResult.run(Ljunit/framework/TestCase;)V+18
    j  junit.framework.TestCase.run(Ljunit/framework/TestResult;)V+2
    j  junit.framework.TestSuite.runTest(Ljunit/framework/Test;Ljunit/framework/TestResult;)V+2
    j  junit.framework.TestSuite.run(Ljunit/framework/TestResult;)V+37
    j  org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(Lorg/eclipse/jdt/internal/junit/runner/TestExecution;)V+40
    j  org.eclipse.jdt.internal.junit.runner.TestExecution.run([Lorg/eclipse/jdt/internal/junit/runner/ITestReference;)V+17
    j  org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests([Ljava/lang/String;Ljava/lang/String;Lorg/eclipse/jdt/internal/junit/runner/TestExecution;)V+61
    j  org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(Lorg/eclipse/jdt/internal/junit/runner/TestExecution;)V+10
    j  org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run()V+70
    j  org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main([Ljava/lang/String;)V+14
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x02d6c800 JavaThread "ReaderThread" [_thread_in_native, id=1080]
      0x029cdc00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3816]
      0x029c9000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3152]
      0x029c8000 JavaThread "Attach Listener" daemon [_thread_blocked, id=2304]
      0x029c7000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3244]
      0x029c2000 JavaThread "Finalizer" daemon [_thread_blocked, id=2824]
      0x029bdc00 JavaThread "Reference Handler" daemon [_thread_blocked, id=2248]
    =>0x00386c00 JavaThread "main" [_thread_in_native, id=3664]
    Other Threads:
      0x029bc800 VMThread [id=1528]
      0x029d8400 WatcherThread [id=3836]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 960K, used 268K [0x228e0000, 0x229e0000, 0x22dc0000)
      eden space 896K,  23% used [0x228e0000, 0x229138d0, 0x229c0000)
      from space 64K,  96% used [0x229c0000, 0x229cf7a0, 0x229d0000)
      to   space 64K,   0% used [0x229d0000, 0x229d0000, 0x229e0000)
    tenured generation   total 4096K, used 572K [0x22dc0000, 0x231c0000, 0x268e0000)
       the space 4096K,  13% used [0x22dc0000, 0x22e4f0a8, 0x22e4f200, 0x231c0000)
    compacting perm gen  total 12288K, used 1342K [0x268e0000, 0x274e0000, 0x2a8e0000)
       the space 12288K,  10% used [0x268e0000, 0x26a2f840, 0x26a2fa00, 0x274e0000)
        ro space 8192K,  62% used [0x2a8e0000, 0x2ade14a8, 0x2ade1600, 0x2b0e0000)
        rw space 12288K,  52% used [0x2b0e0000, 0x2b727278, 0x2b727400, 0x2bce0000)
    Dynamic libraries:
    0x00400000 - 0x00423000      C:\Programme\Java\jre1.6.0_03\bin\javaw.exe
    0x7c910000 - 0x7c9c7000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c907000      C:\WINDOWS\system32\kernel32.dll
    0x77da0000 - 0x77e4a000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e50000 - 0x77ee1000      C:\WINDOWS\system32\RPCRT4.dll
    0x7e360000 - 0x7e3f0000      C:\WINDOWS\system32\USER32.dll
    0x77ef0000 - 0x77f37000      C:\WINDOWS\system32\GDI32.dll
    0x76330000 - 0x7634d000      C:\WINDOWS\system32\IMM32.DLL
    0x7c340000 - 0x7c396000      C:\Programme\Java\jre1.6.0_03\bin\msvcr71.dll
    0x6d7c0000 - 0x6da0a000      C:\Programme\Java\jre1.6.0_03\bin\client\jvm.dll
    0x76af0000 - 0x76b1e000      C:\WINDOWS\system32\WINMM.dll
    0x6d310000 - 0x6d318000      C:\Programme\Java\jre1.6.0_03\bin\hpi.dll
    0x76bb0000 - 0x76bbb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d770000 - 0x6d77c000      C:\Programme\Java\jre1.6.0_03\bin\verify.dll
    0x6d3b0000 - 0x6d3cf000      C:\Programme\Java\jre1.6.0_03\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Programme\Java\jre1.6.0_03\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\Programme\Java\jre1.6.0_03\bin\net.dll
    0x71a10000 - 0x71a27000      C:\WINDOWS\system32\WS2_32.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\msvcrt.dll
    0x71a00000 - 0x71a08000      C:\WINDOWS\system32\WS2HELP.dll
    0x719b0000 - 0x719f0000      C:\WINDOWS\system32\mswsock.dll
    0x66710000 - 0x66769000      C:\WINDOWS\system32\hnetcfg.dll
    0x719f0000 - 0x719f8000      C:\WINDOWS\System32\wshtcpip.dll
    0x13000000 - 0x1301e000      C:\dbxml-2.3.10\libdb_java45.dll
    0x03410000 - 0x034e4000      C:\dbxml-2.3.10\libdb45.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCP80.dll
    0x10270000 - 0x102f8000      C:\dbxml-2.3.10\libdbxml_java23.dll
    0x10310000 - 0x1043f000      C:\dbxml-2.3.10\libdbxml23.dll
    0x12000000 - 0x121cf000      C:\dbxml-2.3.10\xerces-c_2_7.dll
    0x10460000 - 0x106a5000      C:\dbxml-2.3.10\xqilla10.dll
    VM Arguments:
    java_command: org.eclipse.jdt.internal.junit.runner.RemoteTestRunner -version 3 -port 2476 -testLoaderClass org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestLoader -loaderpluginname org.eclipse.jdt.junit.runtime -classNames de.dnb.edith.DBXMLIndicesTest
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Programme\Java\jdk1.6.0_03
    PATH=C:\Programme\Java\jre1.6.0_03\bin\client;C:\Programme\Java\jre1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\Gemeinsame Dateien\GTK\2.0\bin;C:\Programme\Java\jdk1.6.0_03\bin;C:\dbxml-2.3.10;
    USERNAME=wadim
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 5, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 (2 cores per cpu, 1 threads per core) family 15 model 6 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3
    Memory: 4k page, physical 2095520k(701180k free), swap 4194303k(3631216k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_03-b05) for windows-x86, built on Sep 24 2007 22:24:33 by "java_re" with unknown MS VC++:1310

  • Bugs and poor performance in iphone 4 after upgrading to iOS 7*

    Dear Apple,
    After upgrading my iPhone 4 to iOS 7, I'm experiencing lots of issues.
    The performance is the poorest that I've ever seen since I adopted iPhone.
    Constantly, I need to do the same action (to touch the screen) 3 times until getting any response from the device.
    The new effects adopted in the new iOS 7 have lowered the user's interaction and decreased the usability.
    Multitask in iPhone 4 with iOS 7 is not smooth and glitches happens all the time. E.g., when you are talking via skype, receives an phone call and needs to search for a contact in your contact list to say to whom is calling you.
    How to survive using iPhone 4, with all these problems happening?
    It's bothering us, because we love apple devices! it's a shot in the chest!

    No apple here this is a user to user forum.
    see link to speed up your phone http://osxdaily.com/2013/09/23/ios-7-slow-speed-it-up/

  • Poor performance and duplicate apps after migration

    I migrated from a G4 ti book to a MacBook pro and have never been happy. I have duplicate applications and one will say in parens (from old mac) behind the name. It also moves very slow, especially in Eudora. I made a new user on the new computer in hopes to start fresh in Apple mail etc but when I switch to that user (the first one on the computer) Safari won't work. On and ON... I am so frustrated, nothing works right, even slower than my tibook and I don't know where to start to try to fix it. Should I try to figure out what I have done in the last 3 weeks and pull it off and 'restart" the whole process?
    Help,
    Debbie

    So are you saying that I revert back to factory settings and start over? I still don't understand why I would have 2 applications identical except the (from old mac). Example - "Adobe indesign CS2" then the next folder is "Adobe Indesign CS2 (from old mac) ".
    does that mean the application is on the machine twice?

  • Adding a web link to a page design

    I am a new user of Portals and currently learning the product. I have been trying to figure out how to add a portlet that simply displays an external web page (e.g. web.mit.edu as an example). I created a link object under the application tab but even though I have full authorities to publish portlets, the publish option does not appear for this object type. I realize this is a pretty elementary question, but I'd appreciate anyone advising me how to accomplish this. I'm probably overlooking the obvious. Thanks in advance for your assistance.
    Matt

    Actually, you aren't overlooking the obvious. The best way to do this is via the URL portlet that is available from the PDK site. You install the portlet and are able to use the customization to point to a specific URL. In the latest release of the PDK, we released the URL services which extend the capabilities to allow things like authentication etc. You can get to the PDK via the Portal Page on OTN.

  • How do I have a new window open, but slowly open to full size after clicking on a link from main pag

    The transitions I mean are on this site. The fading in window, and click on the image, which opens a new window but slowly to full size.  http://ra1830.wix.com/qgd2012
    Thanks.

    The site you quoted uses a plug-in similar to 'Lightbox'. You can get it here: http://www.lokeshdhakar.com/projects/lightbox2/

  • Safari crashes after clicking on certain links in yahoo pages.

    Mac 10.4.9
    I have all the latest updates and permissions repaired.
    This crash only happens with my user account. This does not happen in another account. Firefox is fine. But I need to test our web pages with Safari.
    Please help!
    Date/Time: 2007-04-27 16:44:47.740 -0400
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [57]
    Version: 2.0.4 (419.3)
    Build Version: 32
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 2009
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000009c
    Thread 0 Crashed:
    0 com.apple.WebCore 0x95f1bf90 -[KWQAccObject accessibilityShouldUseUniqueId] + 36
    1 com.apple.AppKit 0x938c450c _NSAccessibilityRegisterUniqueIdForUIElement + 40
    2 com.apple.AppKit 0x938c44a0 -[NSObject(NSAccessibilityUIElementSpecifier) _accessibilityUIElementPath] + 28
    3 com.apple.AppKit 0x938c4440 _NSAccessibilitySpecifierForUIElement + 72
    4 com.apple.AppKit 0x937cf480 OverriddenAttributesForUIElement + 84
    5 com.apple.AppKit 0x93a623d8 CopyAttributeValue + 196
    6 com.apple.HIServices 0x918728d8 _AXXMIGCopyAttributeValue + 268
    7 com.apple.HIServices 0x91879284 _XCopyAttributeValue + 240
    8 com.apple.HIServices 0x91845404 mshMIGPerform + 308
    9 com.apple.CoreFoundation 0x907ec764 __CFRunLoopDoSource1 + 152
    10 com.apple.CoreFoundation 0x907dee7c __CFRunLoopRun + 1556
    11 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    12 com.apple.HIToolbox 0x93298b20 RunCurrentEventLoopInMode + 264
    13 com.apple.HIToolbox 0x932981b4 ReceiveNextEventCommon + 380
    14 com.apple.HIToolbox 0x93298020 BlockUntilNextEventMatchingListInMode + 96
    15 com.apple.AppKit 0x9379eae4 _DPSNextEvent + 384
    16 com.apple.AppKit 0x9379e7a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    17 com.apple.Safari 0x00006740 0x1000 + 22336
    18 com.apple.AppKit 0x9379acec -[NSApplication run] + 472
    19 com.apple.AppKit 0x9388b87c NSApplicationMain + 452
    20 com.apple.Safari 0x0005c77c 0x1000 + 374652
    21 com.apple.Safari 0x0005c624 0x1000 + 374308
    Thread 1:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf0170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf00a8 -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95b7fe30 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c086a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c097e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001fa0c select + 12
    1 com.apple.CoreFoundation 0x907f1434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.Foundation 0x92be830c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9b4da42c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf0170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf00a8 -[NSRunLoop run] + 76
    6 com.apple.Safari 0x0003d5f0 0x1000 + 247280
    7 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000095f1bf90 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24022424 xer: 0x0000000000000000 lr: 0x00000000938c450c ctr: 0x0000000095f1bf6c
    r0: 0x00000000938c450c r1: 0x00000000bfffd220 r2: 0x0000000000000000 r3: 0x000000000dd7a640
    r4: 0x0000000090a8513c r5: 0x0000000093a62364 r6: 0x00000000bfffd494 r7: 0x0000000001965000
    r8: 0xffffffff5e4e3e2c r9: 0x00000000019651c4 r10: 0x000000000000005e r11: 0x00000000000000fc
    r12: 0x0000000095f1bf6c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000001
    r16: 0x0000000000000000 r17: 0x0000000000000001 r18: 0x0000000000007c9f r19: 0x00000000bfffda54
    r20: 0x00000000bfffd9c4 r21: 0x00000000bfffda3c r22: 0x00000000bfffda50 r23: 0x00000000636f636f
    r24: 0x00000000bfffeb7c r25: 0x0000000000000004 r26: 0x0000000000000000 r27: 0x0000000000000006
    r28: 0x0000000000000000 r29: 0x0000000002d221f0 r30: 0x0000000000000000 r31: 0x00000000938c44ec
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0xe1b9000 - 0xe1bbfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xe603000 - 0xe918fff com.macromedia.Flash Player.plugin 9.0.45.0 (1.0.1f41) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.10 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd3fff com.apple.CFNetwork 4.0 (129.20) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f13000 - 0x92f31fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3c000 - 0x92f96fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb4000 - 0x92fb4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb6000 - 0x92fcafff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffe000 - 0x93013fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93025000 - 0x930acfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c0000 - 0x930cbfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d5000 - 0x93102fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311c000 - 0x9312bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93137000 - 0x9319dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ce000 - 0x9321dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327a000 - 0x93287fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936ee000 - 0x936fafff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936ff000 - 0x9371ffff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93794000 - 0x93794fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93796000 - 0x93dc9fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94156000 - 0x941c8fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94201000 - 0x942c5fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94317000 - 0x94317fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94319000 - 0x944d9fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94523000 - 0x94560fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94568000 - 0x945b8fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c1000 - 0x945d5fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9466b000 - 0x946a3fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946e6000 - 0x94702fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94716000 - 0x9475afff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9477e000 - 0x9478dfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94795000 - 0x947a2fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947e8000 - 0x94801fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94808000 - 0x94addfff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94ba1000 - 0x94c12fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94c85000 - 0x94ca5fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94dad000 - 0x94eddfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f6f000 - 0x94f7efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f86000 - 0x94fb3fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94fba000 - 0x94fcafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94fce000 - 0x94ffdfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9500d000 - 0x9502afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95b7d000 - 0x95c0bfff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95c67000 - 0x95cfdfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95d3a000 - 0x96046fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x961cf000 - 0x961f8fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x97d1f000 - 0x97d2cfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9b4d7000 - 0x9b50dfff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b52a000 - 0x9b53cfff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerMac7,3, BootROM 5.1.8f7, 2 processors, PowerPC G5 (2.2), 2 GHz, 4.5 GB
    Graphics: GeForce FX 5200, GeForce FX 5200, AGP, 64 MB
    Graphics: ATI Radeon 9200, ATY,RV280, PCI, 128 MB
    Memory Module: DIMM0/J11, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J12, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM2/J13, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM3/J14, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM4/J41, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM5/J42, 256 MB, DDR SDRAM, PC3200U-30330
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: ATY,RV280, Display, SLOT-3
    Serial ATA Device: ST3160023AS, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-117D
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Apple Cinema HD Display, Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: Studio Display, Up to 1.5 Mb/sec, 500 mA
    USB Device: USB Receiver, Logitech, Up to 1.5 Mb/sec, 500 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    I just discovered that Safari does not crash when opening the link in a new window.

  • Slow Reports after adding calculated item

    Hi All,
       I am facing a slow response after adding few calculated items in a report. Is it a normal behavior of OBIEE in terms of adding calculated items?
    Anyone faced similar issue please comment.
    Thanks,
    Muhammad Waqas

    Hi Muhammad Waqas,
    Have you run the physical query that is generated by BI Server on Database? Once executed on database, compare the execution time with OBIEE execution times, with this you will get the answer.
    Depends on the amount of data and the type of calculation, it is normal behaviour to slow down the performance of the reports after adding calculated measures.
    Please mark it Helpful/Correct, if it is.
    est Regards,
    Kalyan Chukkapalli
    http://123obi.com

  • Is there any way to fetch second webpage url after navigating from one page to another on chrome browser?

                string sCurrentURL;
                string sExpectedURL="http://www.xyz.co/";
                BrowserWindow _bw = BrowserWindow.FromProcess(proc);              
        string sURL=UIMap.UIWindow.Uri.ToString();
                HtmlHyperlink objLogoLink = UIMap.UIWindow.UIDocument.UIHyperlink;          
    //Navigates to "http://www.xyz.co/" link after click on logo
                Mouse.Click(objLogoLink);            
                 Playback.PlaybackSettings.ShouldSearchFailFast = false;
    //At this line of code I am getting issue on chrome browser
                sCurrentURL = _bw.Uri.ToString(); 
                Assert.IsTrue(sCurrentURL.Equals(sLogoURL));
                _bw.NavigateToUrl(new Uri(sURL));
    After clicking the logo link of the page, it navigates to other url. I am successfully able to get the url for firefox and IE.  I am facing issuein chrome.
    Any suggestions?
                 

    Do you use this extension tool Selenium Components for Coded UI Cross Browser Testing?
    Yes I used this extension tool. I am using only BrowserWindow name as search property.
    Error : 
    stale element reference: element is not attached to the page document
      (Session info: chrome=41.0.2272.89)
      (Driver info: chromedriver=2.8.241075,platform=Windows NT 6.1 SP1 x86_64)
    I resolved this issue using separate BrowserWindow object for each page. But i am not able to understand why BrowserWindow _bw object created from process object ( BrowserWindow
    _bw = BrowserWindow.FromProcess(proc); ) get detach when navigate to other page....
     string sCurrentURL;
     string sExpectedURL="http://www.xyz.com/";           
     string sURL=UIMap.UIWindow.Uri.ToString();
     HtmlHyperlink objLogoLink = UIMap.UIWindow.UIDocument.UIHyperlink;          
     //Navigates to "http://www.xyz.co/" link after click on logo
     Mouse.Click(objLogoLink);
     sCurrentURL = UIMap2.UISecondPageWindow.Uri.ToString(); 
     Assert.IsTrue(sCurrentURL.Equals(sLogoURL));

  • Extremely poor performance to various websites during peak hours - peering issue?

    Since approximately 26 Jan 2015, we have been experiencing extremely poor performance to several specific websites during peak hours, 9pm-11pm.  Page loads take many minutes (or never complete), etc.  Many other sites are perfectly fine, and if I connect to the same sites at the same time through my work VPN, they perform extremly well (under 1sec).  There is no correlation between OS or browser and the poor performance (tested on Windows, OSX, Linux) and speedtest typically reports over 80/80.
    I've not caught any packet loss using periodic pings.  Traceroutes indicate a bunch of different routes being used (I assume this is expected for CDNs), but here's one example of an obviously bad single traceroute:
    $ traceroute images.dailykos.com
    traceroute to fallback.global-ssl.fastly.net (23.235.46.185), 64 hops max
    1 10.1.1.1 0.464ms 0.364ms 0.298ms
    2 173.48.161.1 5.223ms 4.793ms 4.904ms
    3 130.81.191.250 7.387ms 7.466ms 7.366ms
    4 130.81.151.76 4.909ms 4.905ms 4.932ms
    5 152.63.20.117 12.441ms 12.433ms 12.434ms
    6 152.63.4.141 12.373ms 12.468ms 12.370ms
    7 152.179.220.126 14.989ms 14.937ms 14.872ms
    8 68.86.84.249 12.505ms 12.259ms 14.988ms
    9 68.86.85.25 22.409ms 22.433ms 22.519ms
    10 68.86.85.1 19.817ms 19.894ms 19.919ms
    11 68.86.83.74 17.389ms 19.870ms 22.460ms
    12 4.53.116.18 24.815ms 25.080ms 24.851ms
    13 * 208.122.44.198 2849.473ms 29.832ms
    14 173.231.134.18 22.430ms * 2026.736ms
    The sites in question use the Fastly CDN - my theory is that the VZ-Fastly connection is under provisioned or is broken, but I'm out of my depth at this point.  

    "This is a nationwide peering/routing issue that was intentionally created by Verizon to create congestion and (1) extract priority fees from the likes of Netflix and (2) get customers to subscribe to higher speed tiers. This has been acknowledged by the FCC. Verizon is building new interconnections to remedy the problem, but it will persist for at least another 6 months."

  • Adding a new link in R12 registration page

    Hi All
    Shall you please send me the steps for adding a new link in registration page in Oracle istore R12
    Thanks

    Hi;
    Please check:
    http://docs.oracle.com/cd/E18727_01/doc.121/e13575/T349071T350482.htm
    How To Disable The "New User Registration" Link In Istore [ID 1224813.1]
    Regard
    Helios

  • Apple maps has received a poor performance rating just after introduction of the iPhone 5. I am running google maps app on the phone. Siri cannot seem to get me to a specific address. Where does the problem lie? Thanks.

    Apple maps has received a poor performance rating just after introduction of the iPhone 5. I am running Google Maps app on the phone. SIRI cannot seem to get me to a specific address. Where does the problem lie? Also can anyone tell me the hierarchy of use between the Apple Maps, SIRI, and Google maps when the app is on the phone? How do you choose one over the other as the default map usage? Or better still how do you suppress SIRI from using the Apple maps app when requesting a "go to"?
    I have placed an address location into the CONTACTS list and when I ask SIRI to "take me there" it found a TOTALLY different location in the metro area with the same street name. I have included the address, the quadrant, (NE) and the ZIP code into the CONTACTS list. As it turns out, no amount of canceling the trip or relocating the address in the CONTACTS list line would prevent SIRI from taking me to this bogus location. FINALLY I typed in Northeast for NE in the CONTACTS list (NE being the accepted method of defining the USPS location quadrant) , canceled the current map route and it finally found the correct address. This problem would normally not demand such a response from me to have it fixed but the address is one of a hospital in the center of town and this hospital HAS a branch location in a similar part of town (NOT the original address SIRI was trying to take me to). This screw up could be dangerous if not catastrophic to someone who was looking for a hospital location fast and did not know of these two similar locations. After all the whole POINT of directions is not just whimsical pasttime or convenience. In a pinch people need to rely on this function. OR, are my expectations set too high? 
    How does the iPhone select between one app or the other (Apple Maps or Gppgle Maps) as it relates to SIRI finding and showing a map route?  
    Why does SIRI return an address that is NOT the correct address nor is the returned location in the requested ZIP code?
    Is there a known bug in the CONTACTS list that demands the USPS quadrant ID be spelled out, as opposed to abreviated, to permit SIRI to do its routing?
    Thanks for any clarification on these matters.

    siri will only use apple maps, this cannot be changed. you could try google voice in the google app.

  • FAMACR/APMACR EXTREMELY POOR PERFORMANCE AFTER APPLYING FA PATCHSET K

    제품 : FIN_FA
    작성날짜 : 2005-11-28
    FAMACR/APMACR EXTREMELY POOR PERFORMANCE AFTER APPLYING FA PATCHSET K
    ======================================================================
    PURPOSE
    FA_MASS_ADDITION시 Expensive sql로 성능저하 문제 발생
    Explanation
    Expensive sql statement while running the report is
    update ap_invoice_distributions apid set assets_addition_flag='N'
    where (((((assets_addition_flag='U' and assets_tracking_flag='N') and not
    exists (select 1
    from ap_ae_headers aeh
    where ((aeh.accounting_event_id=apid.accounting_event_id
    and aeh.set_of_books_id=apid.set_of_books_id) and aeh.gl_transfer_flag<>
    'Y')))
    and posted_flag='Y') and accounting_date<=to_date(:b0,'YYYY/MM/DD HH24:MI:
    SS'))
    and exists (select 1
    from gl_code_combinations
    where ((code_combination_id=apid.dist_code_combination_id and
    chart_of_accounts_id=:b1)
    and decode(upper(:b2),'SEGMENT1',segment1,'SEGMENT2',segment2,'SEGMENT3',
    segment3,'SEGMENT4',
    segment4,'SEGMENT5',segment5,'SEGMENT6',segment6,'SEGMENT7',segment7,'SEGMENT8',
    segment8,'SEGMENT9',
    segment9,'SEGMENT10',segment10,'SEGMENT11',segment11,'SEGMENT12',segment12,
    'SEGMENT13',segment13,
    'SEGMENT14',segment14,'SEGMENT15',segment15,'SEGMENT16',segment16,'SEGMENT17',
    segment17,'SEGMENT18',
    segment18,'SEGMENT19',segment19,'SEGMENT20',segment20,'SEGMENT21',segment21,
    'SEGMENT22',segment22,
    'SEGMENT23',segment23,'SEGMENT24',segment24,'SEGMENT25',segment25,'SEGMENT26',
    segment26,'SEGMENT27',
    segment27,'SEGMENT28',segment28,'SEGMENT29',segment29,'SEGMENT30',
    segment30) in (select distinct asset_clearing_acct
    from fa_category_books fcb ,fa_book_controls fac
    where ((fac.book_type_code=:b3 and fac.book_class='CORPORATE')
    and fcb.book_type_code=fac.book_type_code)
    union
    select distinct cip_clearing_acct
    from fa_category_books fcb ,fa_book_controls fac
    where (((fac.book_type_code=:b3 and fac.book_class='CORPORATE')
    and fcb.book_type_code=fac.book_type_code) and cip_clearing_acct is not null ))
    call count cpu elapsed disk query current
    rows misses
    Parse 1 0.03 0.03 4 7 0
    0 1
    Execute 1 5198.88 5241.95 258933 99354479 9946808
    0 0
    total 2 5198.91 5241.98 258937 99354486 9946808
    0 1
    cause: The Cause of this problem is still undetermined.
    fix:
    1. Apply Patch:2395191
    자산화하기 위해서는 Invoice Distibution계정을 Asset Clearing 계정으로
    입력하여야 하나 Account Type만 Asset이면 Track as asset이 Check되기 때문에 , 이 계정에 대한
    Validation을 하는 과정에서 너무 많은 데이타로 인해 Performance문제가 생김
    결산 시점의 문제가 발생시 문제의 Sql을 참고하여 , invoice distribution의 계정이 Asset Clearing계정이 아닌 계정은 미리 N:reject로 Update하여 대상을 줄일수 있음
    Example
    4406888.992
    Reference Documents
    249802.1

Maybe you are looking for