Can any one help me to tune this query

This is the query.
~~~~~~~~~~
SELECT
S_CONTACT.ROW_ID,
S_CONTACT.MODIFICATION_NUM,
S_CONTACT.LAST_UPD
FROM
S_CONTACT,
S_CONTACT_FNX,
S_ETL_I_IMG_118 IMG
WHERE
IMG.ROW_ID = S_CONTACT_FNX.ROW_ID
AND
S_CONTACT_FNX.PAR_ROW_ID = S_CONTACT.ROW_ID
AND NOT EXISTS
( SELECT 'X'
FROM
S_ETL_I_IMG_12 IMG1
WHERE
IMG1.ROW_ID = S_CONTACT.ROW_ID
UNION ALL
SELECT
S_CONTACT.ROW_ID,
S_CONTACT.MODIFICATION_NUM,
S_CONTACT.LAST_UPD
FROM
S_CONTACT,
S_ETL_I_IMG_109 IMG
WHERE
IMG.ROW_ID = S_CONTACT.PR_SPECIALTY_ID
AND NOT EXISTS
( SELECT 'X'
FROM
S_ETL_I_IMG_12 IMG1
WHERE
IMG1.ROW_ID = S_CONTACT.ROW_ID
UNION ALL
SELECT
S_CONTACT.ROW_ID,
S_CONTACT.MODIFICATION_NUM,
S_CONTACT.LAST_UPD
FROM
S_CONTACT,
S_ETL_I_IMG_113 IMG
WHERE
IMG.ROW_ID = S_CONTACT.MED_SPEC_ID
AND NOT EXISTS
( SELECT 'X'
FROM
S_ETL_I_IMG_12 IMG1
WHERE
IMG1.ROW_ID = S_CONTACT.ROW_ID
UNION ALL
SELECT
S_CONTACT.ROW_ID,
S_CONTACT.MODIFICATION_NUM,
S_CONTACT.LAST_UPD
FROM
S_CONTACT,
S_ETL_I_IMG_125 IMG
WHERE
IMG.ROW_ID = S_CONTACT.REGION_ID
AND NOT EXISTS
( SELECT 'X'
FROM
S_ETL_I_IMG_12 IMG1
WHERE
IMG1.ROW_ID = S_CONTACT.ROW_ID
Below is the explain plan
~~~~~~~~~~~~~~~~~~~~~
PLAN_TABLE_OUTPUT
Plan hash value: 363891185
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
| 0 | SELECT STATEMENT | | 4 | 334 | | 214K(100)| 00:42:50 |
| 1 | UNION-ALL | | | | | | |
|* 2 | HASH JOIN ANTI | | 1 | 64 | | 122 (1)| 00:00:02 |
| 3 | NESTED LOOPS | | 3518 | 178K| | 119 (0)| 00:00:02 |
| 4 | NESTED LOOPS | | 3518 | 98504 | | 13 (0)| 00:00:01 |
| 5 | INDEX FULL SCAN | S_ETL_I_IMG_118_M2 | 3518 | 35180 | | 1 (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
| 6 | TABLE ACCESS BY INDEX ROWID| S_CONTACT_FNX | 1 | 18 | | 1 (0)| 00:00:01 |
|* 7 | INDEX UNIQUE SCAN | S_CONTACT_FNX_P1 | 1 | | | 1 (0)| 00:00:01 |
| 8 | TABLE ACCESS BY INDEX ROWID | S_CONTACT | 1 | 24 | | 1 (0)| 00:00:01 |
|* 9 | INDEX UNIQUE SCAN | S_CONTACT_P1 | 1 | | | 1 (0)| 00:00:01 |
| 10 | INDEX FULL SCAN | S_ETL_I_IMG_12_M2 | 94772 | 1110K| | 2 (0)| 00:00:01 |
| 11 | NESTED LOOPS | | 1 | 70 | | 214K (1)| 00:42:49 |
| 12 | MERGE JOIN ANTI | | 1 | 38 | | 214K (1)| 00:42:49 |
|* 13 | TABLE ACCESS BY INDEX ROWID | S_CONTACT | 72253 | 1834K| | 213K (1)| 00:42:43 |
| 14 | INDEX FULL SCAN | S_CONTACT_P1 | 57M| | | 2904 (1)| 00:00:35 |
|* 15 | SORT UNIQUE | | 94772 | 1110K| 3736K| 441 (2)| 00:00:06 |
| 16 | INDEX FULL SCAN | S_ETL_I_IMG_12_M2 | 94772 | 1110K| | 2 (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
|* 17 | INDEX RANGE SCAN | S_ETL_I_IMG_109_M2 | 1 | 32 | | 1 (0)| 00:00:01 |
| 18 | NESTED LOOPS | | 1 | 100 | | 3 (0)| 00:00:01 |
| 19 | NESTED LOOPS ANTI | | 1 | 68 | | 2 (0)| 00:00:01 |
| 20 | TABLE ACCESS BY INDEX ROWID | S_CONTACT | 1 | 56 | | 1 (0)| 00:00:01 |
|* 21 | INDEX FULL SCAN | S_CONTACT_F58 | 1 | | | 1 (0)| 00:00:01 |
|* 22 | INDEX RANGE SCAN | S_ETL_I_IMG_12_M2 | 94772 | 1110K| | 1 (0)| 00:00:01 |
|* 23 | INDEX RANGE SCAN | S_ETL_I_IMG_113_M2 | 1 | 32 | | 1 (0)| 00:00:01 |
| 24 | NESTED LOOPS ANTI | | 1 | 100 | | 3 (0)| 00:00:01 |
| 25 | NESTED LOOPS | | 1 | 88 | | 2 (0)| 00:00:01 |
| 26 | TABLE ACCESS BY INDEX ROWID | S_CONTACT | 1 | 56 | | 1 (0)| 00:00:01 |
|* 27 | INDEX FULL SCAN | S_CONTACT_F62 | 1 | | | 1 (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
|* 28 | INDEX RANGE SCAN | S_ETL_I_IMG_125_M2 | 1 | 32 | | 1 (0)| 00:00:01 |
|* 29 | INDEX RANGE SCAN | S_ETL_I_IMG_12_M2 | 94772 | 1110K| | 1 (0)| 00:00:01 |
Predicate Information (identified by operation id):
2 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
7 - access("IMG"."ROW_ID"="S_CONTACT_FNX"."ROW_ID")
9 - access("S_CONTACT_FNX"."PAR_ROW_ID"="S_CONTACT"."ROW_ID")
13 - filter("S_CONTACT"."PR_SPECIALTY_ID" IS NOT NULL)
PLAN_TABLE_OUTPUT
15 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
filter("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
17 - access("IMG"."ROW_ID"="S_CONTACT"."PR_SPECIALTY_ID")
21 - filter("S_CONTACT"."MED_SPEC_ID" IS NOT NULL)
22 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
23 - access("IMG"."ROW_ID"="S_CONTACT"."MED_SPEC_ID")
27 - filter("S_CONTACT"."REGION_ID" IS NOT NULL)
28 - access("IMG"."ROW_ID"="S_CONTACT"."REGION_ID")
29 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")

PLAN_TABLE_OUTPUT
Plan hash value: 363891185
| Id  | Operation                       | Name               | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                |                    |     4 |   334 |       |   214K(100)| 00:42:50 |
|   1 |  UNION-ALL                      |                    |       |       |       |            |          |
|*  2 |   HASH JOIN ANTI                |                    |     1 |    64 |       |   122   (1)| 00:00:02 |
|   3 |    NESTED LOOPS                 |                    |  3518 |   178K|       |   119   (0)| 00:00:02 |
|   4 |     NESTED LOOPS                |                    |  3518 | 98504 |       |    13   (0)| 00:00:01 |
|   5 |      INDEX FULL SCAN            | S_ETL_I_IMG_118_M2 |  3518 | 35180 |       |     1   (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
|   6 |      TABLE ACCESS BY INDEX ROWID| S_CONTACT_FNX      |     1 |    18 |       |     1   (0)| 00:00:01 |
|*  7 |       INDEX UNIQUE SCAN         | S_CONTACT_FNX_P1   |     1 |       |       |     1   (0)| 00:00:01 |
|   8 |     TABLE ACCESS BY INDEX ROWID | S_CONTACT          |     1 |    24 |       |     1   (0)| 00:00:01 |
|*  9 |      INDEX UNIQUE SCAN          | S_CONTACT_P1       |     1 |       |       |     1   (0)| 00:00:01 |
|  10 |    INDEX FULL SCAN              | S_ETL_I_IMG_12_M2  | 94772 |  1110K|       |     2   (0)| 00:00:01 |
|  11 |   NESTED LOOPS                  |                    |     1 |    70 |       |   214K  (1)| 00:42:49 |
|  12 |    MERGE JOIN ANTI              |                    |     1 |    38 |       |   214K  (1)| 00:42:49 |
|* 13 |     TABLE ACCESS BY INDEX ROWID | S_CONTACT          | 72253 |  1834K|       |   213K  (1)| 00:42:43 |
|  14 |      INDEX FULL SCAN            | S_CONTACT_P1       |    57M|       |       |  2904   (1)| 00:00:35 |
|* 15 |     SORT UNIQUE                 |                    | 94772 |  1110K|  3736K|   441   (2)| 00:00:06 |
|  16 |      INDEX FULL SCAN            | S_ETL_I_IMG_12_M2  | 94772 |  1110K|       |     2   (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
|* 17 |    INDEX RANGE SCAN             | S_ETL_I_IMG_109_M2 |     1 |    32 |       |     1   (0)| 00:00:01 |
|  18 |   NESTED LOOPS                  |                    |     1 |   100 |       |     3   (0)| 00:00:01 |
|  19 |    NESTED LOOPS ANTI            |                    |     1 |    68 |       |     2   (0)| 00:00:01 |
|  20 |     TABLE ACCESS BY INDEX ROWID | S_CONTACT          |     1 |    56 |       |     1   (0)| 00:00:01 |
|* 21 |      INDEX FULL SCAN            | S_CONTACT_F58      |     1 |       |       |     1   (0)| 00:00:01 |
|* 22 |     INDEX RANGE SCAN            | S_ETL_I_IMG_12_M2  | 94772 |  1110K|       |     1   (0)| 00:00:01 |
|* 23 |    INDEX RANGE SCAN             | S_ETL_I_IMG_113_M2 |     1 |    32 |       |     1   (0)| 00:00:01 |
|  24 |   NESTED LOOPS ANTI             |                    |     1 |   100 |       |     3   (0)| 00:00:01 |
|  25 |    NESTED LOOPS                 |                    |     1 |    88 |       |     2   (0)| 00:00:01 |
|  26 |     TABLE ACCESS BY INDEX ROWID | S_CONTACT          |     1 |    56 |       |     1   (0)| 00:00:01 |
|* 27 |      INDEX FULL SCAN            | S_CONTACT_F62      |     1 |       |       |     1   (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
|* 28 |     INDEX RANGE SCAN            | S_ETL_I_IMG_125_M2 |     1 |    32 |       |     1   (0)| 00:00:01 |
|* 29 |    INDEX RANGE SCAN             | S_ETL_I_IMG_12_M2  | 94772 |  1110K|       |     1   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   2 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
   7 - access("IMG"."ROW_ID"="S_CONTACT_FNX"."ROW_ID")
   9 - access("S_CONTACT_FNX"."PAR_ROW_ID"="S_CONTACT"."ROW_ID")
  13 - filter("S_CONTACT"."PR_SPECIALTY_ID" IS NOT NULL)
PLAN_TABLE_OUTPUT
  15 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
       filter("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
  17 - access("IMG"."ROW_ID"="S_CONTACT"."PR_SPECIALTY_ID")
  21 - filter("S_CONTACT"."MED_SPEC_ID" IS NOT NULL)
  22 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")
  23 - access("IMG"."ROW_ID"="S_CONTACT"."MED_SPEC_ID")
  27 - filter("S_CONTACT"."REGION_ID" IS NOT NULL)
  28 - access("IMG"."ROW_ID"="S_CONTACT"."REGION_ID")
  29 - access("IMG1"."ROW_ID"="S_CONTACT"."ROW_ID")

Similar Messages

  • Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of g

    Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of great help..thanks .

    I think in your situation it would be worth trying the things listed under the event. It does have to do with FRS and it's easy to do. I've used it to fix journal errors after a server unexpectedly restarts and sysvol stops replicating.  I
    could see where it could fix your issue, and if it doesn't, you're out 5 minutes. :)
    The listed registry key does not exist
    Expand HKEY_LOCAL_MACHINE. 
    Click down the key path: 
       "System\CurrentControlSet\Services\NtFrs\Parameters" 
    Double click on the value name 
       "Enable Journal Wrap Automatic Restore" 
     

  • I have a string 2012-05-22T23:23:42.263-07:00. so i want to convert in date with indian time zone   can any one help me out

    i have a string 2012-05-22T23:23:42.263-07:00. so i want to convert in date with indian time zone   can any one help me out

    What does this have to do with iPhone tech support?

  • What a crock of crap i tunes is followed instructions to get music off i pod on to new laptop lost 5.2 days of music can any one help

    what a crock of crap i tunes is followed instructions to get music off i pod on to new laptop lost 5.2 days of music can any one help please ?

    The new Apogee Duet for iPad and Mac, is compaible with iOS devices and includes a USB Midi input. This sounds like the perfect solution for your workflow.

  • I have new I pad 2 and when I get connected to iMac I can't find it detected in I tunes can any one help me

    I have new I pad 2 and when I get connected to iMac I can't find it detected in I tunes can any one help me and i am new to I pad

    If it's not showing on the left-hand sidebar of your Mac's iTunes (if you are on iTunes 11 then you can enable the sidebar via option-command-S) under Devices then see if this troubleshooting article helps : http://support.apple.com/kb/TS1591

  • Can not down load new i tunes up date says old bonjour can not be removed seek advice i tunes is nothing but a pain can any one help

    can not down load i tunes up date because old bonjour can not be removed can any one help
    because apple must know about this problem but are not help full

    I would try uninstalling all of the Apple software and then reinstalling it using these instructions:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    You migh want to try doing this when in safe mode.

  • Can any one help me in this code

    Hi all,
    I have created a selection screen and my aim is to display some fields or some block dynamically by choosing some radio button is it possible.
    can any one help me in this.
    REPORT  z_g_test.
    TABLES: spfli,sbook,sscrfields.
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK 1.
    PARAMETERS:rad1 RADIOBUTTON GROUP g1 USER-COMMAND us1,
               rad2 RADIOBUTTON GROUP g1 DEFAULT 'X' .
    SELECTION-SCREEN BEGIN OF SCREEN 001 as subscreen ."WITH FRAME TITLE text-002.
    SELECT-OPTIONS: s_fldate FOR sbook-fldate.
    SELECTION-SCREEN END OF SCREEN 001.
    DATA ok_code LIKE sy-ucomm.
    INITIALIZATION.
    START-OF-SELECTION.
      SELECT * FROM spfli WHERE carrid IN s_carrid.
      ENDSELECT.
    END-OF-SELECTION.
      WRITE:spfli-carrid.
    AT SELECTION-SCREEN.
      CASE sscrfields-ucomm.
          WHEN'US1'.
    *      call screen 001 starting at 55 40.
      ENDCASE.
    Is i am going on the right way
    Regards,
    Lisa.
    Message was edited by: Lisa Roy
    Message was edited by: Lisa Roy
    Message was edited by: Lisa Roy

    This is what I meant. Copy this and try as it is and see if it serves your purpose.
    REPORT ztest1 .
    TABLES: spfli, sscrfields, sbook.
    SELECTION-SCREEN BEGIN OF TABBED BLOCK tabb1 FOR 4 LINES.
    SELECTION-SCREEN TAB (25) tabs1 USER-COMMAND ucomm1
                         DEFAULT SCREEN 001.
    SELECTION-SCREEN TAB (25) tabs2 USER-COMMAND ucomm2
                         DEFAULT SCREEN 002.
    SELECTION-SCREEN END OF BLOCK tabb1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE abc.
    PARAMETERS: p_date LIKE sy-datum.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF SCREEN 001 AS SUBSCREEN .
    SELECT-OPTIONS: s_fldate FOR sbook-fldate.
    SELECTION-SCREEN END OF SCREEN 001.
    SELECTION-SCREEN BEGIN OF SCREEN 002 AS SUBSCREEN .
    SELECT-OPTIONS:s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF SCREEN 002.
    INITIALIZATION.
      tabs1 = 'Search by flight date'.
      tabs2 = 'Search by flight number'.
      abc   = 'Some other parameters'.
    AT SELECTION-SCREEN OUTPUT.
      CASE sscrfields-ucomm.
        WHEN 'UCOMM1'.
          tabb1-prog = sy-repid.
          tabb1-dynnr   = 001.
          tabb1-activetab = 'TABS1'.
        WHEN 'UCOMM2'.
          tabb1-prog = sy-repid.
          tabb1-dynnr   = 002.
          tabb1-activetab = 'TABS2'.
      ENDCASE.

  • Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Go to Settings/General/Reset - Erase all content and settings. the connecto to iTunes and restore as a New phone. Do not restore any backup. If the problem persists you have a hardware problem. Take it to Apple for exchange.
    This assumes that the phone is not hacked or jailbroken. If it is you will have to go elsewhere on the internet for help.

  • I am not able to register my Apple ID for iCloud and the error is "the maximum no of free accounts have been activated on this phone" can any one help me why I need to do

    I am not able to register my Apple ID for iCloud and the error is "the maximum no of free accounts have been activated on this phone" can any one help me why I need to do

    Sir, your Apple ID can be used as an iCloud account as well. They are both the same thing.
    You can learn more from --> Set up your Apple ID for iCloud and iTunes - Apple Support

  • Hi i am unable to send mail from yahoo mail id.can any one help on this?

    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.Properties;
    public class MailClient
      public void sendMail(String mailServer, String from, String to,
                                 String subject, String messageBody,
                                 String[] attachments) throws
    MessagingException, AddressException
             // Setup mail server
             Properties props = System.getProperties();
             props.put("mail.smtp.host", mailServer);
             // Get a mail session
             Session session = Session.getDefaultInstance(props, null);
             // Define a new mail message
             Message message = new MimeMessage(session);
             message.setFrom(new InternetAddress(from));
             message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
             message.setSubject(subject);
             // Create a message part to represent the body text
             BodyPart messageBodyPart = new MimeBodyPart();
             messageBodyPart.setText(messageBody);
             //use a MimeMultipart as we need to handle the file attachments
             Multipart multipart = new MimeMultipart();
             //add the message body to the mime message
             multipart.addBodyPart(messageBodyPart);
             // add any file attachments to the message
             addAtachments(attachments, multipart);
             // Put all message parts in the message
             message.setContent(multipart);
             // Send the message
             Transport.send(message);
         protected void addAtachments(String[] attachments, Multipart multipart)
                         throws MessagingException, AddressException
             for(int i = 0; i<= attachments.length -1; i++)
                 String filename = attachments;
    MimeBodyPart attachmentBodyPart = new MimeBodyPart();
    //use a JAF FileDataSource as it does MIME type detection
    DataSource source = new FileDataSource(filename);
    attachmentBodyPart.setDataHandler(new DataHandler(source));
    //assume that the filename you want to send is the same as the
    //actual file name - could alter this to remove the file path
    attachmentBodyPart.setFileName(filename);
    //add the attachment
    multipart.addBodyPart(attachmentBodyPart);
    public static void main(String[] args)
    try
    MailClient client = new MailClient();
    String server="pop3.yahoo.com";
    String from="[email protected]";
    String to = "[email protected]";
    String subject="Test";
    String message="Testing";
    String[] filenames = {"c:\\gopi.txt"};
    client.sendMail(server,from,to,subject,message,filenames);
    catch(Exception e)
    e.printStackTrace(System.out);     
    while compliling this one its compiled succesfully but i am getting exception at run time like..D:\mail>java MailClient
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/activation/re
    gistries/MailcapFile
    at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:275)
    at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
    at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
    at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
    at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
    at javax.activation.DataHandler.getContent(DataHandler.java:501)
    at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1253)
    at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:2012)
    at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1980)
    at javax.mail.Transport.send(Transport.java:97)
    at MailClient.sendMail(MailClient.java:35)
    at MailClient.main(MailClient.java:72)
    can any one help on this....plz
    thanks in advance
    Edited by: Konapalli.Gopi on May 20, 2010 5:42 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Something's wrong with your CLASSPATH.
    If you're not using JDK 6, you need to include activation.jar in your CLASSPATH.
    If you've got any other jar files that define the javax.mail.* or javax.activation.* classes
    in your CLASSPATH (such as javaee.jar or j2ee.jar), remove them.

  • Have just down loaded Yosemite over Mountain Lion, Indesign CS5 does not work ( Am dependant on it) although Bridge , Light Room and Elements operate OK How do I solve this rapidly. Can any one help on this issue. Thanks

    Have just down loaded Yosemite over Mountain Lion, Indesign CS5 does not work ( Am dependant on it) although Bridge , Light Room and Elements operate OK How do I solve this rapidly. Can any one help on this issue. Thanks

    Sorry to say it, but I think you can see from Bob's response that there's no way to solve this rapidly.
    Did you take an image of your Mountain Lion install before upgrading to Yosemite? Roll back to that. If you're not in the habit of taking a snapshot of your system before performing operating system upgrades - get in that habit. If you are dependent on anything at all on hour computer, having a reliable backup method in place is essential. If you don't have a Time Capsule, or some other way to run Time Machine onto a disk that's not in your computer, go set that up yesterday.
    If you can't just remove Yosemite and roll back to Mountain Lion for whatever reason, you can partition your drive so that you can install both Yosemite and Mountain Lion on the same drive, and then boot into Mountain Lion when you need to work in CS5. Or you can take your Mountain Lion disc (I assume you have one, no?) and then use it to create a virtual machine in something like VirtualBox to run Mountain Lion from inside Yosemite.

  • TS1630 My Iphone 4s reciever is not working properly, when i call someone from my iphone 4s.  can any one help me how to solve this problem?

    My Iphone 4s reciever is not working properly, when i call someone from my iphone 4s.  can any one help me how to solve this problem?

    You might like to define "not working properly".

  • Can any one help? "Windows cannot repair this computer automatically."

    I have a laptop satellite L455-S5000.
    And when I try and trun on my computer a black screen comes on that says "windows is loading files..."
    and after it loads a window pops up saying "startup repair is checking your computer for problems..."
    and after that gets done it says "Windows cannot repair this computer automatically" so I click "Send information about this problem (recommended)" and then I click "finish" then it shuts down. when I try turning it back on it does the same thing over. Please can any one help me fix it? Im really clueless about computers and I have know Idea what is wrong with it, or how to even go about fixing it. thanks.

    _Ashley_
    Turn the laptop off, hold down F8, turn the laptop on and let go of F8 when you see the Advanced Boot Options.
    In here, choose Repair Your Computer then press enter, follow the prompts, choose System Restore and restore your laptop to a point before the problems started.
    If the laptop cant get you there, a system recovery starts the laptop from it's factory state but you loose your programs and files doing that. Holding the "0" beside "9" while you turn the laptop on boots the laptop from its recovery partition if you accept data loss.

  • I am restoreing my iphone 3g and on the instaling frameware i keep getting a code 1604 can any one help me with what i am ment to do when i get this error

    as title can any one help me thank you

    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.

  • HT204053 i got this massege on my iphone the maximum number of free accounts have been activated on this iphone can any one help?

    i got this massege on my iphone the maximum number of free accounts have been activated on this iphone can any one help?

    This restriction has no relation to creating free accounts, it means you may not sign in to another free account, on that iDevice because the serial number of the device (on apple's server) has their limit of free accounts associated to it. the only way around this is to use one of the three free accounts on the device which the server has associated, OR have apple reset the account/remove the restriction for that serial number...This has been posted in dozens of discussions, but they continue to ingnore the problem, what's worse is the telephone support is RUDE about it if you inquire.

Maybe you are looking for

  • My HP Color LaserJet CP1518ni printer re-configures every time I initiate a print demand.

    Every single time I initiate a print job, this printer re-configures. I can have ten different pages that I want to print and regardless of the amount of time it takes me to set up the next page. this maching re-configures before printing the next pa

  • Adding text boxes, etc on top of background image (bitmap)

    I have an image (saved as a bitmap that I created in a drawing program) and I want to add it as a background to one of my panels in my swing application. I need to be able to put stuff on top of it, such as text boxes, etc. What is the best way to ge

  • Registry Wizard not saving selections in Group Policy Preferences.

    Hello, I am trying to set registry keys for ODBC settings using Group Policy Preferences. All PC's in the domain are Windows 7. In testing, I was able to get this to work. Now that I am trying to create it for production, I am unable to get it to wor

  • Syncing photos from my mac to my ipod

    I have just tried to sync two folders of photos from my desktop to my touch but as I sync each folder the previous folder is eliminated. What am I doing wrong.

  • 8360 Tour Video Player issue

    I have a problem when viewing videos on my Tour 8360 with the media player when streaming them over the internet, I.e., Youtube videos, videos from Facebook. When the video is playing, the pause, play, stop and other video options flash and clip thro