Procedure Help Please

I am creating an apex app as part of a personal project and am a bit stuck.
I have created 2 procedures but I can't figure out how to make them run at the same time, I would ideally like to put them into one single procedure, but every time I try I end up with error warnings.
the procedures I have are as follows:
PROCEDURE 1
CREATE OR REPLACE PROCEDURE upload_new_image
  (p_filename IN VARCHAR2)
IS
  l_upload_size   INTEGER;
  l_upload_blob   BLOB;
  l_image_id      NUMBER;
  l_image         ORDSYS.ORDImage;
BEGIN
    -- Get the length, MIME type and the BLOB of the new image from the
    -- upload table. apex_application_files is a synonym for WWV_FLOW_FILES
  SELECT doc_size,
         blob_content
  INTO   l_upload_size,
         l_upload_blob
  FROM apex_application_files
  WHERE name = p_filename;
  -- Insert a new row into the table, returning the newly allocated sequence
  -- number from seq_image_id
  INSERT INTO images
   image_id,
   filename,
   image
  VALUES
   seq_image_id.nextval,
   p_filename,
   ORDSYS.ORDIMAGE.INIT()
  RETURNING image_id
  INTO l_image_id;
  -- lock the row
  SELECT image
  INTO l_image
  FROM images
  WHERE image_id = l_image_id
  FOR UPDATE;
-- copy the blob into the ORDImage BLOB container
DBMS_LOB.COPY( l_image.source.localData, l_upload_blob, l_upload_size );
l_image.setProperties(); -- just in case
  UPDATE images
  SET image = l_image
  WHERE image_id = l_image_id;
  -- clear from upload table
  DELETE FROM apex_application_files 
  WHERE name = p_filename;
  COMMIT;
  EXCEPTION
  WHEN others
  THEN htp.p(SQLERRM);
END upload_new_image;PROCEDURE 2
CREATE OR REPLACE PROCEDURE create_blob_thumbnail (p_image_id IN INTEGER) IS
  l_orig          ORDSYS.ORDImage;
  l_thumb         ORDSYS.ORDImage;
  l_blob_thumb    BLOB;
BEGIN
  -- lock row
  SELECT image
  INTO l_orig
  FROM images
  WHERE image_id = p_image_id FOR UPDATE;
  l_thumb := ORDSYS.ORDImage.Init();
  dbms_lob.createTemporary(l_thumb.source.localData, true);
  ORDSYS.ORDImage.processCopy(l_orig,
                              'maxscale=128 128',
                              l_thumb);
  UPDATE images
  SET thumbnail = l_thumb.source.localData
  WHERE image_id = p_image_id;
  dbms_lob.freeTemporary(l_thumb.source.localData);
  COMMIT;
END;Any help would be greatly appreciated
Edited by: BluShadow on 30-Nov-2012 14:45
added {noformat}{noformat} tags. Please read {message:id=9360002} and learn to do this yourself in future posts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

974264 wrote:
I have created 2 procedures but I can't figure out how to make them run at the same timeRunning things in parallel would require setting them running as scheduled jobs so they run in their own transactional sessions. You won't be able to run two procedures in parallel from the same session.
However you should certainly be able to combine two procedures into one if that is all you require.

Similar Messages

  • Store procedure help please

    Oracle Stored procedure query..
    I have 1 table with below schema.
    ID empID clsID Year Cuser CDatetime
    Sample Data:
    ID     EMPID     ClsID     Year     Cuser     CDateTime
    1     100     2     2000     John     1/1/2000
    2     100     3     2000     John     1/1/2000
    3     100     4     2000     John     1/1/2000
    4     100     5     2000     John     1/1/2000
    5     100     6     2000     John     1/1/2000
    6     100     7     2000     John     1/1/2000
    7     100     8     2001     John     1/1/2000
    8     100     2     2001     John     1/1/2000
    9     100     3     2001     John     1/1/2000
    10     101     9     2000     John     1/1/2000
    I need to write a stored procedure which will copy the data from Year 2000 to year 2001. So I can reuse data from yr 2000 to yr 2001.
    Conditions:
    1. Copy data from 2000 to 2001.
    2. If 2001 already has some data, leave those data alone.
    3. No duplicate data from 2000 to 2001.
    Using cursor variable what is the stored procedure will do the same. I need the stored procedure code, Thanks in advance.

    here are some basic query. i'll leave to you the creation of procedure so that you have something work on.
      select [sequence id e.g. sequence_id.nextval],
             empid,
             cisid,
             year,
             cuser,
             cdatetime
        from [table name]
       where (empod,cisid,year,cuser,cdatetime) not in (select empod,cisid,year,cuser,cdatetime
                                                           from table)

  • Tried to upgrade and after uninstalling and reinstalling several times, keep getting "procedure entry point could not be located in dynamic link library" followed by "iTunes was not installed properly"  Error 7.....Help, please??

    Tried to upgrade as instructed and after uninstalling and reinstalling (even back to the former iTunes which I was happy with)several times, keep getting message "Procedure entry point could not be located in dynamic link library"  followed by "iTunes was not installed properly"  "Error 7".    Help, please??

    Entry point errors can usually be fixed by deleting the offending dll, then repairing the component it is part of from the programs and features control panel. Unfortunately you neglected to include the detail of which dll is mentioned.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Accidentally deleted bonjour from my computer.  iTunes will not open.  Help Please.

    Accidentally deleted Bonjour from my computer.  iTunes will not open.  Running Windows XP. Help please.

    Uninstalling and then reinstalling your iTunes should also get your Bonjour reinstalled.
    For the reinstall, use an installer downloaded from the Apple website:
    http://www.apple.com/itunes/download/
    ... or you could get it back via your Apple Software Update for Windows.
    If you'd prefer not to uninstall iTunes, try the following procedure.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the Bonjour.msi (or Bonjour64.msi) to do a standalone Bonjour install.

  • TS3274 What woud I do if my screen is not responding? I can't unlock my mini ipad because the touchscreen is not working. help please.

    Hi guys, please help me. my son's mini ipad cannot be unlocked because the touchsreen is not responding.. help please. thank you.

    A reset should help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • No internet connection(help please)

    I have the model---> Linksys WRT54GL Wireless-G Broadband Router
    As I connect the ISPs dsl cable to router the internet light doesn't turn on! Also the phone became "dead"! when i put out the ISPs dsl cable the phone is well again!
    The problem isn't the phone but why the router does not connect to the internet!
    please help me!
    thanx in advance

    Please state the make and model of your modem.
    I have tried to access web data on your OTE system.  Since I don't speak Greek, I have only been able to find some basic information.  Do you know what kind of "Internet Connection Type" you have from OTE?  Common types include:  Automatic Configuration - DHCP, PPPoE, Static IP, PPTP, L2TP.  Also, do you know if OTE requires a "Host name" or "Domain name"?
    Since you have already tried to setup the router a few times, you should reset the router to factory defaults, before trying to get it to work.   Please use the following procedure:
    1)  Power down all computers, the router, and the modem, and unplug them from the wall.
    2)  Disconnect all wires from the router.
    3)  Power up the router and allow it to fully boot (1-2 minutes).
    4)  Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5)  Power down the router.
    6)  Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7)  Power up the router and allow it to fully boot (1-2 minutes).
    8)  Power up the computer (if the computer has a wireless card, make sure it is off).
    9)  Try to ping the router.  To do this, click the "Start" button > All Programs > Accessories > Command Prompt.  A black DOS box will appear.  Enter the following:  "ping 192.168.1.1"  (no quotes), and hit the Enter key.  You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out."   If you see "Reply from ...", your computer has found your router.
    10)  Open your browser and point it to 192.168.1.1.  This will take you to your router's login page.  Leave the user name blank, and in the password field, enter "admin"  (with no quotes).   This will take you to your router setup page.  Note the version number of your firmware (usually listed near upper right corner of screen).  Exit your browser.
    If you get this far without problems, I would suggest that you simply try using the router the way it is, at its factory defaults.  To do this, power down the entire system and unplug all devices from the wall.  Connect an ethernet cable from your modem to the "Internet" port on your WRT54GL.  Power up the modem and allow it to fully boot (1-5 minutes).  Power up the router and allow it to fully boot (1-2 minutes).  Power up your computer.  Test your system.  Can you get an Internet connection?  If not, power cycle the entire system, then try to get an Internet connection again.
    If it still fails, then power down your system, and disconnect the modem from the router.  Be sure the modem is disconnected from the router before you proceed. Then try the Easylink Advisor (or setup the router manually, if you prefer), and see if you can get your router setup and working.
    If you cannot get "Reply from ..." in step 9 above, your router is dead.
    If you get a reply in step 9, but cannot complete step 10, then either your router is dead or the firmware is corrupt.  In this case, use the Linksys tftp.exe program to try to reload your router with the latest firmware.  After reloading the firmware, repeat the above procedure starting with step 1.
    If you need additional help, please state the results of steps 9 and 10.  Also, if you get any error messages, copy them exactly and report back.
    Please let me know what happens.

  • Plsql procedure help..

    Hi There,
    We're developing a procedure that takes a string, a delimiter, assign the individual tokens to variables, and return the variables to the calling program.
    Since I'm new to pl/sql, I'm not quite sure how to do the last bit (assign the tokens to the variables and return them to the calling program), and we we're looking at some help please. In other words, I have a loop, fetch a cursor into variable.. and we're wondering how can we assign the 1st value of the cursor to the 1st defined OUT variable in the procedure heading (the 2nd cursor value to the 2nd OUT variable, ..etc)?
    Here is the code:
    procedure string_to_tokens (in_str                IN varchar2,
                                    delim                      IN varchar2,
                        VENDOR_ID               OUT number,
                        CCF_ID                    OUT number,
                        PRR_ID                    OUT number,
                        CON_NAME                 OUT VARCHAR2,
                        CONT_TYPE_ID               OUT number,
                        DEPOSIT_DATE               OUT VARCHAR2,
                        CON_YEAR               OUT VARCHAR2,
                        CHG_NAME               OUT VARCHAR2,
                        CON_AMOUNT               OUT number,
                        TOT_AMOUNT               OUT number)
    is
         mystring varchar2(100);
         cursor str_cur is
         SELECT
               SUBSTR
                    ( in_str
                    , DECODE(LEVEL, 1, 1, INSTR(in_str, delim, 1, LEVEL-1)+1)
                    , INSTR(in_str, delim, 1, LEVEL) -
                      DECODE(LEVEL, 1, 1, INSTR(in_str, delim, 1, LEVEL-1)+1)
         FROM DUAL
         CONNECT BY INSTR(in_str, delim, 1, LEVEL)>0
         ORDER BY LEVEL ASC;
    begin
         open str_cur;
         loop
         fetch str_cur into mystring;
         exit when str_cur%NOTFOUND;
         dbms_output.put_line ('mystring is '||mystring);
         end loop;
         close str_cur;
    end string_to_tokens;a sample input string would be:
    '22|||1334502 RegXL Ltd|18|10032011|2011|John Joe|2000.00|2000.00'The delimiter would be '|'.
    Thanks in advance for your help.
    Thanks
    Edited by: rsar001 on Oct 26, 2011 7:39 AM
    Edited by: rsar001 on Oct 26, 2011 7:40 AM

    Hi,
    You can do something like this:
    CREATE OR REPLACE procedure string_to_tokens
    (                                  in_str                    IN varchar2,
                                    delim                      IN varchar2,
                        VENDOR_ID               OUT number,
                        CCF_ID                    OUT number,
                        PRR_ID                    OUT number,
                        CON_NAME                 OUT VARCHAR2,
                        CONT_TYPE_ID               OUT number,
                        DEPOSIT_DATE               OUT VARCHAR2,
                        CON_YEAR               OUT VARCHAR2,
                        CHG_NAME               OUT VARCHAR2,
                        CON_AMOUNT               OUT number,
                        TOT_AMOUNT               OUT number,
                        encloser               IN  VARCHAR2     := '"'          -- new argument added
    is
         mystring     VARCHAR2 (32767)     := in_str || delim;     -- Remining text to process
         sub_str          VARCHAR2 (32767);                            -- Nth delimited item
         loop_cntr     PLS_INTEGER          := 0;
         delimiter_pos     PLS_INTEGER          := -1;               -- position of 1st delimiter in remaining text
    begin
         WHILE  delimiter_pos != 0
         AND    loop_cntr     <= 10
         LOOP
             loop_cntr := loop_cntr + 1;
             IF  SUBSTR (mystring, 1, 1) = encloser               -- Changes start here
             THEN       -- Next token is enclosed; next token ends with encloser
              delimiter_pos := INSTR (mystring, encloser, 2);
                 sub_str := SUBSTR ( mystring
                             , 2
                          , delimiter_pos - 2
              mystring := SUBSTR ( mystring
                               , delimiter_pos + 2
             ELSE     -- Usual situation: next token ends with delim
                 delimiter_pos := INSTR (mystring, delim);
                 sub_str := SUBSTR ( mystring
                             , 1
                          , delimiter_pos - 1
              mystring := SUBSTR ( mystring
                               , delimiter_pos + 1
             END IF;
             IF  delimiter_pos > 0
             THEN
                                                 -- Changes end here
              IF    loop_cntr =  1
              THEN
                  vendor_id    := TO_NUMBER (sub_str);
              ELSIF loop_cntr =  2
              THEN
                  ccf_id       := TO_NUMBER (sub_str);
              ELSIF loop_cntr =  3
              THEN
                  prr_id       := TO_NUMBER (sub_str);
              ELSIF loop_cntr =  4
              THEN
                  con_name     :=            sub_str;
              ELSIF loop_cntr =  5
              THEN
                  cont_type_id  := TO_NUMBER (sub_str);
              ELSIF loop_cntr =  6
              THEN
                  deposit_date  := TO_NUMBER (sub_str);     -- Should this be a DATE, rather than a NUMBER?
              ELSIF loop_cntr =  7
              THEN
                  con_year     :=            sub_str;
              ELSIF loop_cntr =  8
              THEN
                  chg_name     :=            sub_str;
              ELSIF loop_cntr =  9
              THEN
                  con_amount   := TO_NUMBER (sub_str);
              ELSIF loop_cntr = 10
              THEN
                  tot_amount   := TO_NUMBER (sub_str);
              END IF;
             END IF;
         END LOOP;
    end string_to_tokens;
    {code}
    I added an optional argument after tot_amount, and changed a few lines of code at the beginning of the loop.  The rest of the procedure is unchanged.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I created a new library (shift-open itunes) but now I cannot get my old itune library to open.  Help please

    I created a new itunes library on my PC by following the proper procedure.  (shift - open itunes-create library).  But now i cannot find my old itunes library, so that I can open it.   I know my music has not been lost but I cannot acces it.  When I open itunes by holding down the shift, it does not show any designation for my old libray.  help please.

    The point is that there are four i product users for one computer in my house, and not everyone wants the same music on their device.  Like I said before, the ipod is not syncing to the new library even though I plug it in when the new itunes library is pulled up.  It keeps syncing to the old library...

  • I think I killed my Mac, trying to install XP - Help, please!

    I am at a loss. I cannot boot my computer in OSX, but when I try to boot it will the install disk....it comes to the first screen for what language, but then says OSX cannot be installed on this computer.
    Perhaps it is still on the computer and that is why...but I cannot find it, though I am not that savy with this stuff. I tried holding down the option key and it just lists a windows start up disk...but that is not working as it just recycles trying to install windows xp.
    oh my, I am sick.
    If anyone can help, please let me know!!

    It is common when installing Windows for the install disk to have to reboot the machine to proceed to the next step. People familiar with Windows installation are not thrown by this - but a person new to the task might be confused.
    In Boot Camp this can throw you off because it does not prompt you as to your job in the procedure.
    If you don't do anything your Mac will boot back to OSX and Windows will remain un-finished. Here it is: if you are installing Windows and the machine closes down and re-boots, always hold down the 'option' key (or if you like - the 'c' key) so you can avoid an automatic boot to OSX - choose the 2nd hard drive icon. Windows always wants to boot back to Windows - to finish the job.
    If you want to erase your Boot Camp error - just boot to OSX, open Boot Camp Assistant (found in "Utilities" which is found in the Applications folder) and choose to create one partition. Your OSX install will not be hurt by this.
    If you want to wipe your computer completely (as if factory new) in order to install OSX from scratch then first install your OSX DVD and boot (holding down the option key or else the c key - then select the disk icon) - after language selection wait for the tool bar at the top to appear, select utilities > disk utility and click the hard drive (listed at the top of the list) and then click 'partition'. Then under 'volume scheme' select 'current' and create a 3 or 4 partition (takes a minute) and then undo this and create a one partition. This should blank-out the computer hard drive completely for you to start fresh - all will be erased.
    If your Mac will not boot properly and you happen to have materials on your machine that you MUST save or recover, then you will need different help than I describe here.
    Message was edited by: NA Smith

  • Can't Play Purch after I-Tunes says Computer Authorized - Help Please!!!

    I have had problems with two windows computers that have had to be rebuilt.
    I loaded purchased songs from Ghost file and now I cannot play them or load them into IPOD.
    New purchased song will not play or load into IPOD either.
    I go through authorization procedure and I-Tunes says computer is authorized but music never plays and I cannot sync purchased songs to IPOD.
    Songs that I had burned to CDs can be loaded, played and do not apparently have any protection on them.
    HELP Please!!!

    Found on Google.
    Not sure why I didn't try this but I deauthorized computer and then authorized.
    Everything is working now!!!!

  • Help please.. my iphone 4 is running ios7... suddenly every app is erased from my iphone.. but they still take space in the storage

    help please.. my iphone 4 is running ios 7 suddenly every app disappeared but they still take space!! what could i do??

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 15-20 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • Help please ... I forgot email of i cloud ?!!!

    Help please ... I forgot email of i cloud ?!!!

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
    Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                             Apple ID- All about Apple ID security questions.

  • Can anyone help please? daughter has new Mac book pro - decided to use her back up data from old mac and put on pro - now has old mac.  can she delete

    Can anyone help please?  daughter in panic.  Has new Mac Pro - decided to put all her old mac on new pro via back up disk - result old mac - can she reset somehow?

    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    1. Select Disk Utility from the main menu and click on the Continue button.
    2. After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet
                if possible because it is three times faster than wireless.

  • Huge Loss, help, please

    Hi. 2 days ago my 51/2 year old hard drive in my intel imac died completely. Today I managed to replace the drive (upgrade to 2 terabytes) and after doing so, used time capsule to restore my system. Thought that worked well, however aside from my screen appearance, everything was faulty. no programs worked, could not get to itunes...photos...etc. I ran disk utility and had so many verify errors that it crashed after 15 minutes. Figured this was not good, so I re-installed snow leopard with the intent to just bring back individual pieces of my previous system. Well, the time capsule is EMPTY!! there is no more "brett's Data" or anything, it is like the capsule started from scratch too. I have years of family photos supposedly "safe" on that thing somewhere. That's what I care about most. My itunes are lost too, but they can be repurchased. Help, please.

    I understand you're peeved, but until we know a bit more about what's going on, there's not much we can do to help.
    First, just how did you restore? Did you do use the +Restore System From Backup+ option, from the Utilities menu when starting up? See #14 in [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of the +Time Machine+ forum).
    Or did you install OSX, then use +Setup Assistant+ when your Mac first started up? See #19 in the FAQ.
    Or did you install OSX, create a user account, then use the +Migration Assistant+ app in your Applications/Utilities folder?
    What version of OSX are you running?
    Did you try the procedure in #E3?

  • After Mavericks, applications tend to become slow, painfully slow. Particularly iMovie; all other applications, Mail, Browser (Chrome) and others too are either running slow or 'not responding'. Help, please

    After upgrading to Mavericks, from Mountai Lion, all applications are slowing down. iMovie particularly is painfully slow. When iM is running, any other application that is opened up also runs slow or does not respond altogether. It was fine before Mavericks, can somebody help, please.
    Thank you.

    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, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, 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, 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 log in 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.

Maybe you are looking for

  • How to connect the speackers for the CT4830

    Hello. I can't find how to plug the subwoofer to the card.

  • How to use an access database file with vb project

    hi deve. im wondering how can i use a database file (created with microsoft access) in a vb project i want to assign a textbox content from the database file from a specific field according to its id can anyone explain that with a simple code example

  • Shared Services URL throws 404 Error

    Hi, I've newly installed and configured EPM on a test server. I seem to be able to start the Hyperion Foundation Services (port 28080 is listening), but when accessing the Shared Services URL, I get a 404 error. One note: I installed the product at G

  • XLR - Excel 2007  Error

    SAP 2007B MS Excel 2007 Error: "Security settings in microsoft excel prohibits Xl reporter from running" Issue: gives an error when tried to open an XL report. Previously it was working fine with excel 2003 after configuring macros.

  • Problem with Struts Validation and apache dtd definition.

    Jakarta Struts Java Version 1.5 We have one web application that is being a little problematic, on startup two errors are thrown relating to the same problem (errors below). We get 401 returned for http://jakarta.apache.org/commons/dtds/validator_1_0