How to disable MERJE JOIN CARTESIAN in Oracle9i?

Hello,
I have an execution plan using CBO optimizer in a SQL joins with multiple operations. The tables are properly related to each other, so it s not justified by the Cartesian product joins Union problems. Tables have updated statistics. I tried to use hints to force a hash join for but can not. I suspect that the Cartesian product is performed by applying the rules of transitivity level optimizer.
Any know how to disable this transformation for the use sql Hash Joins?
The BD version is 9.2.0.8
The execution plan is:
Execution Plan
0 SELECT STATEMENT Optimizer=CHOOSE (Cost=167668961512454000 Card=2739657621013990 Bytes=1213668326109200000)
1 0 FILTER
2 1 SORT (GROUP BY) (Cost=167668961512454000 Card=2739657621013990 Bytes=1213668326109200000)
3 2 MERGE JOIN (Cost=167668961332844000 Card=441199942603335000000 Bytes=195451574573277000000000)
4 3 SORT (JOIN) (Cost=167668961332839000 Card=142777672565453000000 Bytes=48544408672254100000000)
5 4 MERGE JOIN (CARTESIAN) (Cost=167668954679307000 Card=142777672565453000000 Bytes=48544408672254100000000)
6 5 MERGE JOIN (Cost=1864734714877 Card=1524246272223560 Bytes=399352523322573000)
7 6 SORT (JOIN) (Cost=1864734713198 Card=664093883338651 Bytes=155397968701244000)
8 7 MERGE JOIN (CARTESIAN) (Cost=1860854406653 Card=664093883338651 Bytes=155397968701244000)
9 8 MERGE JOIN (CARTESIAN) (Cost=21152201 Card=14425063988 Bytes=1932958574392)
10 9 TABLE ACCESS (FULL) OF 'DPOLCOBE' (Cost=1022 Card=111911 Bytes=6043194)
11 9 BUFFER (SORT) (Cost=21151179 Card=128898 Bytes=10311840)
12 11 TABLE ACCESS (FULL) OF 'DPOLPER' (Cost=189 Card=128898 Bytes=10311840)
13 8 BUFFER (SORT) (Cost=1860854406464 Card=46038 Bytes=4603800)
14 13 TABLE ACCESS (FULL) OF 'DPOLIZAS' (Cost=129 Card=46038 Bytes=4603800)
15 6 SORT (JOIN) (Cost=1679 Card=208909 Bytes=5849452)
16 15 TABLE ACCESS (FULL) OF 'DPOLSCON' (Cost=577 Card=208909 Bytes=5849452)
17 5 BUFFER (SORT) (Cost=167668954679306000 Card=93671 Bytes=7306338)
18 17 TABLE ACCESS (FULL) OF 'DPERSONA' (Cost=110 Card=93671 Bytes=7306338)
19 3 SORT (JOIN) (Cost=5560 Card=290500 Bytes=29921500)
20 19 TABLE ACCESS (FULL) OF 'DPOLPECO' (Cost=924 Card=290500 Bytes=29921500)
Many Thanks
Arturo

Hello,
The sql is:
select  *
from  ntjdatsba.dpolper peri,
  (SELECT id_dpolizas_fk, MAX(b.dpolcobe_scon) dpolcobe_scon , MAX(b.dpolpeco_scon) dpolpeco_scon, MAX(b.dpolper_scon) dpolper_scon
           FROM ntjdatsba.dpolscon b
            WHERE
            fechemis <= TRUNC(SYSDATE)
      GROUP BY id_dpolizas_fk
      ) scon,
  ntjdatsba.dpolizas pol,
  ntjdatsba.dpersona pers,
  ntjdatsba.dpolpeco peco,
  ntjdatsba.dpolcobe cobe
  WHERE  pol.id_dpolizas = scon.id_dpolizas_fk
     AND pol.estado = 'V'
     AND cobe.id_dpolscon_fk = scon.dpolcobe_scon
    AND cobe.garancod = 'AC01'
    AND peco.id_dpolscon_fk = scon.dpolpeco_scon
    AND peco.relacion IN ('CHAB', 'COCA')
     AND peco.id_dpersona_fk = pers.id_dpersona
     AND peri.id_dpolscon_fk = scon.dpolper_scon
     AND peri.poliefec <= TRUNC (SYSDATE); And the execution plan (I hope know is better formated).
Execution Plan
   0      SELECT STATEMENT Optimizer=CHOOSE (Cost=167668961512454000 Card=2739657621013990 Bytes=1213668326109200000)
   1    0   FILTER
   2    1     SORT (GROUP BY) (Cost=167668961512454000 Card=2739657621013990 Bytes=1213668326109200000)
   3    2       MERGE JOIN (Cost=167668961332844000 Card=441199942603335000000 Bytes=195451574573277000000000)
   4    3         SORT (JOIN) (Cost=167668961332839000 Card=142777672565453000000 Bytes=48544408672254100000000)
   5    4           MERGE JOIN (CARTESIAN) (Cost=167668954679307000 Card=142777672565453000000 Bytes=48544408672254100000000)
   6    5             MERGE JOIN (Cost=1864734714877 Card=1524246272223560 Bytes=399352523322573000)
   7    6               SORT (JOIN) (Cost=1864734713198 Card=664093883338651 Bytes=155397968701244000)
   8    7                 MERGE JOIN (CARTESIAN) (Cost=1860854406653 Card=664093883338651 Bytes=155397968701244000)
   9    8                   MERGE JOIN (CARTESIAN) (Cost=21152201 Card=14425063988 Bytes=1932958574392)
  10    9                     TABLE ACCESS (FULL) OF 'DPOLCOBE' (Cost=1022 Card=111911 Bytes=6043194)
  11    9                     BUFFER (SORT) (Cost=21151179 Card=128898 Bytes=10311840)
  12   11                       TABLE ACCESS (FULL) OF 'DPOLPER' (Cost=189 Card=128898 Bytes=10311840)
  13    8                   BUFFER (SORT) (Cost=1860854406464 Card=46038 Bytes=4603800)
  14   13                     TABLE ACCESS (FULL) OF 'DPOLIZAS' (Cost=129 Card=46038 Bytes=4603800)
  15    6               SORT (JOIN) (Cost=1679 Card=208909 Bytes=5849452)
  16   15                 TABLE ACCESS (FULL) OF 'DPOLSCON' (Cost=577 Card=208909 Bytes=5849452)
  17    5             BUFFER (SORT) (Cost=167668954679306000 Card=93671 Bytes=7306338)
  18   17               TABLE ACCESS (FULL) OF 'DPERSONA' (Cost=110 Card=93671 Bytes=7306338)
  19    3         SORT (JOIN) (Cost=5560 Card=290500 Bytes=29921500)
  20   19           TABLE ACCESS (FULL) OF 'DPOLPECO' (Cost=924 Card=290500 Bytes=299215Thanks
Arturo

Similar Messages

  • How to disable some of the table fields in Table Maintenance Generator

    HI,
    I am creating one table which contains 10 fields.
    But i wanted to disable some 2 fields in Table maintenance generator.
    So can any one plz tell me how to disable those 2 fields.

    Generate a maintenance view for the table,
    Goto- Table/Join Conditin Tab-- Put the name of your table 
    Goto-viewfield tab--- Put the fields whatever you required. 
    Then generate table maintenance for the view created.
    pls chk
    Thanks
    Anurag

  • Query based on "NATURAL JOIN" statement of Oracle9i

    I have created following 4 tables
    create table CUST_MASTER
    (CUST_NO NUMBER(3),CUST_NAME VARCHAR2(20),CUST_CITY VARCHAR2(20));
    create table ITEM_MASTER
    (ITEM_NO NUMBER(2),ITEM_NAME VARCHAR2(20),
    PRICE NUMBER(4));
    create table ORDER_HEADER
    ( ORDER_NO NUMBER(4), CUST_NO NUMBER(3));
    create table ORDER_ITEMS
    ( ORDER_NO NUMBER(4), ITEM_NO NUMBER(2), QTY NUMBER(3));
    Based on the above 4 table I have executed the following query.
    select c.cust_no, c.cust_name, c.cust_city, oh.order_no, i.item_no, i.item_name, i.price, oi.qty
    from cust_master c, item_master i, order_header oh, order_items oi
    where c.cust_no = oh.cust_no and oh.order_no = oi.order_no and oi.item_no = i.item_no;
    How should I build similar query in Oracle9i making use of "NATURAL JOIN" statement?

    Hallo,
    yes you are correct.
    From SQL Reference
    NATURAL JOIN The NATURAL keyword indicates that a natural join is being performed. A natural join is based on all columns in the two tables that have the same name. It selects rows from the two tables that have equal values in the relevant columns
    Nothing about foreign keys.
    Test:
    select * from scott.emp natural join scott.dept
        DEPTNO      EMPNO ENAME      JOB               MGR HIREDATE                  SAL       COMM DNAME          LOC         
            20           7369     SMITH          CLERK                7902     17.12.1980            800                    RESEARCH           DALLAS
            30           7499     ALLEN          SALESMAN             7698     20.02.1981           1600            300     SALES              CHICAGO
            30           7521     WARD           SALESMAN             7698     22.02.1981           1250            500     SALES              CHICAGO
            20           7566     JONES          MANAGER              7839     02.04.1981           2975                    RESEARCH           DALLAS
            30           7654     MARTIN         SALESMAN             7698     28.09.1981           1250           1400     SALES              CHICAGO
            30           7698     BLAKE          MANAGER              7839     01.05.1981           2850                    SALES              CHICAGO
            10           7782     CLARK          MANAGER              7839     09.06.1981           2450                    ACCOUNTING         NEW YORK
            20           7788     SCOTT          ANALYST              7566     19.04.1987           3000                    RESEARCH           DALLAS
            10           7839     KING           PRESIDENT                     17.11.1981           5000                    ACCOUNTING         NEW YORK
            30           7844     TURNER         SALESMAN             7698     08.09.1981           1500              0     SALES              CHICAGO
            20           7876     ADAMS          CLERK                7788     23.05.1987           1100                    RESEARCH           DALLAS
            30           7900     JAMES          CLERK                7698     03.12.1981            950                    SALES              CHICAGO
            20           7902     FORD           ANALYST              7566     03.12.1981           3000                    RESEARCH           DALLAS
            10           7934     MILLER         CLERK                7782     23.01.1982           1300                    ACCOUNTING         NEW YORK
    alter table scott.emp drop constraint fk_deptno
    select * from scott.emp natural join scott.dept
        DEPTNO      EMPNO ENAME      JOB               MGR HIREDATE                  SAL       COMM DNAME          LOC         
            20           7369     SMITH          CLERK                7902     17.12.1980            800                    RESEARCH           DALLAS
            30           7499     ALLEN          SALESMAN             7698     20.02.1981           1600            300     SALES              CHICAGO
            30           7521     WARD           SALESMAN             7698     22.02.1981           1250            500     SALES              CHICAGO
            20           7566     JONES          MANAGER              7839     02.04.1981           2975                    RESEARCH           DALLAS
            30           7654     MARTIN         SALESMAN             7698     28.09.1981           1250           1400     SALES              CHICAGO
            30           7698     BLAKE          MANAGER              7839     01.05.1981           2850                    SALES              CHICAGO
            10           7782     CLARK          MANAGER              7839     09.06.1981           2450                    ACCOUNTING         NEW YORK
            20           7788     SCOTT          ANALYST              7566     19.04.1987           3000                    RESEARCH           DALLAS
            10           7839     KING           PRESIDENT                     17.11.1981           5000                    ACCOUNTING         NEW YORK
            30           7844     TURNER         SALESMAN             7698     08.09.1981           1500              0     SALES              CHICAGO
            20           7876     ADAMS          CLERK                7788     23.05.1987           1100                    RESEARCH           DALLAS
            30           7900     JAMES          CLERK                7698     03.12.1981            950                    SALES              CHICAGO
            20           7902     FORD           ANALYST              7566     03.12.1981           3000                    RESEARCH           DALLAS
            10           7934     MILLER         CLERK                7782     23.01.1982           1300                    ACCOUNTING         NEW YORK
    ALTER TABLE scott.emp
    ADD CONSTRAINT fk_deptno FOREIGN KEY (deptno)
    REFERENCES SCOTT.dept (deptno)
    ENABLE NOVALIDATE
    /Regards
    Dmytro Dekhtyaryuk

  • How to disable or rename Oracle Report Server servlet command?

    Hi,
    I'm using Oracle9i App Server R2.
    I would like to learn how to disable or rename Oracle Report Server's servlet command?
    This is to avoid user from accessing http://myserver/reports/rwservlet/showmap to view the key map file content.
    Please advise.

    or example, my report server was rep_appserver, then i want to rename it to rep_test.
    Here some step to accomplish it,
    1. stop mid-tier
    $ORACLE_HOME\opmn\bin\opmnctl stopall
    2. stop em website
    $ORACLE_HOME\bin\emctl stop iasconsole
    3. rename $ORACLE_HOME\reports\conf\rep_<old_report_server_name>.conf to something else or delete it
    4. rename $ORACLE_HOME\reports\server\rep_<old_report_server_name>.dat to something else or delete it
    5. edit $ORACLE_HOME\reports\conf\rwservlet.properties file then change the SERVER parameter to new report server name(remember this new name has to be a unique name)
    6. create a backup copy of the $ORACLE_HOME\sysman\emd\targets.xml file
    7. open $ORACLE_HOME\sysman\emd\targets.xml, find old report server name and then replace it to new report server name
    8. save new targets.xml file
    9. open $ORACLE_HOME\opmn\conf\opmn.xml, old report server name and then replace it to new report server name
    10. start em website
    $ORACLE_HOME\bin\emctl start iasconsole
    11. start mid-tier
    $ORACLE_HOME\opmn\bin\opmnctl startall
    HTH
    Amkotz

  • WHERE clauses and Merge Join Cartesian?

    For some reason, Siebel is generating queries like this:
                        AND CONCAT (CONCAT (t41828.lvl8anc_postn, '-'),
                                    t41828.lvl8_emp_full_name
                                   ) = 'GEO-SMITH, BILL'
                        AND CONCAT (CONCAT (t41828.lvl6anc_postn, '-'),
                                    t41828.lvl6_emp_full_name
                                   ) = 'GROUP1-DOE, JOHN'and this ends up with 3 merge join cartesian in autotrace and this query takes several hours.
    However, by rewriting just those 2 clauses to:
                        AND (t41828.lvl8anc_postn = 'GEO' and
                                    t41828.lvl8_emp_full_name = 'SMITH, BILL')
                        AND (t41828.lvl6anc_postn = 'GROUP1' and
                                    t41828.lvl6_emp_full_name = 'DOE, JOHN')the merge join cartesians go away, and it runs in 7 seconds.
    However, since Siebel is generating the query, and we are having issues, we decided to add columns for testing that is equivalent to the concatenation of the two columns above. After doing this, and creating indexes on the new columns, it is now back to the merge join cartesian and I cannot get rid of it.
    So:
    1. How can rewriting the WHERE (not adding or deleting anything here, just rewriting it in a different way) clause eliminate the merge join cartesian?
    I'm guessing by understanding that single question, I will be able to come up with a better solution to this.

    Note we made two additional columns:
    CONCAT (CONCAT (t41828.lvl8anc_postn, '-'), t41828.lvl8_emp_full_name) => col1 CONCAT (CONCAT (t41828.lvl6anc_postn, '-'), t41828.lvl6_emp_full_name) => col2
    When I created indexes on col1 and col2 and used them in the query, the cartesians returned, and I cannot figure out why. So, I'm still confused why:
    In the original query:
    1. Using CONCAT, and thus no indexes => cartesian
    2. No CONCAT, and indexes => no cartesian
    With the new columns, col1 and col2:
    1. No CONCAT needed, full table scan or indexes => cartesian

  • Is merge join cartesian more cpu intensibe than nested loop ?

    Hi,
    just wonderning which access method is more cpu intensive , lets supposed we got 2 the same row sources and doing joing via merge join cartesian and next case is nested loop .
    I know NL can be cpu intensive because of tight loop access , but what abour MJC ?
    I can see bufferd sort but not sure is that cpu friendly ?
    Regards
    GregG

    Hi,
    I think in your case it's more accurate to compare a NESTED LOOP (NL) to a MERGE JOIN (MJ), because CARTESIAN MERGE JOIN is a rather special case of MJ.
    Merge join sorts its inputs before combining them, and it could be efficient when one or both of inputs are already sorted.
    Regarding your question (which is more CPU intensive):
    1) if MERGE JOIN involves disk spills, then CPU is probably irrelevant, because disk operations are much more expensive
    2) the amount of work to combine rowsources via a MJ depends on how well they are aligned with respect to each other, so I don't think it can be expressed via a simple formula.
    For nested loops, the situation is much more simple: you don't need to do any special work do combine the rowsource, so the cost is just the sum of the cost acquiring the outer rowsource plus the number of iterations times the cost of one iteration. If the data is read from disk, then CPU probably won't matter much, if most of reads are logical ones than CPU becomes of a factor (it's hard to tell how much work CPU will have to do per one logical read because there are two many factors here -- how many columns are accessed, how they are located within the block, are there any expensive math functions applied to any of them etc.)
    Best regards,
    Nikolay

  • How to disable parent window while popup window is coming

    Hi,
    I am working on Oracle Applications 11i.
    I am able to get the popup window using the Java script in the controller.
    Please see the below code for the reference.
    String pubOrderId = pageContext.getParameter("orderId");
    StringBuffer l_buffer = new StringBuffer();
    StringBuffer l_buffer1 = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    l_buffer1.append("/jct/oracle/apps/xxpwc/entry/webui/AddAttachmentPG");
    l_buffer1.append("&retainAM=Y");
    l_buffer1.append("&pubOrderId="+pubOrderId);
    String url = "/OA_HTML/OA.jsp?page="+l_buffer1.toString();
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    But here the problem is, even though popup window is there, i am able to do the actions on the parent page.
    So how to disable the parent page, while getting the popup window.
    Thanks in advance.
    Thanks
    Naga

    Hi,
    You can use javaScript for disabling parent window as well.
    Refer below link for the same:
    http://www.codeproject.com/Questions/393481/Parent-window-not-disabling-when-pop-up-appears-vi
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to Disable "Auto Align" in [System Pref.] - [Display] - [Arrangement]

    Does anyone know How to Disable "Auto Align" in [System Preferences] -> [Display] -> [Arrangement]?
    It always want to align the two screens from the top when they are lined up close together and I need them to be aligned from the bottom. Since the resolution heights are so close together (1080 & 1050) it does not allow one to align side by side from the bottom as it prioritizes top alignment.
    I guess I'm looking for a script to disable this feature.

    Anyone got any ideas?

  • How to disable the "turn page" event triggered by the scroll/swipe function?

    The problem is as follows.
    The default behaviour of Acrobat Reader (both stand alone and browser plug-in) is to allow scrolling/swiping with the mouse wheel/trackpad. This is useful when the pdf's page length is greater than the screen's own length, because you can read the pdf with no need to distract your attention from the text to the scrollbar button. However, the same scroll/swipe function turns into a usability problem when the pdf is embedded in a html page and the pdf's page length is smaller than the browser's length. In this case, the scroll/swipe turns the page, distracting your attention from the text to the unintended behaviour of the browser. What happens is that you are so used to scrolling/swiping that you did it unintentionally in the pdf's caption area. You really did not want to turn pages in the pdf. Furthermore, if the pdf takes the whole html page, being a website, the scroll/swipe function flips the website pages in ways that neither the reader nor the writer had ever intended. Hence the question. How to disable, in this case, the "turn page" event triggered by the scroll/swipe function? A JavaScript should do, but the SDK documents did not help so far...
    Message was edited by: 41457173
    Message was edited by: 41457173

    ... or release a patch for the API,
    ... or suggest an alternative route to achieve the intended result.

  • How do I effectively join the Macs to the AD?

    Hi. First, I must qualify that I am NOT a network individual. Some of the research I've done, I've managed to follow, but I don't have the technical know-how to fully understand it all. I desparately need help, please.
    I work in a medium-sized environment, about 50 PCs and we employ Windows Server 2003. I've been charged with making 10 or so Macs work in Active Directory. Our Mac users constantly run into expiring netword passwords every 30 days (extending this is not an option because of the nature of the work).
    How do I effectively join the Macs to the AD and allow changes to network passwords from the Mac?  So far, for every Mac users, I've used SMB to connect to server files/folders. But when the users' password expires, they are 1) not notified that their passwords are expiring and 2) are not able to change their passwords from their Macs when their passwords expires. I've tried binding my Mac to the AD and used a free software called ADMon to monitor my own expiring network password.  And that's proving useless because it's monitoring the local password for the Mac instead of the network password. 
    Mac users are mostly on OS Lion, one Mac user on Snow Leopard.
    I would really appreciate any help/advice you can provide.
    Thanks!

    AD is still broken with Lion as at 10.7.2. May want to read this thread to try the workarounds, mainly Page 5, while Apple sort it out.
    https://discussions.apple.com/thread/3198558?start=60&tstart=0

  • [Forum FAQ] How to disable Microsoft account default sign-in behavior when accessing Microsoft website on Windows 8.1

    Scenario
    By default it will sign in with current Microsoft account, if a user accesses Microsoft website (www.live.com, www.bing.com, etc.) with Microsoft account on Windows 8.1. This article describes how to disable this default sigh-in behavior if you want to use
    different Microsoft accounts every time. 
    Method
    To disable this default sign-in behavior, we can deny current Microsoft Account read permission of MicrosoftAccountTokenProvider.dll, please follow the following steps:
    Run Command Prompt with elevated permissions.
    Run the following command to take ownership of MicrosoftAccountTokenProvider.dll:
      takeown /f C:\Windows\SysWOW64\MicrosoftAccountTokenProvider.dll
    Run the following command to deny the read permission of the Microsoft:                                
     icacls C:\Windows\SysWOW64\MicrosoftAccountTokenProvider.dll /deny
    [email protected]:r                                                                                                                
    Note: Please replace your current Microsoft Account with the example
    [email protected]
    Change the owner of this file back to TrustedInstaller:
    Right-click MicrosoftAccountTokenProvider.dll under
    C:\Windows\SysWOW64\, choose Properties. Under
    Security tab, click Advanced.
    Click Change, in the box Enter the object name to select, type
    NT Service\TrustedInstaller.
    Click OK.
    Note: This operation would take some hours to work.
    Apply to:
    Windows 8.1
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Error: System cannot find the specified path
    I am getting this eroor
    Parashuram Singade www.distinctnotion.com

  • How to disable airplay mirroring on iPad with ios7

    How to disable airplay mirroring on iPad with ios7?

    I've had this problem ever since I was at my friend's house- she has Apple TV- and my iPad connected automatically. So, I have no idea why any of the practical solutions that people think of are not options BUT, in terms of just getting it done, I did figure out a way. The key for me was getting near another Apple TV. I was out of town so I took my iPad to another friend's house who also has TV. Once I was logged onto their wireless network (the same network that their Apple TV is on-- that's how it connected in the first place), then the Airplay icon and options showed up from the bottom-draw menu and I was able to make sure that mirroring was turned off from the Apple TV section and to make sure the selection was on iPad instead. Problem solved. Now whether or not this will stay the same (rather than me having to make sure it stays at this setting everytime I link up to a network that has an Apple TV on it) I don't know. So my advice is find someone with Apple TV and connect to their network with your iPad and then change it.

  • I have changed the apple ID (email, but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    i have changed the apple ID (email) but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    If you see that pop up you enabled icloud. Whether you want or do not want now to use it irrelevant until you actually disable activation lock.
    In order to do that you have to change your apple id back to do that just long enough to sign in and back out. System will ask you to verify, don't.
    Just sign in on the prompt you getting and then logout. Once done, change apple id to what you have now and verify. Then decide if you want to
    use icloud (who does not want to be able to track their phone if lost or stolen).

  • Can't use down key because it opens automator. Does any one know how to disable this short cut?

    Everytime I press down on down key it opens automator. It doesn't let me delete the app. I don't know what to do, it is very frustating to fill in a chart when I can't use the down key. Does any one know how to disable this short cut?

    Are you talking about the Down Arrow key? To my knowledge there is no way to use that key as a shortcut for anything. But look in the Keyboard section of System Preferences and the Keyboard shortcut tab.

  • I need to know how to disable my apps on my old system so that I can install them on new computer.

    I've just purchased a new iMac and need to know how to disable my apps on my old system so that I can install them on the new one.

    You are allowed to have two working installations so you do not have to disable the original if you prefer to have a backup.  Otherwise, to disable you can just sign out thru the CC manager.
    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

Maybe you are looking for

  • Pleaseeeeeee Help - Problems with position of my web page

    Hi, first sorry on my english I have problem with position of my page. I had made my web page in Indesign CS5 and exported to swf file. My web page is working fine (www.igor-flytying.com) but the page is not in the middle of the web browser. How can

  • ClassCastException: javax.servlet.http.NoBodyResponse

    Hi all, I Have an EAR containing a web application containing a bunch of servlets and an applet accessed through jnlp. When I start the applet, everything works perfectly well, all the functionnalities work. But in my log file, I get about 4 exceptio

  • 8800 Sircocco - Help required please

    Hi ther, just bought this phone and have a few problems hoping somebody can help. 1. Anyone had problems hearing the other caller? I have difficulty, tried increasing the volume etc but to no avail. 2. How do you add / edit the voice commands in the

  • ZCM 11.3 agent update

    Hi, I have a fresh deployment of ZCM 11.3a onto a Windows 2008 R2 server. All of my workstation adaptive agents are at 11.2.4.xxx. Long story, but my original zone became corrupted and I had to start fresh. I have been re-registering existing clients

  • Formatting string output in columns to a JtextArea

    Hello, I am pretty new to java and GUI's but i am working on a project that needs to output some statisitcs to a JtextArea. I need have all the data in an array and i want it to appear as First Name Last Name Points Rebounds Assists Minutes The last