IE Z-index hell

I have a horizontal spry drop down menu that works great in Firefox and Safari on the mac, but not Internet Explorer on the pc. I'm pretty sure it is a z-index issue. The drop down is hidden under the div tag below it. I was able to fix it and make it work on the pc, but then I have issues on the mac
Here is the url,
http://www.advservices.biz/newsite/newsiteindex.html
There should be drop down menus under "Services" and "Equipment"
Does anybody have experience with z-index issues in IE and know how to fix them? I am a real novice with code.
-David

make the zindex of the menu 1 or and of the submenus 9999
and the url is not working

Similar Messages

  • Error while creating index on  ep 6.0 9 sr1   (trex 6.1).

    Hell o all,
        I am getting following error while creating index on  ep 6.0 9 sr1   (trex 6.1).
    Index could not be created; creating index failed: general configuration error (Errorcode 2030)
    can any on ehelp.
    thanks and regards
    Rajendra

    Hi,
    We are running TREX 6.1.09.00 on EP6.0.9.0.0 and KMC6.0.9.0.0.
    We are experiencing the same problems, even after changing the value in the .ini file as specified in NOTE 766197.
    After doing changes, I restarted the server after doing the changes.
    Alessandro, have you got any ideas for fixing this?
    Message was edited by: Bjorn Bjornstad

  • Invalid descriptor index error

    hai...
    i am having this error..
    java.sql.SQLException:[Microsoft][ODBC Microsoft Access Driver]invalid descriptor index.
    I am doing RMI application..while i am trying to insert i got this error...
    here i paste my code....can anyone help me in finding out error.please...
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection conn=DriverManager.getConnection("jdbc:odbc:bnk11","","");
    Statement max = conn.createStatement();
    rs1 = max.executeQuery("Select max(AccountNo) from Customer");
    rs1.next();
    String maxValue = rs1.getString(1);
    int maxx = Integer.parseInt(maxValue);
    int max1 = maxx+2;
    max2 = Integer.toString(max1);
    Statement pin = conn.createStatement();
    rs2 = max.executeQuery("Select max(PinNo) from Customer");
    rs2.next();
    String maxValue1 = rs2.getString(2);
    int pinmaxx = Integer.parseInt(maxValue1);
    int pinmax1 = pinmaxx+3;
    String pinmax2 = Integer.toString(pinmax1);
    Statement sm=conn.createStatement();
    rs=sm.executeQuery("Select * from Customer");     
    sm.executeUpdate("insert into Customer values('"+max2+"','"+pinmax2+"','"+c+"','"+d+"','"+e+"','"+f+"','"+g+"','"+h+"','"+i+"')");
    conn.close();
    Thanks in advance...

    In future when you post code, please use[code] and [/code] tags as described in Formatting tips on the message entry page. It makes it much easier to read.
    The error is happening here
    rs2 = max.executeQuery("Select max(PinNo) from Customer");
    rs2.next();
    String maxValue1 = rs2.getString(2); // WRONG!You can't get the second column (2). There is only one column in that result set. It should be getXXX(1)
    And that's another thing. What in the holy hell are you doing here?
    String maxValue = rs1.getString(1);
    int maxx = Integer.parseInt(maxValue);
    int max1 = maxx+2;Sillyness.
    int max1 = rs1.getInt(1)+2;Finally you should look into using PreparedStatements. http://java.sun.com/docs/books/tutorial/jdbc/basics/prepared.html

  • Execution time of query on different indexes

    Hello,
    I have a query on the table, the execution time has hugh difference using different indexes on the table. The table has about 200,000 rows. Any explaination on it?
    Thanks,
    create table TB_test
    ( A1 number(9),
    A2 number(9)
    select count(*) from TB_test
    where A1=123 and A2=456;
    A. With index IDX_test on column A1:
    Create index IDX_test on TB_test(A1);
    Explain plan:
    SELECT STATEMENT
    Cost: 3,100
    SORT AGGREGATE
    Bytes: 38 Cardinality: 1
    TABLE ACCESS BY INDEX ROWID TABLE TB_test
    Cost: 3,100 Bytes: 36 Cardinality: 1
    INDEX RANGE SCAN INDEX IDX_test
    Cost: 40 Cardinality: 21,271
    Execution time is : 5 Minutes
    B. With index IDX_test on column A1 and A2:
    Create index IDX_test on TB_test(A1, A2);
    Explain plan:
    SELECT STATMENT
    Cost: 3 Bytes: 37 Cardinality: 1
    SORT AGGREGATE
    Bytes: 37 Cardinality: 1
    INDEX RANGE SCAN INDEZ IDX_test
    Cost: 3 Bytes 37 Cardinality:1
    Execution time is: 1.5 Seconds

    Additional you should check how many values you have in your table for the specific column values.
    The following select might be helful for that.
    select count(*)  "total_count"
           ,count(case when A1=123 then 1 end) "A1_count"
           ,count(case when A1=123 and A2=456 then 1 end) "A1andA2_count"
    from TB_test;Share your output of this.
    I expect the value for A1_count still to be high. But the value for A1+A2_count relatively low.
    However 5 minutes is far to long for such a small table. Even if you run it on a laptop.
    There must be a reason why it is that slow.
    First thing to consider would be to update your statistics for the table and the index.
    Second thing could be that the table is very sparsly fillled. Meaning, if you frequently delete records from this table and load new data using APPEND hint, then the table will grow, because the free space from the deletes is never reused. Any table access in the execution plan, will be slower then needed.
    A similar thing can happen, if many updates on previously empty columns are made on a table (row chaining problem).
    So if you explain a little, how this table is filled and used, we could recognize a typical pattern that leads to performance issues.
    Edited by: Sven W. on Nov 28, 2012 5:54 PM

  • Why index is being ignored

    SQL> CREATE table t (a  VARCHAR2(10),b VARCHAR2(10))
      2  /
    Table created.
    SQL> BEGIN
      2    FOR i IN 1..10000
      3    LOOP
      4     INSERT INTO t VALUES (i,'A');
      5    END LOOP;
      6  END;
      7  .
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> COMMIT;
    Commit complete.
    SQL> CREATE INDEX t_a_idx ON t (a)
      2  /
    Index created.
    SQL> DESC emp
    Name                                                  Null?    Type
    EMPNO                                                 NOT NULL NUMBER(4)
    ENAME                                                          VARCHAR2(10)
    JOB                                                            VARCHAR2(9)
    MGR                                                            NUMBER(4)
    HIREDATE                                                       DATE
    SAL                                                            NUMBER(7,2)
    COMM                                                           NUMBER(7,2)
    DEPTNO                                                         NUMBER(2)
    GRADE                                                          NUMBER
    SQL> SELECT * FROM emp WHERE empno>500
      2  /
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=2 Card=14 Bytes=56
              0)
       1    0   TABLE ACCESS (BY INDEX ROWID) OF 'EMP' (TABLE) (Cost=2 Car
              d=14 Bytes=560)
       2    1     INDEX (RANGE SCAN) OF 'PK_EMP' (INDEX (UNIQUE)) (Cost=1
              Card=14)
    Above query is not ignoring the possibility of using an index on empno column,while the same query with table t
    ignoring the usage of index on 'a' column why??
    SQL> SELECT *
      2    FROM t WHERE a>500
      3  /
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=6 Card=9500 Bytes=
              133000)
       1    0   TABLE ACCESS (FULL) OF 'T' (TABLE) (Cost=6 Card=9500 Bytes
              =133000)
    SQL> SELECT *
      2    FROM t WHERE a>'500'
      3  /
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=6 Card=5552 Bytes=
              77728)
       1    0   TABLE ACCESS (FULL) OF 'T' (TABLE) (Cost=6 Card=5552 Bytes
              =77728)Khurram

    Well, there are many issues with the test which you have posted here.
    1. No statistics are collected after the table created, data inserted. Still, in your example it shows the cost, cardinality and bytes, unless you enable dynamic samplying parameter.
    2. a VARCHAR2(10)
    You have defined 'a' column as varchar datatype and ine one of your example you are using nubmber predicate value. Therefore, doing implicit conversion.
    I have come across of this proble, like, why the hell my index ignored. Then understood the situation.
    SQL> SELECT *
    2 FROM t WHERE a>500
    3 /
    Lets take another example why index ignored,
    SQL> SELECT *
    2 FROM t WHERE a>'500'
    3 /
    column a has distinct values from 1 to 10000
    formula for predicate selectity when there are no historgrams in place, as follows.
    c1 > '4076' 1 - (High - Value / High - Low)
    Apart from all, I dont believe in AUTOTRACE generated execution plan, it is not the real one, it is just predicated one.
    If you are on >=9iR2, I strongly recommend you to use, DBMS_XPLAN.DISPLAY to get the execution plan.
    Jaffar

  • Is there a way to get the cursor position index of html text field

    I'm trying to work on a text pad like MC with "insert text at
    position X" and "find and replace" can anyone tell me how to find
    the cursor index of an html text field. Selection.getBeginIndex() ,
    Selection.getEndIndex(), Selection.getCaretIndex() as far as I know
    these methods only work with text and not htmltext.
    What I'm trying to do is assign different parts of the string
    to variables so that I can combine them to reconstitute my html
    string.

    enfantterrible:
    If I understand correctly, you want the corresponding
    position in the
    htmlText propery of the caret index (which as you point out
    is only the
    position in the plain text version of the textfield content).
    Below is how I would do it. Maybe there's an easier or more
    efficient
    way (using XML objects etc), but I don't know it. You could
    conduct all
    your string searches in the plain text and then convert the
    result to
    the html positions. I didn't build this to accept negative
    parameters
    for the pos parameter (e.g. from end of string backwards) but
    the
    function could be adapted to do this too if necessary. The
    test data is
    not proper html from a text field, but it doesn't really
    matter what it
    is so long as its formatted correctly. It just separates the
    tags from
    the content to enable apples with apples comparison.
    //some test data
    var testStringXML = "<format>Hel<b>lo i can't
    t<i>ell you h</i>ow hap</b>py I
    am.</format>";
    var undecoratedString = "Hello i can't tell you how happy I
    am.";
    //the conversion function
    function findDecoratedPosition(pos:Number, xmlString:String,
    test:Boolean):Number {
    //anything between '<' and '>' should be excluded from
    plain text search.
    //create an array of array elements (n=2) consisting of tag
    then plain text
    //requires correctly formatted xml/html
    var tempArr:Array = xmlString.split("<");
    for (var aa = 0; aa<tempArr.length; aa++) {
    tempArr[aa] = tempArr[aa].split(">");
    //remove the first and last elements of the new array (these
    are empty)
    tempArr.pop();
    tempArr.shift();
    //find the corresponding plaintext location and calculate
    the "decorated" position
    var retPos:Number = 0;
    var posCount:Number = 0;
    for (var aa = 0; aa<tempArr.length; aa++) {
    retPos += tempArr[aa][0].length+2+tempArr[aa][1].length;
    //+2 allows for missing < and >
    posCount += tempArr[aa][1].length;
    if (posCount>pos) {
    return (retPos+(pos-posCount));
    //out of range
    return -1;
    //test code:
    for (var aa = 0; aa<undecoratedString.length; aa++) {
    var altPos = findDecoratedPosition(aa, testStringXML);
    trace(undecoratedString.charAt(aa)+" in position "+aa+"
    plainText equates to position "+altPos+" in the decorated version
    ["+testStringXML.charAt(altPos)+"]");
    }

  • After Effects warning: An invalid track index

    Hello, I am running CC 2014 on Windows 7.
    I have a project with a significant amount of basic animation (just 2D scale and position keyframing), and while working on adding sound effects, I keep getting this error when I try to RAM preview: "After Effects: BE: An invalid track index has been added to the sequence."
    If I hit ok, the preview plays, but with no audio.
    Any ideas what to do? I've tried clicking tracks on and off, and it does help, but very inconsistantly to where I can't pin point the source of the problem. There's one track that when turned on, I do NOT get the error, and when turned off, or deleted, I DO get the error. This just baffles me.
    Thanks for any help-- I'm on a tight deadline and really need to work through this ASAP.

    You have two, and perhaps three, problems going on:
    1) Don't use mp3 audio in AE.  Just don't.  It has NEVER worked properly, and problems rear their ugly heads only intermittently... like when you time-remap it.  Convert mp3's to lossless audio files like wav or aiff.
    2) Don't Time Remap audio and expect it to work properly when you render.  It's better to export out the time-remapped audio as a wav or aiff, reimport and use the new audio clip when rendering.  Or just export it and use it in a video editing application along with your animations from AE.
    3) FORTY-NINE layers of audio?  That's crazy in AE!  AE stinks at audio!  It's Hell On Earth to mix all those tracks in AE!
    I bet you can find a different application to put all those tracks together with the video.  I bet you can figure out an alternate workflow.  And you should.  The best way to use audio in AE is as a reference for timing your animations.  I use that strategy when I'm working on my stuff, and when I render, I don't render an audio track... not even when it's lip-sync audio!  I match up everything in a video editing application, and I have never, EVER had a problem.  Not once.  You can find a different application for that audio work -- now go find it.

  • What the hell is going on with my MERGE statement

    Hi Guys,
    I maybe posted this to the wrong forum - appreciate it if you would take a look and let me know what you think.
    What the hell is going on with my MERGE statement
    Regards,
    Mark.

    The problem exists in the statement in bold. The inline view of the merge
    returns 11808 rows and should only perform 11808 lookups on the index
    on TBL_INSTRUMENT to determine whether or not to insert a row. It is
    doing 1393981363 !!Do you have accurate statistics on these tables? Have you got histograms on skewed columns?
    Also, given that you are only acting on WHEN NOT MATCHED are you sure MERGE is the way to go? A straightforward insert driving off a NOT EXISTS sub-query or an anti-join might be a much better approach.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • Dreamweaver CS3 "embedded" Flash in my index...

    ...and now the page won't validate.
    A little background, I was using the "Insert Image Viewer" on my site's index page because I needed a simple rolling montage of informational pictures that was (fairly) easily update-able. Photoshop is my strong suit and Flash is my achilles heel, so the Image Viewer seemed like a no-brainer.
    Now when Dreamweaver validates the page, it returns the following: "the tag name 'embed' not found in currently active versions [XHTML 1.0 transitional]"
    Now mind you, I'm not shocked that Dreamweaver has a "easy shortcut" feature that doesn't validate (and it wouldn't be the first time my lack of knowledge has gotten me in trouble, either. Fireworks nav bar from hell, anyone?)
    But it begs the question, if not an "embed" tag, then what?
    Thanks in advance for any light you can shed on this.

    Oh, hey! Thanks to the new and improved forum "helper topics" I just discovered that Murray answered my question two years ago!
    Thanks Murray, you're the best!

  • Automate index building

    Automate index building (acrobat x, win xp): does it work or does it not? I do not find a documentation using index building with windows scheduler. A link or an example would be helful.
    Thank you.

    Kishore
    Since you are saying it is DW envrionment, how many of those indexes will be used in your queries. Instead of rebuilding indexes, gathering up to date stats at the end of your batch jobs and before your users query would probably be more benefiical.
    Index rebuild may not be beneficial like several experts have mentioned in this forum and their blogs. I think there would be very few cases that would benefit from the index rebuilds and from your situation and from what i understand from the description, it may not benefit
    My 2 cents
    MSK

  • Looks good in firefox browser but looks like hell on upload to my server

    I created a webpage, used a simple template of 'header' 'content' 'footer', inserted an image into the header, inserted a table then image then table in the content, and nothing in the footer. it looks great when previewed with Firefox or Explorer. But when I upload it to my server it looks like hell. The image in the header is off to the side, my content is overlaying the header. the left side of the template is dark gray.  What could have possibly happened?
    Thank you in advance for any help you can give.
    here is my code.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>main page</title>
    <link href="_css/one page with header.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    body {
        margin-left: 300px;
        margin-right: 300px;
    </style>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body onLoad="MM_preloadImages('_images/Kindle overlay button.jpg','_images/iBook overlay button.jpg','_images/Nook overlay button.jpg','_images/Kobo overlay button.jpg')">
    <div class="container">
      <div class="header">
        <!-- end .header -->
      <img src="_images/How To Go Back To Work-blue- banner.jpg" alt="banner" width="1000" height="200" align="middle">  </div>
      <div class="content">
        <div align="center">
          <table width="778" height="60" border="1" cellpadding="1">
            <tr>
              <td height="51"><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kindle button','','_images/Kindle overlay button.jpg',1)"><img src="_images/Kindle button.jpg" alt="Kindle Buy Button" width="100" height="40" id="Kindle button"></a></div></td>
              <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('iBook','','_images/iBook overlay button.jpg',1)"><img src="_images/iBook button.jpg" alt="iBook Buy Button" width="100" height="40" id="iBook"></a></div></td>
              <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Nook button','','_images/Nook overlay button.jpg',1)"><img src="_images/Nook button.jpg" alt="Nook Buy Button" width="100" height="40" id="Nook button"></a></div></td>
              <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kobo button','','_images/Kobo overlay button.jpg',1)"><img src="_images/Kobo button.jpg" alt="Kobo Buy Button" width="100" height="40" id="Kobo button"></a></div></td>
            </tr>
          </table>
        </div>
        <p><img src="_images/Index page 4.jpg" alt="Index image" width="1000" height="2532" align="bottom"></p>
          <div align="center">
            <table width="778"  height="60" border="1" cellpadding="1">
              <tr>
                <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kindle button','','_images/Kindle overlay button.jpg',1)"><img src="_images/Kindle button.jpg" alt="Kindle Buy Button" width="100" height="40" id="Kindle button2" align="absmiddle"></a></div></td>
                <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('iBook button','','_images/iBook overlay button.jpg',1)"><img src="_images/iBook button.jpg" alt="iBook Buy Button" width="100" height="40" id="iBook button"></a></div></td>
                <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Nook button','','_images/Nook overlay button.jpg',1)"><img src="_images/Nook button.jpg" alt="Nook Buy Button" width="100" height="40" id="Nook button2"></a></div></td>
                <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kobo button','','_images/Kobo overlay button.jpg',1)"><img src="_images/Kobo button.jpg" alt="Kobo Buy Button" width="100" height="40" id="Kobo button2"></a></div></td>
              </tr>
            </table>
          </div>
        <blockquote>
          <blockquote>
            <blockquote>
              <blockquote>
                <p> </p>
              </blockquote>
            </blockquote>
          </blockquote>
        </blockquote>
      </div>
      <div class="footer">
        <p> </p>
        <!-- end .footer --></div>
    <!-- end .container --></div>
    </body>
    </html>

    You may have forgotten to upload your .css file.
    Without a link to the actual page, it's hard to say what else might be wrong.
    If you uploaded your css, one thing to look at is the case structure of your files. Servers are CaSe SenSiTiVe, your local OS is not, so a link like " _css/one page with header.css" will work with a file named "One Page With Header.css" locally, however, online the link would break since the two names (one all lower case the other with "camel case" structure) would be considered different files by the server.
    Be careful with file names for that reason. They really should be simple lowercase alpha numerics with no spaces (use underscores or hyphens instead).

  • Editor bug if you drag a case structure over an index/replace elements node on a in place structure

    To reproduce:
    Drag a case structure over a index/replace array node
    You'll end up with this train wreck. Autocleanup no longer works
    Interestingly, you can still get it to compile but setting the boolean to true doesn't run the true case. Warning: dragging the below snippet onto your block diagram will probably crash LabVIEW
    Select all that and drag it into a new VI. Run autocleanup and the development environment will crash: Exception: Noncontinuable exception (0xC0000025) at EIP=0x00000000
    Running LabVIEW 2014 SP1 with nothing special.

    To quote Obi-Wan
    This is not the bug you are looking for..........
    Now search for "Clear as mud"
    Having a Wired treminal inside an IPE driving conditional code should break the snot out of that code and cause the compiler to puke all over!  The lack of check for that insanity is causing the crash!  Don't do it!  Just think of how you are abusing the poor IPE.  What if you had a breakpoint on the Inplace Boundary and changed the boolean?  That would necessatate a copy inside an inplace structure....... NO!!!!
    Or, more to the point as best I understand: (Add duct tape adound head as needed)
    An IPE must exist in one "Clump"  Terminal Reads exisist in their own "Clump" (although you can read many terminals in one clump)  So you require a clump to read the boolean terminal inside another clump.  Clumps cannot reside in clumps since clumps are clumps that stand apart from each other by definition.  The run arrow should be broken but is not- hence LabVIEW crashes. Makes sence to me  except the clumping algorythm didn't catch the insanity and the run arrow wasn't broken.  so the next edit caused all hell to break loose.
    (If I missed domething here I am going to learn something today)
    Jeff

  • Linguistic indexes

    I'm using oracle 8.1.6.
    I'd like to improve the performance of sorting using linguistic indexes.
    I'have found an example on how to do this in the Oracle8i National Language Support Guide
    (http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/server.817/a76966/ch2.htm#92022)
    Here it is:
    ALTER SESSION SET query_rewrite_enabled=true;
    ALTER SESSION SET NLS_COMP = ANSI;
    ALTER SESSION SET NLS_SORT='FRENCH';
    CREATE TABLE test(col VARCHAR(20) NOT NULL);
    CREATE INDEX test_idx ON test(NLSSORT(col, 'NLS_SORT=FRENCH'));
    SELECT * FROM test WHERE NLSSORT(col) IS NOT NULL ORDER BY col;
    It produces the required output, but unfortunately it uses the following execution plan:
    SELECT STATEMENT, GOAL = CHOOSE
    SORT ORDER BY
    TABLE ACCESS FULL PAN TEST
    So the optimezer ignores to use the index.
    Yes, I've read the entire section, the oprimizer is CBO and I've analyzed the index and the table.
    Any idea how to make it work using the index?
    Thanks in advance.
    Franci

    Unfortunately your hints doesn't work. I think there is something wrong or misconfigured at my index, so the cbo is not allowed to use it.
    I have made some deeper research. These are the facts:
    If I run the example using a binary index and NLS_SORT set to binary, then I got the proper execution plan:
    SELECT * FROM test
    WHERE NLSSORT(col) IS NOT NULL
    ORDER BY col
    SELECT STATEMENT, GOAL = CHOOSE                    
    INDEX FULL SCAN     TEST_IDX_BIN
    Fine this is what I want.     
    But, if I enter 120000 records to this table and run the same select statement, I got the following execution plan:
    SELECT STATEMENT, GOAL = CHOOSE                    
    SORT ORDER BY               
    TABLE ACCESS FULL     TEST
    Remember, there is 120000 records in the table, of course analyzed. So why the hell the CBO think ordering at runtime is a better solution?
    If i switch to RBO and run the same query, i got the proper plan:
    SELECT STATEMENT, GOAL = RULE                         INDEX FULL SCAN     TEST_IDX_BIN          
    And here comes the best, the magic! :
    if I modify my query, remove the where clause     
    SELECT * FROM test
    ORDER BY col
    then I got the proper plan again in CBO mode:
    SELECT STATEMENT, GOAL = CHOOSE                    
    INDEX FULL SCAN     TEST_IDX_BIN
    Somebody should explain me what the hell is going on!
    So you can see, I found a way how to do a binary ordering, but linguistic ordering is still a question. I would really apriciate if someone could help me out.
    I use pl/sql developer in single session mode. Can this be a problem? I don't think so, but who knows!
    Thanks
    Franci

  • Coldfusion Index Page issue

    Hi All,
    I am new to Coldfusion. I have just migrated to Coldfusion,
    from Oracle about 2 months back. Currently in the process of
    enhancing an application on Coldfusion & Oracle.
    The issue i am facing is rather strange. The Index.html and
    MainContent.html, page in my applications main page contain links
    to 5 other applications (All part of this one application).
    For Eg:
    Index.html
    Appl1
    App2
    App3
    App4
    App5
    MainContent.html
    Appl1
    App2
    App3
    App4
    App5
    However, on the UAT environment, though the Index and
    Maincontent, contained the same contents, they did not display them
    all. Strangely on accesing the application, the main page just
    shows up as ....
    App1
    App3
    App4
    Strange .. but thats exactly what's happenning! Could anyone
    let me know, if this is a configuration issue or something, that i
    can reset. All the rest remain the same, in both Dev and UAT. I
    have my UAT beginninig tomorrow, thus, in frantic need of
    suggestions.
    Thanks and Regards,
    Jay
    Text
    Index.html
    Text

    quote:
    Originally posted by:
    William At FAA
    Second of all I have no idea what the Hell UAT is. As far as
    .html pages being served incorrectly, have you tried re-uploading
    the file. Clearing your browser cache?
    I'm pretty sure he is discussing
    User
    Acceptance
    Testing environment, which is a term that can be used by
    Universities to describe a closed testing environment.
    Basically, the equivalent of what we usually would refer to
    as a Dev Server or even Test Site.

  • JList, events - catching the index selected?

    Was reading the API Docs for JList, and ListSelectionListener, but i cant seem to understand how it works.
    What i "need" to do, is be able to see what index of the JList is selected, hell even the string value associated with the index selected would be usable.
    -thanks

    myList.getSelectedItem();
    or
    myList.getSelectedItems();
    You don't need any listeners to find what it selected. Use a listener if you want an action to occur when the user clicks on the item.

Maybe you are looking for

  • How can I return all line in a file that matches using regexp

    Hi! I want to return whole line from a file. This lines must to contains matches for a pattern. How Can I do this. I make some samples, but only return the matches segment of the line. Sample code to look for 00:00 If I put .*00:00.* in the pattern t

  • Can i transfer music between 2 iTunes accounts on 1 computer

    Can I transfer music from one itunes account to another on the same computer?

  • Messages going in "To Be Delivered" Mode in RWB

    Hello Experts, Your urgent help needed... Right now i m suffering from a big problem.... I m sending messages from SAP to Oracle via XI. for all the messages I am getting acknowledgement back... but if sometimes i will get acknowledgement as "Acknowl

  • Abt clear value problem in scripts

    Hi, Im working on scripts.in scripts im calculating totals by using subroutine.but im facing problem. my problem is first time i calculated it's working fine. when i go back and enter other order number it's taking previous order number and present t

  • While i m starting node manager in weblogic

    Dear All, my weblogic server was working fine after restarted the windows server, when i am trying to start the node manager i m getting below error, please guide me please, this is production <Sep 22, 2013 12:58:07 AM> <WARNING> <There was a problem