SQL Worksheet Gets Slower and S.l..o...w....e.....r with Use

Does anyone else notice the more you use SQL Worksheet, the
slower it gets? The first time I start it up, it'll run a
compile on an object super-fast. After running a dozen or more
compiles and test scripts, I notice it's getting slower.
Eventually, it's so slow I just kill SQL Worksheet and start it
right back up. Then it's back to warp speed again!
I'm on a Win2K machine, running Oracle 8.0.6, with version 1.6.0
of SQL Worksheet.
I have 2.1 install disc for Oracle Enterprise Manager, but I'm
uncertain if I can update what I've got (given the release of
Oracle I'm on). Any help here would be appreciated, too.

The box does not reboot itself at 7am every day at the behest of BT that is not normal behaviour.
I think you really ought to fo  a hard reset and clear everything off your hard drive and see if it solves your problem.
If it does not then you are I think looking at a slowly dying box which needs to be replaced.
Factory Reset
Switch off the Vision+ box at the mains socket
Hold down the front panel OK and down arrow buttons
Switch on the power to the Vision+ box
Allow the box to start up (about 15 seconds)
Release the OK and down arrow buttons
The Vision+ box will then contact the servers to get a new copy of its firmware
This will take around 30 minutes
Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
Someone Solved Your Question?
Please let other members know by clicking on ’Mark as Accepted Solution’
Helpful Post?
If a post has been helpful, say thanks by clicking the ratings star.

Similar Messages

  • Prepared Statemet executeQuery() getting slower and slower

    Hi,
    I have a servlet that do the following:
    1.- Construct the where clause for a query with the data the user has sent.
    2.- Get a connection from the pool.
    3.- Load a temporary table with a select that uses the where clause created on the first step.
    4.- Create a prepared statement as simple as "select * from temp_table where rownum < 500"
    5.- While there is still data on the temporary table, loop
    5.1.- Extract the information of the result set the Prepared Statemet executeQuery() returns.
    5.2.- Delete the rows of the temporary table that had been read on the 5.1 step
    5.3.- Check if there is more data
    6.- Close the result set, statements, ...
    The first runs of the loop are very fast, on the order of 500 ms. When the servlet has executed some times the loop, each run of the loop starts getting slower and slower, growing the time of the loop with each run.
    Do anyone knows why the loop takes longer and longer with each run?
    Regards,
    CptnAgua

              ...     initialization of the servlet and reading the parameters
              // The connection object is created and get a connection
              // from the application servlet pool
            ConexionBaseDatos bbdd;
            bbdd = new ConexionBaseDatos();
            try {
                bbdd.conecta();
            } catch (Exception e) {
                   ... exception code
            String sql;
            String where = " where 1=1";       
                   the where clause is created depending on the parameters received by the sevlet
            String insert;
              // here all the variables are created and most of them initialized
            insert = "insert into temp_table select * from conciliation_v x " + where;
            Statement stmt = null;
            PreparedStatement prepStmt = null;
            ResultSet rs = null;       
            SimpleDateFormat formatoFecha = null;
            Date hoy = null;
            FileWriter fstream = null;
            BufferedWriter file = null;
            String rowid_update = "";
            String rowid_select = "";
            formatoFecha = new SimpleDateFormat("yyyyMMddHHmmss");
            hoy = new Date();
            nombreFichero = "";          
              // the floder where the servlet is going to store the output is read
              // from the server.xml
            nombreFichero =
                    this.getInitParameter("DirectorioEscritura") + nombreFichero;
            File fichero = new File(nombreFichero);
              // if the file already exists, the servlet stops.
            if (fichero.exists()) {
                out.println("El fichero especificado ya existe.");
                   ... exception code
                LogManager.shutdown();
                return;
            sql = "select * from temp_table where rownum < 500";
            fstream = new FileWriter(nombreFichero);
            file = new BufferedWriter(fstream);
            try {
                   // here the temp table is filled with the update string already defined
                stmt = bbdd.getStmt();           
                stmt.executeUpdate(insert);           
                   // and the query is preparsed
                prepStmt = bbdd.getPrepStmt(sql);
                prepStmt.setFetchSize(500);                       
            } catch (SQLException e) {
                   ... exception code
            String linea;
            String field1 = "";
            String field2 = "";
            String field3 = "";
            String field4 = "";
            String field5 = "";
            String field6 = "";
            String field7 = "";
            String field8 = "";
            String field9 = "";
            String field10 = "";
            String field11 = "";
            String field12 = "";
            String field13 = "";       
            boolean hayValores = true;       
              // the loop starts          
            while (hayValores) {
                hayValores = false;           
                try {
                    // The preparsed statement is executed
                    rs = prepStmt.executeQuery();               
                } catch (SQLException e) {
                             ... exception code
                try {
                    while (rs.next()) {
                        hayValores = true;
                        try {
                            field1 =
                                    lPad(rs.getString("field1"), 10); //50
                            field2 =
                                    lPad(rs.getString("field2"), 18); //18
                            field3 =
                                    lPad(rs.getString("field3"), 10); //0
                            field4 =
                                    lPad(rs.getString("field4"), 50); //50
                            field5 =
                                    lPad(rs.getString("field5"),
                                         20); //10 + number
                            field6 =
                                    lPad(rs.getString("field6"), 16); //number
                            field7 =
                                    lPad(rs.getString("field7"),
                                         10); // 10
                            field8 =
                                    lPad(rs.getString("field8"), 10); //10
                            field9 = lPad(rs.getString("field9"), 1); //1
                            field10 = lPad(rs.getString("field10"), 10); // 0
                            field11 = lPad(rs.getString("field11"), 10); // 0
                            field12 = lPad(rs.getString("field12"), 10); // 0
                            field13 = lPad(rs.getString("field13"), 10); // 0
                            rowid_update =
                                    rowid_update + "rowid = '" + rs.getString("a_rowid") +
                                    "' OR ";
                            rowid_select =
                                    rowid_select + "'" + rs.getString("a_rowid") +
                        } catch (Exception exp) {
                                       ... exception code
                        linea =
                                field1 + field2 + field3 + field4 +
                                field5 + field6 +
                                field7 + field8 +
                                field9 + field10 + field11 + field12 + field13 +
                                "\r\n";
                        file.write(linea);                   
                } catch (Exception e) {
                             ... exception code
                file.flush();
                if (hayValores) {
                    String delete;
                    delete =
                            "delete from temp_table where a_rowid in (" +
                            rowid_select.substring(0, rowid_select.length() - 2) +
                    rowid_select = "";
                    try {                   
                        stmt.executeUpdate(delete);
                    } catch (Exception exp) {
                                  ... exception code
            file.close();
            try {
                rs.close();
            } catch (Exception e) {
                        ... exception code
            try {
                prepStmt.close();
            } catch (Exception e3) {
                        ... exception code
                   Do the already extracted lines must be flagged as extracted?
            if (tipoExtraccion.toUpperCase().equals("AUTO") ||
                marca.toUpperCase().equals("S")) {
                if (!(rowid_update.equals(""))) {
                    rowid_update =
                            rowid_update.substring(0, rowid_update.length() - 3);
                    String update =
                        "UPDATE sys_conciliation.conciliation " + "SET FECHA_INTEGRADO = SYSDATE " +
                        "WHERE " + rowid_update;               
                    try {
                        stmt.executeUpdate(update);
                        bbdd.commit();
                    } catch (SQLException e) {
                                  ... exception code
            try {
                bbdd.close();
            } catch (Exception e) {
                        ... exception code
            try {
                stmt.close();
            } catch (Exception e) {
                        ... exception code
            out.println("OK");
            out.close();
            LogManager.shutdown();
        public String rPad(String campo, int longitud) {
            if (campo == null) {
                campo = "";
            int lcampo = campo.length();
            if (lcampo > longitud)
                return (campo.substring(0, longitud));
            if (lcampo == longitud)
                return (campo);
            String nuevoCampo = campo;
            for (int a = 0; a < longitud - lcampo; a++) {
                nuevoCampo = nuevoCampo + " ";
            return (nuevoCampo);
        public String lPad(String campo, int longitud) {
            if (campo == null) {
                campo = "";
            int lcampo = campo.length();
            if (lcampo > longitud)
                return (campo.substring(0, longitud));
            if (lcampo == longitud)
                return (campo);
            String nuevoCampo = campo;
            for (int a = 0; a < longitud - lcampo; a++) {
                nuevoCampo = " " + nuevoCampo;
            return (nuevoCampo);
    }Message was edited by:
    CptnAgua

  • FIRE FOX IS GETTING SLOWER AND SLOWER LOADING PAGES I GO TO ONLINE. IT LOAD CIRCLE STOP SPINNING AND WILL START BACK BUT IT TAKES IT'S TIME TO DO SO. THIS HAS BEEN GOING ON THROUGH THE LAST SEVERAL UPGRADES.

    FIRE FOX USED TO BE A FAST BROWSER BUT IT IS GETTING SLOWER AND SLOWER. THE BLUE-E IS ABOUT TO THE POINT OF BEING FASTER THEM THE FOX. I HAVE ALWAYS LIKE THE FOX, JUST WANT TO FIGURE OUT THE PROBLEM WITH IT AND THE LONGER I HAVE THE WINDOW OPEN ARE UP THE WORSE IT GETS. I DO A LOT OF GAMING ON FACEBOOK PLAYING MAFIA WARS BUT THE PROBLEM IS NOT LIMITED TO JUST THERE IT IS ALL THE TIME AND EVERY WHERE. I HAVE TRIED ADD-ON'S THINKING THEY MAY HELP BUT NOTHING HAS DONE ANY GOOD. CHROME IS TWICE IF NOT THREE
    TIMES AS FAST AS THE FOX LATELY ON LOADING PAGES.

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • Why is my iPod touch getting slower and slower

    Please can anyone tell me why my iTouch is getting slower and slower?
    also why do we have to do so many updates?
    Can I go back to the original software for my ipod touch?
    sorry for so many questions but they are related

    - All I can say in this Apple forum is that downgrading the iOS is not supported by Apple.
    - Periodically double click the home button and close all the apps in the recently used dock. Then power off and then back on the iPod. This frees up memory. The 4G only has 256 MB of memory.
    - Restoring the iPod also helps

  • So i just got my ipod august 2012. about 1 month ago, my home button stopped working and my ipod is getting slower and slower. would apple be able to fix it for free?

    So i just got my ipod august 2012. about 1 month ago, my home button stopped working and my ipod is getting slower and slower. Would apple be able to fix it for free?

    Ipods automatically have a one year warrany unless you have violated the terms. But you can pay to extend the warranty. It depends, they may fix it for free or they may charge a bit. Im not entirely sure. But id say theres a good chance that they may fix it for free. With battery replacements, ive heard that they give you an entirely new ipod with a charge of $80. So i think it depends

  • Mac book pro getting slower and slower

    My 3 tear old mac book pro is getting slower, and slower and slower?

    How large is your HD and how much space do you have left?
    Check out the following & do the necessary: 
    User Tip:  Why is my computer slow?
    What to do when your computer is too slow
    Speeding up your Mac

  • My iMac is getting slower and slower

    My Mac (3.2GHz Intel Core i3 4GB Memory) is about 4 years old and has been getting slower and slower over the last 5 or 6 months. An earlier post recommended using 'Etracheck' which I have done and attached the information below. I think I may have a Ram issue but I would be grateful for any comments.
    Thanks
    Hardware Information: ℹ️
      iMac (27-inch, Mid 2010) (Verified)
      iMac - model: iMac11,3
      1 3.2 GHz Intel Core i3 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      ATI Radeon HD 5670 - VRAM: 512 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 6 days 16:10:12
    Disk Information: ℹ️
      SAMSUNG HD103SJ disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 999.35 GB (629.98 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5680H 
    USB Information: ℹ️
      Canon MG4200 series
      Primax USB OPTICAL MOUSE
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Western Digital My Passport 070A 999.5 GB
      S.M.A.R.T. Status: Verified
      EFI (disk4s1) <not mounted> : 210 MB
      Backup (disk4s2) <not mounted> : 999.16 GB
      Apple Computer, Inc. IR Receiver
      Apple Inc. Built-in iSight
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.67) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.67) Support
    Startup Items: ℹ️
      ChmodBPF: Path: /Library/StartupItems/ChmodBPF
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.icloud.fmfd.plist
      [failed] com.apple.scopedbookmarkagent.xpc.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.GSSCred.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.periodic-weekly.plist
      [failed] com.apple.tccd.system.plist
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [invalid?] com.oracle.java.Java-Updater.plist Support
      [running] com.rim.BBLaunchAgent.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.ea.origin.ESHelper.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [invalid?] com.oracle.java.Helper-Tool.plist Support
      [running] com.rim.BBDaemon.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ℹ️
      BlackBerry Device Manager ApplicationHidden (/Library/Application Support/BlackBerry/BlackBerry Device Manager.app)
    Internet Plug-ins: ℹ️
      Unity Web Player: Version: UnityPlayer version 4.1.2f1 Support
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.4.4.2 Support
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      AdobePDFViewer: Version: 10.1.12 Support
      EPPEX Plugin: Version: 10.0 Support
    User Internet Plug-ins: ℹ️
      BlueStacks Install Detector: Version: Unknown
      Picasa: Version: 1.0 - SDK 10.4 Support
    Safari Extensions: ℹ️
      Slick Savings
      Searchme
      Amazon Shopping Assistant
      Ebay Shopping Assistant
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 369.37 GB
      Destinations:
      Backup [Local]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 0 B < (Disk used 369.37 GB X 3)
    Top Processes by CPU: ℹ️
          3% WindowServer
          0% AppleSpell
          0% BBLaunchAgent
          0% coreservicesd
          0% Microsoft Word
    Top Processes by Memory: ℹ️
      180 MB Mail
      176 MB iTunes
      64 MB softwareupdated
      52 MB Safari
      47 MB mds_stores
    Virtual Memory Information: ℹ️
      35 MB Free RAM
      824 MB Active RAM
      808 MB Inactive RAM
      652 MB Wired RAM
      19.96 GB Page-ins
      1.41 GB Page-outs

    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the word "Starting" (without the quotes.) You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard."
    Each message in the log begins with the date and time when it was entered. Note the timestamp of the last "Starting" message that corresponds to the beginning of an an abnormal backup. Now
    CLEAR THE WORD "Starting" FROM THE TEXT FIELD
    so that all messages are showing, and scroll back in the log to the time you noted. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ If all you see are messages that contain the word "Starting," you didn't clear the text field.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. Don't post more than is requested.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.

  • After starting up, it seems to get slower and slower until it times out

    It starts up fine, but then it gets slower and slower until it either freezes or it times out.

    Try to boot up in safe mode by holding the shift key down when the computer starts up:
    http://support.apple.com/kb/HT1564

  • My Mac Book air gets slower and slower. Is there any software or application to increase perfromance ?

    My Mac Book air gets slower and slower. Is there any software or application to increase perfromance ?

    jean-michel from France wrote:
    My Mac Book air gets slower and slower. Is there any software or application to increase perfromance ?
    Try this program to clean and optimize your Mac:
    http://www.macupdate.com/app/mac/11582/onyx
    It works for me! Air i7.

  • MacBook Pro boot or shutdown getting slower and slower, is how is it, how to resolve?

    MacBook Pro boot or shutdown getting slower and slower, is how is it, how to resolve?
    MacBook Pro开机或关机越来越慢,是怎么回事,如何解决?

    Open your disk utility and verify your disk permissions - if errors are found - repair them and restart your macbook when it's done the repairs....
    see if that sorts it out for you...
    good luck

  • After my phone 4 was upgraded to iOS 5, my iphone 4 has been getting slower and slower. It's really annoying. How to solve this problem?

    After my phone 4 was upgraded to iOS 5, my iphone 4 has been getting slower and slower. It's really annoying. How to solve this problem?

    hi Allan,
    Can't make or receive any calls. When making a call, you see the thing dialing but no tone, it rings at he other end however. When somebody trying to call me, it does not ring at my end. If you try to end the call, the phone page will just freeze, when you exit the phone page to go try the MP3 player for example, and come back, the phone is still trying to end the previous call. I tried resetting the network settings, turn the phone off and on , no difference at all. It's easter Sunday, everything is closed here in Montreal.

  • When i try to watch a video in youtube fullscreen the video gets slow and its cuts off. it happens only in firefox Help me please.

    Hello
    since this morning when i try to watch a video in youtube fullscreen the video gets slow and its cuts off. it happens only in firefox Help me please.if i watch the video in you tube normal size its correct the problem is just in fullscreen mode.

    You can check for problems caused by recent Flash updates and try these:
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Flash_Player_11.3_Protected_Mode_-_Windows

  • Firefox gets slower and slower over time.

    I have been using firefox for some time, Like it better than Safari generally, but I've noticed (and it has gotten worse with 3.6.x) that if you leave FF running for extended periods of time it gets slower and slower, does not seem to matter if add-ons are installed or not, and it gets REALLY bad after going in and out of flash based apps/games a couple times. It is not just a mac problem as this behaviour also happens on windows xp or newer, but windows OS needs to be rebooted daily anyways so most people won't notice.

    Proceed with [[Basic Troubleshooting]] first of all.
    You could also try running Firefox in [[Safe Mode]]. If it functions properly in that configuration, then one of your add-ons is the culprit.

  • My Mac Pro is getting slower and slower

    I have an Mac Pro early 2009 version which is getting slower and slower. Startup time is about 3 minutes. How can I fix this?
    Thank you.

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Select the messages logged after the boot, during the time something abnormal was happening. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    For example, if the problem is a slow startup taking three minutes, post the messages timestamped within three minutesafter the boot time, not before. Please include the BOOT_TIME message at the beginning of the log extract.
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the entire contents of the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post any other kind of diagnostic report, such as hang logs — they're very long and not helpful.

  • When I first open firefox it is fast but as I surf it gets slower and slower them stops, I have to close it and restart. what do I need to do to fix this?

    I start of using Firefox 7, as I surf or stumble it gets slower and slower loading pages till it just starts to freeze up. I have to shut down firefox and restart. This only happens after 3 or 4 web pages.

    As suggested I went to Control Panel & chose Add/Remove Pgms. Now, near the bottom was Windows iLivid Toolbar. I then hi-lighted it & removed it. The date it was last used seemed to be when my problem started. I am not a big user of toolbars (except the main ones); so I had no issues about deleting one that I did not recognize.
    Then I opened up Mozilla again & changed my Home Page, using Tools then Options. I closed out Mozilla, then brought it up again & my new Home Page was showing just fine. Wow! What a relief it worked. I hope it lasts. Thanx Firefox !

Maybe you are looking for

  • Who do you categorize in Numbers 3.0

    The most useful feature of Numbers in iWorks 9 was the Categorize feature.  This alone made me switch over to Numbers from MS Excel.  However now Apple has removed this feature in Numbers 3.0!  How am I supposed to categorize with Numbers?  Do I retu

  • Possible wi-fi connectivity solution - requires Windows under Boot Camp

    Hi guys - stumbled across this earlier whilst fiddling with settings and it has made an amazing difference. As we all know, unless you are running your Airport in wireless-n 5GHz only mode, it will drop connections left, right and centre. This is oka

  • JDeveloper and Java EE 5

    Hello all, Which version of JDeveloper with OC4J fully supports Java EE 5? We urgently want to use the web-services possibilities (JAX-WS) of Java EE 5, but ii is not clear whch version of JDeveloper version supports this. regards Ronald

  • Bind variable as where clause

    hello, we want to build an dynamic sql IR. so when a user logs into our application we have an page process that fills an application item :F_ITEM_WHERE with part of the where clause from an IR. On the page with the IR we have as region source someth

  • Bar - Lightweight xcb-based bar

    A lightweight bar based on XCB (yay). Provides foreground/background color switching along with text alignment (screw you dzen!), nothing less and nothing more. Read this first. Grab the code from Github Last edited by TheLemonMan (2012-07-18 15:31:5