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

Similar Messages

  • IMac getting slower -and Im getting more frustrated!

    Like others it would appear....  I am finding my iMac is getting slower and slower with each day that passes since upgrading to Mavericks.  It is slow to open and close apps.  Slow to open mail.  Often hangs with the little ball spinning forever and I have to hold the start button to shut down.  I've even noticed that simple scrolling jumps all over the place as it is slow to respond. iMessage is often up to 4 minutes behind!  I noticed that others have used EtreCheck which has been helpful to those 'in the know'.  Any helpful advice would be greatly appreciated, as I have no diea what's what! Thank you.
    Hardware Information:
              iMac (21.5-inch, Late 2009)
              iMac - model: iMac10,1
              1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              ATI Radeon HD 4670 - VRAM: 256 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 1 day 4:47:57
    Disk Information:
              ST31000528AS disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 999.35 GB (446.25 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              PIONEER DVD-RW  DVRTS09 
    USB Information:
              Canon MP495 series
              Apple Inc. Built-in iSight
              TOSHIBA USB 3.5"-HDD 1.5 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Time Machine Backup (disk1s2) /Volumes/Time Machine Backup: 1.5 TB (7.02 GB free)
              Apple Internal Memory Card Reader
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.rim.driver.BlackBerryUSBDriverInt          (0.0.74)
              com.Cycling74.driver.Soundflower          (1.6.2 - SDK 10.6)
    Problem System Launch Daemons:
    Problem System Launch Agents:
              [loaded] com.paragon.NTFS.notify.plist 3rd-Party support link
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist 3rd-Party support link
              [loaded] com.google.keystone.daemon.plist 3rd-Party support link
              [loaded] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [loaded] com.rim.BBDaemon.plist 3rd-Party support link
    Launch Agents:
              [loaded] com.google.keystone.agent.plist 3rd-Party support link
              [loaded] com.rim.BBAlbumArtCacher.plist 3rd-Party support link
              [loaded] com.rim.BBLaunchAgent.plist 3rd-Party support link
    User Launch Agents:
              [failed] com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist 3rd-Party support link
              [loaded] com.facebook.videochat.[redacted].plist 3rd-Party support link
              [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist 3rd-Party support link
              [failed] SOS.OnlineBackup.LaunchAgent.plist 3rd-Party support link
    User Login Items:
              MyTomTomSA (EMMA)
              iTunesHelper
              BusyCalAlarm
              LivedriveCore
              Dropbox
              Canon IJ Network Scanner Selector2
              Dropbox App ONLY
    Internet Plug-ins:
              AmazonMP3DownloaderPlugin1017277: Version: AmazonMP3DownloaderPlugin 1.0.17 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.1.0.24   - SDK 10.8 3rd-Party support link
              OfficeLiveBrowserPlugin: Version: 12.3.6 3rd-Party support link
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 3rd-Party support link
              FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 11.9.900.170 - SDK 10.6 Outdated! Update
              QuickTime Plugin: Version: 7.7.3
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 3rd-Party support link
              EPPEX Plugin: Version: 3.0.5.0 3rd-Party support link
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    User Internet Plug-ins:
              Google Earth Web Plug-in: Version: 7.1 3rd-Party support link
    3rd Party Preference Panes:
              Flash Player  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              MacFUSE  3rd-Party support link
              Paragon NTFS for Mac ® OS X  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4 3rd-Party support link
              Solver:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              TomTomHOMERunner:          Version: 2.9.2.1693 - SDK 10.4 3rd-Party support link
                        /Users/[redacted]/Library/Application Support/TomTom HOME/TomTomHOMERunner.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Database Utility:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Office Reminders:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
              Microsoft Language Register:          Version: 14.3.9 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              /Users/[redacted]/Library/Application Support/Helper
                        Wondershare Helper Compact:          Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
                        Aimersoft Helper Compact:          Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
              Wondershare Helper Compact:          Version: 2.2.6.0 - SDK 10.5 3rd-Party support link
                        /Applications/Wondershare Helper Compact/Wondershare Helper Compact.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Music Healing - Free:          Version: 1.0 - SDK 10.0 3rd-Party support link
              Rename A Better Finder 8:          Version: 8.77 - SDK 10.0 3rd-Party support link
              Healing Voice | Lite:          Version: 1.1 - SDK 10.0 3rd-Party support link
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 930.71 GB Disk used: 515.11 GB
              Destinations:
                        Time Machine Backup [Local] (Last used)
                        Total size: 1 
                        Total number of backups: 180
                        Oldest backup: 2011-03-13 08:43:29 +0000
                        Last backup: 2014-01-22 16:30:29 +0000
                        Size of backup disk: Too small
                                  Backup size 1  < (Disk used 515.11 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  58%          PluginProcess
                  15%          com.apple.WebKit.Networking
                   8%          WindowServer
                   2%          Safari
                   1%          EtreCheck
    Top Processes by Memory:
              156 MB          com.apple.MediaLibraryService
              156 MB          Quicken Essentials
              156 MB          iTunes
              111 MB          softwareupdated
              106 MB          com.apple.WebKit.WebContent
    Virtual Memory Information:
              320 MB          Free RAM
              1.66 GB          Active RAM
              1.08 GB          Inactive RAM
              647 MB          Wired RAM
              2.78 GB          Page-ins
              255 MB          Page-outs

    A.
    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock all your user files, reset their ownership, and remove their access-control lists. If you've set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Back up all data.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.
    B.
    Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and this support article for instructions. If Font Book finds any issues, resolve them.
    From the application's menu bar, select
    File ▹ Restore Standard Fonts...
    You'll be prompted to confirm, and then to enter your administrator login password.
    Boot in safe mode to rebuild the font caches. Boot again as usual and test.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. In that case, ask for instructions.
    Also note that if you deactivate or remove any built-in fonts, for instance by using a third-party font manager, the system may become unstable.
    C.
    "BlackBerry Desktop Manager" is incompatible with Mavericks and should be removed.
    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    I never install system modifications myself, and I don't know how to uninstall them. You'll have to do your own research to find that information.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmymac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button.
    Back up all data before making any changes.
    You will generally have to reboot in order to complete an uninstallation. Until you do that, the uninstallation may have no effect, or unpredictable effects.
    If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    WARNING: Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" such as "AppCleaner" and the like that purport to remove software.

  • 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

  • I got macbook pro 13" i bought in 2011 but its now getting slow when i start up or when shutting down .and apps takes time to open like just bouncing????????

    i got macbook pro 13" i bought in 2011 but its now getting slow when i start up or when shutting down .and apps takes time to open like just bouncing????????

    See the Mac OS X Speed FAQ.

  • What is happening with Firefox; it is getting slower & slower from v5 thru 6 & now v7; it basically will not load webpages on start and is then very slow?

    Firefox
    Version
    7.0
    User Agent
    Mozilla/5.0 (Windows NT 6.1; rv:7.0) Gecko/20100101 Firefox/7.0
    Since V5 thru v6 and now v7 firefox has been getting slower & slower particularly at logon and is now virtually useless.
    IE9 is working Ok.
    Problem is occurring on two different computers.
    Have doe necessary maintenance clearing cache, etc and on computer running registry mechanic, win Optimiser * and norton computer maintenance regularly
    Any suggestions appreciated?
    Regards
    Bob

    Hi lda1979, 
    Welcome to the forum and thanks for your post. 
    I am so sorry that your order has been delayed and you are not getting any information on this. 
    Can you send me in your details using the "Contact The Mods" link found in my profile and I will find out what is happening. 
    Cheers,
    OlgaC 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • 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

  • I have my Mac Book Pro with the OS Yesomite since a month and I am feeling that my mac is getting slower than before a month. I want to install OS Lion on my mac.  I think i have a DVD of OS Lion which comes when i bougnt Mac laptop in 2011.

    I have my Mac Book Pro with the OS Yesomite since a month and I am feeling that my mac is getting slower than before a month. I want to install OS Lion on my mac.  I think i have a DVD of OS Lion which comes when i bougnt Mac laptop in 2011. Should i install OS Lion? What wil happen if i install OS Lion, do i lost my Applications or ...????

    Hi, the last install dvd that came out for mac's was Snow Leopard,10.6.3. Lion is a download from apple. You cannot just install it over Yosemite. You would have to backup your drive to save files you want and do a clean install. You might want to look into getting more memory. You can run 8 Gig"s of memory on your Macbook Pro.If your Macbook Pro is getting really slow you might want to download EtreCheck  and then post the results here.http://www.etresoft.com/etrecheck  Check out this article.  http://support.apple.com/kb/PH19031

  • 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.

  • BTV getting slower and s l o w e r and s l o ...

    Hi,
    With every upgrade my Silver BTV is getting slower. I used to occasionally get the "Recorded TV is working. Please try later" every now and again, but now I get it almost every time I set up a recording or delete something. I think my record for this to be on the screen is over 20 seconds but 5 - 10 seconds is quite normal. I have done a soft reboot (and obviously BTV decides to do its own really annoying reboot around 7 am some mornings when I want to be able to rewind live BBC Breakfast to 6 am- WHY DOES IT DO THIS?) . This does not help but it least it fixes the other extremely annoying bug where it thinks it is running out of disk space and starts deleting programs when it really has no need to!!!
    Ta, Andy.

    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.

  • My 24" IMac is slow and getting slower and over heats

    24" IMac 2.8Ghz, 4G of Ram 320G Intel HD O/S Mavericks 10.9.5
    Computer is slow and getting slower.
    Seems to overheat and freeze when processing video
    Sepearte issue blue tooth not working Computer says now hardware

    EtreCheck version: 1.9.15 (52)
    Report generated 7 October 2014 3:14:24 pm AEDT
    Hardware Information: ?
      iMac Intel Core 2 Duo (aluminum enclosure) (Early 2008)
      iMac - model: iMac8,1
      1 2.8 GHz Intel Core 2 Duo CPU: 2 cores
      4 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1920 x 1200
    System Software: ?
      OS X 10.9.5 (13F34) - Uptime: 0 days 1:3:9
    Disk Information: ?
      WDC WD3200AAJS-40VWA1 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (179.11 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple, Inc. Keyboard Hub
      Mitsumi Electric Apple Optical USB Mouse
      Apple, Inc Apple Keyboard
      Apple Inc. Built-in iSight
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.elgato.driver.DontMatchAfaTech (1.1) Support
      [not loaded] com.elgato.driver.DontMatchCinergy450 (1.1) Support
      [not loaded] com.elgato.driver.DontMatchCinergyXS (1.1) Support
      [not loaded] com.elgato.driver.DontMatchEmpia (1.1) Support
      [not loaded] com.elgato.driver.DontMatchVoyager (1.1) Support
      [not loaded] com.microsoft.driver.MicrosoftMouse (7.0.0) Support
      [not loaded] com.microsoft.driver.MicrosoftMouseBluetooth (7.0.0) Support
      [not loaded] com.microsoft.driver.MicrosoftMouseUSB (7.0.0) Support
      [not loaded] com.wdc.driver.1394HP (1.0.9) Support
      [not loaded] com.wdc.driver.USBHP (1.0.11) Support
    Startup Items: ?
      EyeConnect: Path: /Library/StartupItems/EyeConnect
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [running] com.wdc.SmartwareDriveService.plist Support
      [running] com.wdc.WDSmartWareService.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.divx.agent.postinstall.plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ?
      iTunesHelper
      AdobeResourceSynchronizer
      Skype
      EyeTV Helper
      MicrosoftMouseHelper
      Dropbox
      WDQuickView
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.3 Support
      OVSHelper: Version: 1.1 Support
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivXBrowserPlugin: Version: 2.1 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 10.1.12 Support
      EPPEX Plugin: Version: 10.0 Support
    Safari Extensions: ?
      DivXHTML5
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      DivX  Support
      Flash Player  Support
      Flip4Mac WMV  Support
      Microsoft Mouse  Support
    Time Machine: ?
      Skip System Files: NO
      Auto backup: YES
      Time Machine not configured!
    Top Processes by CPU: ?
          2% WindowServer
          0% fontd
          0% MicrosoftMouseHelper
          0% Dropbox
          0% aosnotifyd
    Top Processes by Memory: ?
      221 MB Safari
      147 MB com.apple.IconServicesAgent
      139 MB com.apple.WebKit.WebContent
      135 MB com.apple.WebKit.Plugin.64
      131 MB Solitaire
    Virtual Memory Information: ?
      604 MB Free RAM
      1.93 GB Active RAM
      1010 MB Inactive RAM
      504 MB Wired RAM
      451 MB Page-ins
      0 B Page-outs

  • New HD and OS installed, but system gets slower as time goes by

    I have just put in a new 250GB HD, a new DVD-R drive, and installed a new OS(10.4.11). When the Powerbook first boots up, it works fine, but as time goes by(just a few minutes even), the system gets bogged down and eventually grinds to a halt. I've been told the HD is "leaking" to a file and the file is getting bigger and bigger to the point that the system can't run. I've watched the HD and I don't see any files getting bigger, but the HD "GB available" gets smaller and smaller(starting at 221GB and going down to below 200GB. Not sure what to do next. Please help.

    Use Activity Monitor to see what is hogging your CPU cycles and slowing the machine down. The difference between 200GB available and 221GB available is not causing the slowdown. The process that is consuming enough CPU cycles to write 21GB of data to the hard drive is your problem.

  • 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 iPad is the first one and is getting slow also if I'm on a app or something it can go off it. Any tips?

    My iPad is the first one and is getting slow also if I'm on a app or something it can go off it. Any tips?
    Or can I trade it in to apple and pay extra for a newer one.
    I have had it for 3 years

    My tip is to sell and get a new one. That is not a joke, just sold my wife's first gen, that she had for only a year. Fully expect Apple to retire it with ios 7. Got her ipad 3 and probably will have to retire that in a year or two. I feel as it is better to sell now, before new ios announced.

  • 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.

Maybe you are looking for

  • How do you use the P1102W Printer with an Apple iPad?

    How can I print docs. from my iPad to the P1102W? Other printer manufacturers have a printer server app that would use WiFi or is there a way to have the printer as part of the cloud?

  • Time Capsule vs. any external USB harddisk

    I am new to Mac, and currently learning how to switch from PC to Mac. I have my newly bought MacBook Pro, iPad, iPhone3G and also two PCs running on a Linksys Wireless N router. I use a Seagate External Drive to periodically backup my PC via eSATA. I

  • Font "Verdana" is not working - Oracle forms 11g

    OS : Windows XP 32 bits - SP 3 Forms : 11.1.2.0 - Development I'm using the font "Verdana" for some items in a form. When i test it, forms keeps using another font (arial). However, other fonts do work. These are the lines in the registry.dat file: d

  • To check the TCP/IP RFC destination connectivity

    I am working on R3-->XI connectivity and when i check the destination it looks fine but when I check with the function module for Connectivity, It gives me error.Please suggest any function module who ensures the R3->XI connectivity. Thanx in advance

  • Fireworks super slow opening pdf files

    I am opening the first page of a bunch of pdf files and then batching them into thumbnails. This is relatively quick when I do it on my laptop but when I try and do this on my desktop, it almost takes 20 minutes per file to open. I can open these sam