Pl help me in this strange issue - output delays thru 2 diff. output media

We have a web based application (11G DB). The reports and forms were written in pl/sql using the htp and htf packages. We have a big query with couple of table joins. If i run the query thru a client (toad, sqlnavigator), the result is shown in typically 2-3 seconds. The same query if run thru the web application is taking 40-45 seconds. We recently upgraded the DB from 8i to 11G (i agree this is a big jump). All the other pages in the application are pretty quick except this particular page. My DBA states that they are collecting statistics for the tables on a regular basis. Since the queries on the client are running super speed, i did not run the explain plan. Are there any specific settings in the application server layer that needs to be taken care of? We have a bunch of customers who use this application and all are having the same problem with this page. Can someone pl throw some light on this?

Hi,
If the query returns thousands of rows, tt may not be the time to execute the query, it maybe the time to loop through and display the entire result set.
SQL Developer by default only loops through the first 50 rows and then displays them (you have to scroll down and then more rows will be read from the result set) or use <ctrl> <end> to return all rows at once.
Thought Id bring this up, just in case you were comparing the time it took SQL Developer to display 50 rows, but your web app was displaying thousands of rows.
Regards,
Dermot.
SQL Developer Team

Similar Messages

  • I updated my Iphone 4s to IOS 7, now it reboots after every 2 minutes, I tried to restore, but the reboot gets it disconnected from PC, help me solve this reboot issue..

    I updated my Iphone 4s to IOS 7, now it reboots after every 2 minutes, I tried to restore, but the reboot gets it disconnected from PC, help me solve this reboot issue..

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.

  • Please help me with this strange problem again!

    Hi gurus,
    I can't, for the life of me, figure out why this does not work in a procedure but works in an anonimous block.
    The XML is like this (part of it),
    <CaseNotification messageProducedDateTime="2005-07-20T13:58:11-05:00" xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">
                   <NotificationAdminHeader caseNumberKey="87CR0569" xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">
                        <CaseCountyIdentifier>87</CaseCountyIdentifier>
                        <CaseLocationText>Yellow Medicine County</CaseLocationText>
                        <BaseCaseTypeText>Adult</BaseCaseTypeText>
                        <CaseCategoryText>Criminal</CaseCategoryText>
                        <PartyIdentifier partyKey="854">
                             <PartyCaseAssociationText>Jurisdiction</PartyCaseAssociationText>
                        </PartyIdentifier>
                        <PartyIdentifier partyKey="123637">
                             <PartyCaseAssociationText>Defendant</PartyCaseAssociationText>
                        </PartyIdentifier>
                   </NotificationAdminHeader>
                   <InterimConditionsNotification>
                        <TriggeredDateTime>2005-07-20T13:57:53-05:00</TriggeredDateTime>
                        <NotificationEvent>InterimConditionsDeleted</NotificationEvent>
                        <InterimConditionsOrder orderEventKey="1760110">
                             <OrderDate>2005-07-20</OrderDate>
                             <OrderedBy judgeKey="00001J">
                                  <JudgeName>
                                       <PersonGivenName>John</PersonGivenName>
                                       <PersonMiddleName>P.</PersonMiddleName>
                                       <PersonSurName>Smith</PersonSurName>
                                       <PersonFullName>Smith, John P.</PersonFullName>
                                  </JudgeName>
                                  <JudicialAgencyIdentifier>MN011015J</JudicialAgencyIdentifier>
                             </OrderedBy>
                             <CourtCaseNumber documentVersion="1" effectiveDateTime="2005-06-06T00:00:00-06:00">
                                  <MNCISCaseNumber>
                                       <CountyNumber>87</CountyNumber>
                                       <CaseType>CR</CaseType>
                                       <YearFiled>05</YearFiled>
                                       <SequenceNumber>69</SequenceNumber>
                                  </MNCISCaseNumber>
                                  <CaseNumberIdentifier caseNumberKey="87CR0569">87-CR-05-69</CaseNumberIdentifier>
                             </CourtCaseNumber>
                             <ConditionSubject>
                                  <Party partyKey="123637" currentNameIndicator="true">
                                       <StandardName>
                                            <PersonGivenName>Clanry</PersonGivenName>
                                            <PersonSurName>Ogavitz</PersonSurName>
                                            <PersonFullName>Ogavitz, Clanry</PersonFullName>
                                       </StandardName>
                                       <PartyCaseAssociationText>Defendant</PartyCaseAssociationText>
                                  </Party>
                             </ConditionSubject>
                             <InterimConditions>
                                  <InterimConditionText>Anger management</InterimConditionText>
                                  <InterimConditionAmount>0</InterimConditionAmount>
                             </InterimConditions>
                             <InterimConditions>
                                  <InterimConditionText>Attend AA (Alcoholics Anonymous)</InterimConditionText>
                                  <InterimConditionAmount>5000</InterimConditionAmount>
                             </InterimConditions>
                        </InterimConditionsOrder>
                   </InterimConditionsNotification>
              </CaseNotification>
    The code is basically the same except that in the procedure the passing clause gets a differnt param, which is the passed in param from the procedure.
    xmltable
                             xmlnamespaces
                             ---     'http://schemas.xmlsoap.org/soap/envelope/' as "saop",
                                  'http://www.courts.state.mn.us/CourtXML/2.0.0' as "ic"
                             'for $ics in //ic:CaseNotification/ic:InterimConditionsNotification/ic:InterimConditionsOrder[@orderEventKey = $val/oeKey]/ic:InterimConditions
                             return
                             <ic:ICS>                    
                                  <ic:ICSText>{$ics/ic:InterimConditionText}</ic:ICSText>
                                  <ic:ICSAmount>{$ics/ic:InterimConditionAmount}</ic:ICSAmount>
                             </ic:ICS>'
                             passing p_XMLDoc, xmlelement("oeKey", v_OEKey) as "val"
                             columns               
                             ICSText          varchar2(100)      path '/ic:ICS/ic:ICSText',
                             ICSAmount     number           path '/ic:ICS/ic:ICSAmount'
    The strange thing is the procedure gets the ic:ICSText with the namespace value, which is http://www.courts.state.mn.us/CourtXML/2.0.0, so the finaly result is
    the whole thing: <InterimConditionText xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">Anger management</InterimConditionText>.
    I get the correct values when testing with the anonimous code!
    What did I do wrong? Please help!
    Thank you.
    Ben

    Hi gurus,
    OK, I did another test. I ran the same PL/SQL anonymous block that gets the correct element value in 10.2.0.3.0 and it gets the same wrong value: the element name plus the namespace value and the data itself. It gets the correct element value in 10.2.0.1.0 (my local database).
    Could anyone help me with this?
    Thanks!
    Ben

  • Kindly help me with this checkbox issue

    Hi all,
    Firstly I would like t o thank this very helpful forum.I have one more question regarding checkboxes.
    /*courses.jsp*/ In my courses.jsp which connects to an MS Access database I have something like this...
    <INPUT TYPE=CHECKBOX NAME="COURSES" VALUE="rs.getString("course")"><%out.print(rs.getString("course"));%></td>/*courses.jsp*/
    This is coming from the database.
    In my servlet code i have this in the doPost method.
    /*CheckBoxServlet*/ PS : This servlet is not connected to the database..
    String checkbox[] = request.getParameterValues("COURSES");
              int counter = checkbox.length;
              System.out.println("Number of checkboxes checked " + counter);
              if (checkbox !=null){
                   for (int i = 0; i < checkbox.length; i++) {
                   System.out.println("Checkbox values "+ checkbox);
         } else {
                   System.out.println("none selected");
    /*CheckBoxServlet*/
    /* OUTPUT */
    I have checked 5 check boxes
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    Checkbox values rs.getString(
    /*OUTPUT*/
    My question is why is it not printing out the value in rs.getString()????.
    It would be great if this forum helps me in the right direction.Let me know how i can go about doing this.
    I hope i have explained my question correctly.If you have any further questions kindly ask.
    Thanking every one in adavance
    AS

    your mixing html and java code
    <INPUT TYPE=CHECKBOX NAME="COURSES"
    VALUE="rs.getString("course")"><%out.print(rs.getStrin
    g("course"));%></td>based on this it should be
    <INPUT TYPE=CHECKBOX NAME="COURSES"
    VALUE="<%out.print(rs.getString("course"));%>)"><%out.
    print(rs.getString("course"));%></td>
    Hi again,
    Thanks for the reply.
    If I give this
    <INPUT TYPE=CHECKBOX NAME="COURSES" VALUE="<%out.print(rs.getString("course"));%>"><%out.print(rs.getString("course"));%>This is the error message i get
    javax.servlet.ServletException: No data found
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.courses_jsp._jspService(courses_jsp.java:243)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         servlet.AdminValidationServlet.doGet(AdminValidationServlet.java:78)
         servlet.AdminValidationServlet.doPost(AdminValidationServlet.java:93)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.sql.SQLException: No data found
         sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7139)
         sun.jdbc.odbc.JdbcOdbc.SQLGetDataString(JdbcOdbc.java:3908)
         sun.jdbc.odbc.JdbcOdbcResultSet.getDataString(JdbcOdbcResultSet.java:5702)
         sun.jdbc.odbc.JdbcOdbcResultSet.getString(JdbcOdbcResultSet.java:356)
         sun.jdbc.odbc.JdbcOdbcResultSet.getString(JdbcOdbcResultSet.java:413)
         org.apache.jsp.courses_jsp._jspService(courses_jsp.java:106)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         servlet.AdminValidationServlet.doGet(AdminValidationServlet.java:78)
         servlet.AdminValidationServlet.doPost(AdminValidationServlet.java:93)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)What could be the reason for this.It would be great if you can help me out.
    TIA
    AS

  • Unable to Intialize HDV deck - can anyone pls help me with this FCE Issue?

    I have recently moved from a MacBook Pro (circa 2 yrs old) to a new MacBook Pro with the NEW firewire 800 port. I have bought a new firewire cable and my camera does not want to be capture from my Sony A1E.
    I have a MacBook Pro 2.8ghz running on OS X 10.6.2 and have all the updates installed for FCE.
    Every time i try to capture the message comes up "Unable to Intialize HDV deck. Please make sure a deck is connected and try again".
    The System is set up to receive the correct frame rate footage and type of footage (which is: HDV-Apple Intermediate Codec 1080i50. Formats: All formats). I am running on PAL, so 25fps.
    Is there any advice / direction that you could give me at all as I am struggling!
    Any help support would be appreciated!
    Thanks, Martin

    Hi,
    Would you confirm that you are using a 9-pin to 4-pin FW cable to connect to your camcorder and that your camcorder is the only FW device connected to your Mac.
    When you start up FCE with the camera connected to your Mac and already powered on in VTR mode, does FCE 'see' the camera, or do you get a warning message that FCE is "Unable to locate the following external devices ..." ?

  • Hi could someone help me with this basic issue ..

    'sql*plus' is not recognized as an internal or external command,
    operable program or batch file.
    I have installed expression addition for practice on a win xp OS it was working fine but now this is the error when , I am trying to start the data base.
    checked the environmental variables they seem to be ok but still no progress .
    Thanks,
    Max

    Hi,
    In hurry are you typing sql*plus instead of sqlplus?
    you could go to <oracle-home>/bin directory and run  (ex: C:\oraclexe\app\oracle\product\11.2.0\server\bin\sqlplus.exe)
    Regards
    Yoonas

  • Please help me solve this CS5 issue - I am a first time poster, but long time user

    While in the middle of producing a rather large website, I get this error every time I open a file in Dreamweaver CS5 and I cannot preview file using the "Preview/Debug in browser" button.
    Error:
    ---- While executing onLoad in_onOpen.htm, the following JavaScript error(s) occurred. In file "_onOpen": onOpen is not defined ------
    In addition, Dreamweaver will not let me use/choose/open the file. Browser preferences keep resetting.
    I went on the other forums and the solution points to removal of
         <user>/Library/Application Support/Adobe/Dreamweaver CS5/en_US/Configuration/MacFileCache-XXXXXXX.dat
    file is suggested, but I have not such file on my Mac OS X Version 10.7.3. I get as far as Library/Application Support/Adobe.
    In fact I don't even see Dreamweaver on the list. (see attached.)
    Thanks for any guidance - Lauren

    Well there is a library folder in your user account but by default it's hidden in 10.7.  It's a very common folder so you should either unhide it or know how to access it, for instance by doing a Go To Folder in the finder and opening "~/Library".  http://kb2.adobe.com/cps/909/cpsid_90947.html

  • Hi there, hope somebody could help me with this little issue I am having

    Hi there,
    First of all I want to say that I am very pleased to be part of this community, my name is Juan and I got the following problem:
    When my father tries to dial a mobile phone number (from his blackberry) starting with 32, phone adds a plus sign like if he was actually dialing an international number.
    I mean, if he dials 321 815 5634, we get the following result: +321 815 5634
    Hope someone could give me a clue on how to solve this.
    Thanks in advance,
    Juan

    Hi Juan,
    Welcome to BlackBerry Support Community Forum.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Help me with this caching issue

    I have a JSP page where the user can make some changes and press a
    submit button to update the changes.
    After that the control is back in the same page.
    If the user clicks the browser back button at this time , the previous page without the changes is being displayed
    If the user presses the submit button a couple of times and then press the back button in the browser all the intermediate pages are being displayed
    Is there any way to avoid this
    Please advise
    TIA

    The Back button is my long time enemy and as such I found ways to beat him (and call him my punk!). The key here is Javascript.
    First, never use an <input type=submit> use a type=button with JS to built a query string and call your next page using location.replace() NOT location.href. The method replace() will not make an entry in the browser's history.
    ******* Sample ********
    window.location.replace("nextpage.jsp?arg1=" + form.field1.vaule + "&arg2=" + form.field2.vaule)
    ******* End ********
    Second, your <FORM> tag should not have method OR action defined. You should define an onSubmit event with JS to cancel the sumbit action.
    ******* Sample ********
    <FORM id="foo" name="foo" onSubmit="event.returnValue=false;">
    ******* End ********
    Finally, if you want to make sure the back button is NEVER even enabled add a dumby page as your start page (i.e. index.htm) that uses JS to pop
    open a new window with your true start page.
    ******* Sample ********
    <HTML>
    <HEAD>
    <TITLE>Loader</TITLE>
    <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </HEAD>
    <SCRIPT language="javascript">
    <!--
    function fPopMain(){
    // pop a 800x600 window, centered, resizable, status bar only
    var intLeftPos = (screen.width) ? (screen.width-800)/2 : 0;
    var intTopPos = (screen.height) ? (screen.height-600)/2 : 0;
    var urlstring = '\Start.jsp'
    var newWindow = window.open(urlstring,'winAppMain','height=600,width=800,top='+intTopPos+',left='+intLeftPos+',toolbar=no,minimize=no,status=yes,memubar=no,hotkeys=no,location=no,resizable=yes,scrollbars=yes');
    //-->
    </SCRIPT>
    <BODY onLoad="fPopMain();">
    <BR><BR>
    <CENTER>App Loading...</CENTER>
    </BODY>
    </HTML>
    ******* End ********
    Combine the three steps above with no-cache META tags or the like and you too can call the back button yo punk!
    <META HTTP-EQUIV='expires' CONTENT='Fri, 1 Jan 1990 00:00:00 GMT'>
    <META HTTP-EQUIV='cache-control' VALUE='no-cache, no-store, must-revalidate'>
    GL
    Will

  • Strange Issue with using ExportToHttpResponse for exporting to Excel

    Hi,
    We are working with BO XI R2 with .Net 2.0.
    We are using ExportToHttpResponse method to export the Crystal Report to pdf/excel and directly opening the export in a browser window.
    Code being used is as follows :
    For pdf :  rd.ExportToHttpResponse(ExportFormatType.PortableDocFormat, oResponse, false, Name);
    For Excel : rd.ExportToHttpResponse(ExportFormatType.Excel, oResponse, false, Name);
    where 'rd' is ReportDocument instance.
    The strange issue here is that for pdf output this works as desired and the exported report is directly opened in the browser window. However when it comes to Excel ; it does not open the exported file in the browser window and gives a prompt to open/save file. Even if the 'asAttachment' parameter of ExportToHttpResponse method is set to false it still is sending the exported file as an attachment to the browser and not opening it directly (as it is happening in the case of a pdf export )
    Do we need to set the Response.ContentType to excel ; if yes then why it is working in case of pdf.
    Can any one please advise about this strange issue .
    Thanks
    Vinayak Vidhate

    >
    Ludek Uher wrote:
    > Try the following:
    >
    >
    > System.IO.MemoryStream oStream = (System.IO.MemoryStream)crReport.ExportToStream(ExportFormatType.Excel);
    > Response.Clear();
    > Response.ClearHeaders();
    > Response.AddHeader("Content-Disposition", "inline;filename=exportedreport.xls");
    > Response.ContentType = "application/vnd.ms-excel";
    > Response.BinaryWrite(oStream.ToArray());
    > Response.Flush();
    > Response.Close();
    >
    > The code works on my machine.
    >
    > If that does not help, consider using a utility such as [Charles|http://www.charlesproxy.com] or [Fiddler|http://www.fiddlertool.com/fiddler] to see what's going on.
    >
    >
    > Ludek
    Thanks for the response Ludek .
    I was going through some othere threads and saw that ExportToHttpResponse is more preferred over ExportToStream . I even checked for setting up the Response.ContentType to Excel . I think I shoulfd give it a try to use ExportToStream.
    Let me know if any one else has any other suggestion(s).

  • I have updated my Macbook Pro from 10.7.5 to 10.9.1 and it keeps on restarting after upgrade. Please help me fix this issue.

    Hi All,
    I have updated the Macbook Pro from 10.7.5 to 10.9.1 today and once it is done I restarted the system and it keeps on crashing/restarting the system every 2 min.
    I have found the below backtrace. Please help me fix this issue.
    Anonymous UUID:  
    C72C8841-51A0-BB21-689C-2AB204820087
    Mon Dec 30 23:57:23 2013
    panic(cpu 0 caller 0xffffff801da5260f): "a freed zone element has been modified: expected 0xdeadbeefdeadbeef but found 0, bits changed 0xdeadbeefdeadbeef, at offset 8 of 128 in zone: kalloc.128"@/SourceCache/xnu/xnu-2422.1.72/osfmk/kern/zalloc.c:461
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8096bf3690 : 0xffffff801da22f69
    0xffffff8096bf3710 : 0xffffff801da5260f
    0xffffff8096bf3770 : 0xffffff801da51d09
    0xffffff8096bf3870 : 0xffffff801da2aa2f
    0xffffff8096bf38a0 : 0xffffff801dde080d
    0xffffff8096bf38e0 : 0xffffff7f9fcada11
    0xffffff8096bf3930 : 0xffffff7f9fcae16e
    0xffffff8096bf39a0 : 0xffffff7f9fcae523
    0xffffff8096bf39d0 : 0xffffff801dc13438
    0xffffff8096bf3a00 : 0xffffff801dd83378
    0xffffff8096bf3a70 : 0xffffff801dbfd1ae
    0xffffff8096bf3ae0 : 0xffffff801dbf437a
    0xffffff8096bf3b80 : 0xffffff801dbe5f15
    0xffffff8096bf3c30 : 0xffffff801dbe67d2
    0xffffff8096bf3f50 : 0xffffff801de3de23
    0xffffff8096bf3fb0 : 0xffffff801daf3e06
    Kernel Extensions in backtrace:
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib(1.0d1)[E163B7AE-F6E5-328 6-B827-66DB3FE3DB7B]@0xffffff7f9fcac000->0xffffff7f9fcaffff
    BSD process name corresponding to current thread: applet
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:
    0x000000001d800000
    Kernel text base: 0xffffff801da00000
    System model name: MacBookPro7,1 (Mac-F222BEC8)
    System uptime in nanoseconds: 172506613860
    last loaded kext at 107245362778: com.trendmicro.kext.KERedirect 1.0.0 (addr 0xffffff7f9ff33000, size 24576)
    loaded kexts:
    com.trendmicro.kext.KERedirect 1.0.0
    com.logmein.driver.LogMeInSoundDriver 1.0.0
    org.virtualbox.kext.VBoxUSB 3.2.6
    org.virtualbox.kext.VBoxDrv 3.2.6
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AppleHDAHardwareConfigDriver 2.5.3fc1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AGPM 100.14.11
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.5.3fc1
    com.apple.iokit.IOBluetoothSerialManager 4.2.0f6
    com.apple.filesystems.autofs 3.0
    com.apple.GeForceTesla 8.1.8
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleMikeyDriver 2.5.3fc1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleMuxControl 3.4.12
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.nvidia.NVDAStartup 8.1.8
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.iokit.IOBluetoothUSBDFU 4.2.0f6
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.0f6
    com.apple.driver.AppleMCCSControl 1.1.12
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.driver.AppleUSBTCKeyEventDriver 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.3.5
    com.apple.driver.AppleFileSystemDriver 3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.6.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.4.0
    com.apple.iokit.AppleBCM5701Ethernet 3.6.9b9
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.driver.AppleAHCIPort 2.9.5
    com.apple.driver.AppleFWOHCI 4.9.9
    com.apple.driver.AppleUSBHub 650.4.4
    com.apple.driver.AppleUSBEHCI 650.4.1
    com.apple.driver.AppleUSBOHCI 650.4.1
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleSMBIOS 2.0
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 216.0.0
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 216.0.0
    com.apple.AppleGraphicsDeviceControl 3.4.12
    com.apple.driver.DspFuncLib 2.5.3fc1
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.kext.triggers 1.0
    com.apple.nvidia.classic.NVDANV50HalTesla 8.1.8
    com.apple.iokit.IOAudioFamily 1.9.4fc11
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSurface 91
    com.apple.iokit.IOBluetoothFamily 4.2.0f6
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.AppleGraphicsControl 3.4.12
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.driver.IOPlatformPluginFamily 5.5.1d27
    com.apple.nvidia.classic.NVDAResmanTesla 8.1.8
    com.apple.iokit.IONDRVSupport 2.3.6
    com.apple.driver.AppleSMC 3.1.6d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.0f6
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.driver.AppleHDAController 2.5.3fc1
    com.apple.iokit.IOHDAFamily 2.5.3fc1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleSMBusController 1.0.11d1
    com.apple.iokit.IOGraphicsFamily 2.3.6
    com.apple.driver.AppleUSBMultitouch 240.6
    com.apple.iokit.IOUSBHIDDriver 650.4.4
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.0
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.0
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.mDNSOffloadUserClient 1.0.1b4
    com.apple.iokit.IO80211Family 600.34
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.0
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.driver.AppleMCP89RootPortPM 1.11
    com.apple.iokit.IOUSBUserClient 650.4.4
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOUSBFamily 650.4.4
    com.apple.driver.NVSMU 2.2.9
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.10
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 21
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.8
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Unable to gather system configuration information.Model: MacBookPro7,1, BootROM MBP71.0039.B0E, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f7
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 0 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 250.06 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight
    USB Device: Internal Memory Card Reader
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus:
    Please help me fix this issue.
    Thank you,
    Nishanth

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Powermac G5 1.8ghz June 2004 - strange issues, what does this ASD code mean

    I have a powermac g5 with an issue and I would appreciate any help or input. the machine is air cooled dual 1.8ghz processors. After booting to the 10.4 os, the machine would switch to full fan power after 1-2 mins, eventually leading to a lockup shortly there after. I was wanting to upgrade the hard drive anyhow, so I went ahead put in a new drive a fresh load of 10.4. The same issue occurred, within 1-2 mins of loading the desktop fans would switch to full blast followed by a lockup.
    AHT passes all extended test.
    ASD 2.5.8 reports the following error:
    error - PHY data mismatch #define kFWPHYAddressCompareErr - 29055 // -29004
    I was thinking if anything, the temp sensors would fail, but the error appears to have something to do with firewire, which seems to be working fine. Does anyone have any insight to this error?
    After ASD I reset the pram on the machine by pressing the button on the logic board. The machine booted normally and seemed to be fixed. I was able to install updates including 10.4.11 and use the machine for an hour or so. I then walked away from the machine and it eventually went to sleep mode. When I came back the machine would not wake from sleep. When moving the keyboard/mouse I heard the system kick on and try to wake up, but never resumed video output. Eventually the fans went to full power and stayed there and I ended up powering off the machine.
    Also, intermittently, the machine hangs on a grey apple screen with no spinning gear when powered on. I have not seen this since the pram reset, but I wanted to through that out there as well.
    Any idea on what could be causing the issues?

    Any process that will cause the system to stall/be unable to proceed, would most likely be accompanied by a kick in of the fans as an overheat defense mechanism.
    If the system is looking for an address that isn't as expected, it would go on a search loop, which would increase activity, thus the fans.
    It is probable that it is related.
    It is possible that you may be able to garner further information about what is involved by looking at Console/logs for the processes that are involved at the time just prior to the events.
    Additionally, it is proper to run diagnostics several times to confirm the error.
    It would be prudent to confirm the error.
    For additional feedback on the system components, and to provide validation or refutation of possible memory related issues, use Memtest or Rember to test the RAM.
    Apple tests are all or nothing with regard to memory, while these two utilities can help identify latent or intermittent issues.
    One other thought is that the issue may be due to firmware corruption, in which case a NVRAM reset may be more valuable than a PRAM reset.

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Hi, Firefox keeps crashing, the crash signature is ProcessBoundaryCells. I tried searching Mozilla, but there are no supporting articles. If anyone can please help me fix this issue, that would be great. Thanks

    Hi, Firefox on my desktop keeps crashing at just random moments. Sometimes not very often at all, but other times it can happen a few times within an hour.
    My Desktop Window Manager also crashes regularly and the dialogue box always pops up saying its stopped working. However, this doesn't seem to effect anything.
    It could be realated though, as I just had this desktop built a few weeks ago and a few times it's crashed as well as programs.
    If anyone can help me fix this issue with Firefox, that would be great. Thanks in advance.

    Hi,
    I updated the Flash plugin, but I still keep getting crashes.
    I will try to disable the hardware acceleration in the Flash Player as you recommended and hopefully this will work.
    Although the last crash report I got has a different problem then before,
    https://crash-stats.mozilla.com/report/index/6c5d8c66-6789-4b52-94e4-61cdf2110530
    Signature: BuildArgArray
    If you can please offer any more advice that would be great, thanks.

  • HT1365 Hi can anyone help with this issue regarding my wireless magic mouse? When im on google chrome and scrolling down the page i always have youtube running in the background but the audio cuts/spits/pops can anyone help me with this?

    Hi can anyone help with this issue regarding my wireless magic mouse? When im on google chrome and scrolling down the page i always have youtube running in the background but the audio cuts/spits/pops can anyone help me with this?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

Maybe you are looking for