Parallel hint as part of index not working

Hello,
I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
INSERT INTO TABLE1
SELECT column1, column2
FROM table2;
I modified the query so that it has a parallel:
SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
column1, column2
FROM table2;
This parallel helps with the query's speed. However, when I use it with the insert statement on the top, it does not insert any record, nor does it give an error message:
INSERT INTO TABLE1
SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
column1, column2
FROM table2;
I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.
Edited by: user577453 on Mar 17, 2009 12:25 PM -- Added last paragraph.

user577453 wrote:
I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.First of all, your subject is probably supposed to be "Parallel hint as part of *insert* not working" rather than "Parallel hint as part of *index* not working", am I right?
Can you show us the EXPLAIN PLAN output you get for your query and the one you get for your INSERT when using the parallel hints as posted?
Please mention your database version (4-digits, e.g. 10.2.0.3).
Please use DBMS_XPLAN.DISPLAY to format the EXPLAIN PLAN output if you're already on 9i or later, and please use the \ tag before and after the DISPLAY output to format it in fixed font for readability.
What seems to be odd that you say that the result of the query seems to be different when using it as part of the INSERT statement? Are you sure that running the query standalone returns data whereas using exactly the same query in the INSERT statement inserts no records? This would be buggy behaviour.
Regards,
Randolf
Oracle related stuff blog:
http://oracle-randolf.blogspot.com/
SQLTools++ for Oracle (Open source Oracle GUI for Windows):
http://www.sqltools-plusplus.org:7676/
http://sourceforge.net/projects/sqlt-pp/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • List view threshold error in list view web part, column indexing not working

    Hello all,
    I have a list with about 8000 items and the list view threshold is set at 5000. I want to filter the list by a certain column ("Title", single line of text) so I indexed that column. I can filter the list (AllItems.aspx) however if I put the list
    on a web part page (in the form of a list view web part), I can't filter by that column. Shouldn't the indexed column allow this?
    Note that the threshold will not be increased and a daily time period to bypass the threshold is in place, but I'm looking for a solution for any time of they day.
    Thanks!

    Thanks for your response. Your suggestion did work! It got me thinking and I took some time to investigate this column indexing stuff a little closer. I had an "ah-ha" moment.
    Regardless of whether the column has an index or not, dynamic drop down filtering in a list view web part will only work if the list view has fewer items than the threshold. This is the critical point I was missing. I was assuming the index would allow for
    drop down filtering.
    Thanks again!

  • Why bitmap index not working?

    I have a table containing 4.2M rows and 16 distinct fs_type_code. So I created a bitmap index ntr_fs_type_code_ind on the column. Then I run the query:
    update /*+ INDEX_COMBINE(NTR_FS_TYPE_CODE_IND) */ ntr_CORPALL_20050801 d
    set eqt_basket_id = NULL, index_weight = NULL
    where
    fs_type_code in ('EQGR','EQVG','EQDL')
    and eqt_basket_id = equity_symbol
    and index_weight = 0;
    I clearly tell optimizer to use the bitmap index. But it turns out the optimizer ignore the index and still use full table scan.
    When I created regular b-tree index, the same query (without hint) use index scan.
    Can anybody tell me why the bitmap index not working here?
    Thanks,

    <quote>I clearly tell optimizer to use the bitmap index</quote>
    You are clearly not doing it right (see bellow). But anyway …
    1. For frequently modified tables (OLTP type application) you may want to rethink the applicability of bitmap indexes …
    low cardinality in itself is not enough justification for using bitmap indexes.
    2. Your update statement may modify a minority, a majority, or anything in between of the total number of
    rows in your table … here is no one universal access method which is always better
    (if there were one they wouldn’t have bothered with coding the rest).
    In short, index access is not always the better way.
    3. Don’t rush into hinting (because that optimizer is such a lousy piece of software) …
    and if you do, make sure you do it correctly and for the right reasons.
    flip@FLOP> create table t as select * from all_objects;
    Table created.
    flip@FLOP> insert into t select * from t;
    30043 rows created.
    flip@FLOP> insert into t select * from t;
    60086 rows created.
    flip@FLOP> insert into t select * from t;
    120172 rows created.
    flip@FLOP> insert into t select * from t;
    240344 rows created.
    flip@FLOP> create bitmap index tx on t (object_type);
    Index created.
    flip@FLOP> exec dbms_stats.gather_table_stats(user,'T',method_opt=>'for all indexed columns',cascade=>true)
    PL/SQL procedure successfully completed.
    flip@FLOP> select object_type,count(*) from t group by rollup(object_type);
    OBJECT_TYPE          COUNT(*)
    CONSUMER GROUP             32
    DIRECTORY                  32
    EVALUATION CONTEXT         16
    FUNCTION                 1648
    INDEX                   23152
    INDEX PARTITION          2048
    INDEXTYPE                 128
    JAVA CLASS             163024
    JAVA RESOURCE            3120
    LIBRARY                   224
    LOB                        16
    MATERIALIZED VIEW          32
    OPERATOR                  464
    PACKAGE                  5488
    PACKAGE BODY               32
    PROCEDURE                 640
    SEQUENCE                  144
    SYNONYM                202512
    TABLE                   18816
    TABLE PARTITION           880
    TRIGGER                  4768
    TYPE                    10640
    TYPE BODY                  16
    VIEW                    42816
                           480688
    flip@FLOP> set autotrace on explain
    update few rows … CBO goes with the index … no hinting
    flip@FLOP> update t d set object_id=object_id-1 where object_type in ('INDEX','PACKAGE','PACKAGE BODY','TABLE');
    47488 rows updated.
    Elapsed: 00:00:09.02
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=536 Card=47488 Bytes
              =1044736)
       1    0   UPDATE OF 'T'
       2    1     INLIST ITERATOR
       3    2       BITMAP CONVERSION (TO ROWIDS)
       4    3         BITMAP INDEX (SINGLE VALUE) OF 'TX'
    update lots of rows … CBO goes with the ft … no hinting
    flip@FLOP> update t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM');
    365536 rows updated.
    Elapsed: 00:00:25.04
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=638 Card=365536 Byte
              s=8041792)
       1    0   UPDATE OF 'T'
       2    1     TABLE ACCESS (FULL) OF 'T' (Cost=638 Card=365536 Bytes=8
              041792)
    update lots of rows … wrong hint syntax … CBO goes with the ft
    flip@FLOP> update /*+ index_combine(tx) */ t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM');
    365536 rows updated.
    Elapsed: 00:00:21.00
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=638 Card=365536 Byte
              s=8041792)
       1    0   UPDATE OF 'T'
       2    1     TABLE ACCESS (FULL) OF 'T' (Cost=638 Card=365536 Bytes=8
              041792)
    update lots of rows … correct hint syntax … CBO goes with the index … but was it better than the ft?
    flip@FLOP> update /*+ index_combine(d tx) */ t d set object_id=object_id-1 where object_type in ('JAVA CLASS','SYNONYM')
    365536 rows updated.
    Elapsed: 00:00:25.01
    Execution Plan
       0      UPDATE STATEMENT Optimizer=CHOOSE (Cost=1665 Card=365536 Byt
              es=8041792)
       1    0   UPDATE OF 'T'
       2    1     INLIST ITERATOR
       3    2       BITMAP CONVERSION (TO ROWIDS)
       4    3         BITMAP INDEX (SINGLE VALUE) OF 'TX'
    flip@FLOP>

  • Hints FIRST_ROWS and order by not working together

    Hi,
    We are facing an issue like we are using hint FIRST_ROWS with a query which have a order by clause, if we are giving both together
    it is not working and if we remove either order by or hint it is working
    SELECT /*+FIRST_ROWS*/ * FROM (SELECT MYROWS.*,
    ROWNUM RN FROM (SELECT * FROM V_REPORT WHERE START_DATE &gt; '22-SEP-04'
    AND END_DATE &lt; '22-SEP-08' AND
    (GEO_ID in (select GEO_ID from loc where anc = 0))
    ORDER BY
    ENTITY,OPERATION,NAME
    MYROWS)
    A simliar query from other view is working fine.
    Please help me on the same.

    David_Aldridge wrote:
    Solomon Yakobson wrote:
    Well, ORDER BY implies all rows must be fetched first and then ordered. So yes, FIRST_ROWS does not make much sense in that situation, does it?.
    SY.Not in every case -- sometimes an index can be used by the optimizer to returen rows in the correct order without having identified the entire result set.
    FIRST_ROWS is deprecated in favour of FIRST_ROWS(n), by the way. http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/usingpe.htm#i1009413
    And even if the result set needs to be ordered and no index can be used to avoid the sort operation Oracle offers for "top n" and "pagination" queries the "ORDER BY STOPKEY" optimization which only keeps the top n rows to sort (probably in memory if n is small enough) and eliminates the remaining ones which can make a huge difference if the volume to sort is large.
    I've written a note about issues like that recently.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Index not working fine

    hi,
    i am facing a problem that is i have a table with name PAP_WF_PATHDETAILS.
    i have created a index wf_step_ind on column WF_PD_STEPID IN THAT TABLE.
    i hane distinct WF_PD_STEPID values like this
    -1,1,2,3,4,5,6,7,8,9,10,11,12,13
    when i am using drl command like
    "SELECT WF_PD_ACTIONTIME FROM PAP_WF_PATHDETAILS WHERE WF_PD_STEPID="
    index is working for all the values expect -1 and 1.
    i am not understanding the reason
    can any one help me,
    regards,
    kishore

    Hi,
    Sorry dear I can not make out any things from the explain plan you have posted. Cant you format it before posting?
    Moreover can you use select * from table(dbms_xplan.display()) to show the output. It seems whatever you are using is not giving complete information.
    I wanted to know the number of rows oracle is thinking for each value.
    It seems you have lot many number of records in the table with WF_PD_STEPID set to -1 and 1 when compared to other values.
    This makes oracle believe that doing a full table scan for these two values would be much faster than doing index range scan.
    Other way to test the performance for index scan on these two values, would be by forcing query to use hint. How to do this? - You can get the information in Oracle documentation/google.
    Regards
    Anurag

  • Search indexing not working in Outlook PST files

    My boss recently got Office 2010 on his new laptop.  I copied his PST's from his old laptop whihc had Office 2003 on it to the new one and added them to his profile.  They are there and look to be workign fine, until you try any sort of search
    on them.
    If I am looking at the eMails in the PST and I see a whole lot from
    [email protected] and then in the search box I type
    [email protected] the emails are all firltered away and I am told that there are no items that match the criteria.  This also happens when I try try to run an advanced search.
    So according to this post,
    http://social.technet.microsoft.com/Forums/en/outlook/thread/b1859770-dfb5-4224-995f-be828bd21333, I disabled Indexing of outlook, then search stops working on my default location, i.e. if I search my inbox or anything in that datafile, I get
    no results returned, but if I search one of the archieve PST files for say
    [email protected] the search runs for ages with out retunring any results, if I stop the search and then rerun it then I get results.
    It just seems a bit strange that I have to choose iether or.
    Please help ASAP as my boss leave tomorrrow on a trip to Australia and I would like to get this sorted out be fore he leave.
    Regards
    A user needs the admin password like nitro glycerine needs a good shake.

    This seems to be an ongoing problem. The instant search feature in Outlook 2010 is not working correctly for a large number of users. I have read many, many posts here in TechNet and many more that come up with a Google search. None of the solutions provided
    are permanently solving the problem.
    I have tried every potential solution I have found:
    Rebuilding the index did not work
    The registry key(s) PrevenIndexingOutlook, PreventIndexingEmailAttachments, did not exist (the Search Key did not exist). I tried adding both keys in 2 different suggested locations (HKCU and HKLM) Search indexing did not work with or without those keys
    added.
    I have tried everything that I have found everwhere to resolve this problem. I found one solution that appeared to work a month or so ago. Unfortunately, I cannot find it again and no new emails have been added to the index since that day (09/15/2010).
    I tried rebuilding the index (again). This process has removed all of the emails from the index that had been there after I applied the fix that seemed to work. I am continuing to research this problem in the hope that I will find that previous partial solution.
    It would be nice to get some feedback from Microsoft to let us know if this problem is being looked into. All of the solutions provided from Microsoft on these forums have failed to correct this long term problem.
    FYI: I am running Windows 7 Ultimate (64 bit) and Office Professional Plus 2010. These were fresh installs, not upgrades. After installation the instant search feature in Outlook was working, I do not know exactly when it stopped working.

  • Second part of formula not working

    Good morning
    I have this formula below
    IF IsNull({GfCnSpSpBio.GfCnSpSpBio_IDKEY}) and {GfCnBio.GfCnBio_Key_Indicator} = "I" then
    {GfCnBio.GfCnBio_Title_1} + " " + {GfCnBio.GfCnBio_Last_Name}
    else if {GfCnSpSpBio.GfCnSpSpBio_Spouse_ID} <> 0 and {GfCnBio.GfCnBio_Key_Indicator} = "I"
    then {GfCnBio.GfCnBio_Title_1} + " & " + {GfCnSpSpBio.GfCnSpSpBio_Title_1} + " "+{GfCnBio.GfCnBio_Last_Name}
    This part of the formula in crystal reports is not working, the salutation just shows up as blank.  Does it have to do with a JOIN with teh tables.
    else IF ({GfCnBio.GfCnBio_Key_Indicator} = "O"  //Organizations
    AND IsNull({GfCnRelCt_1.GfCnRelCt_1_Title_1}) OR isNull({GfCnRelCt_1.GfCnRelCt_1_Last_Name}) )THEN
        "Supporter"
    ELSE
      {GfCnRelCt_1.GfCnRelCt_1_Title_1} + " " + {GfCnRelCt_1.GfCnRelCt_1_First_Name} + " " +
    {GfCnRelCt_1.GfCnRelCt_1_Last_Name} + ",";
    I am not sure what i am doing wrong here.
    Thanks

    Thank you for your help.
    I used the formula below and it worked
    IF IsNull({GfCnSpSpBio.GfCnSpSpBio_IDKEY}) and {GfCnBio.GfCnBio_Key_Indicator} = "I" then
    {GfCnBio.GfCnBio_Title_1} + " " + {GfCnBio.GfCnBio_Last_Name}+ ","
    else if {GfCnBio.GfCnBio_Key_Indicator} = "I"
    //{GfCnSpSpBio.GfCnSpSpBio_Spouse_ID} <> 0 and {GfCnBio.GfCnBio_Key_Indicator} = "I"
    then {GfCnBio.GfCnBio_Title_1} + " & " + {GfCnSpSpBio.GfCnSpSpBio_Title_1} + " "+{GfCnBio.GfCnBio_Last_Name} + ","
    else IF ({GfCnBio.GfCnBio_Key_Indicator} = "O"  //Organizations
    AND IsNull({GfCnRelCt_1.GfCnRelCt_1_Title_1}) OR isNull({GfCnRelCt_1.GfCnRelCt_1_Last_Name}) )THEN
        "Supporter"
    ELSE
      {GfCnRelCt_1.GfCnRelCt_1_Title_1} + " " + {GfCnRelCt_1.GfCnRelCt_1_First_Name} + " " +
    {GfCnRelCt_1.GfCnRelCt_1_Last_Name} + ",";

  • Advanced Search Index not working

    Hi All,
    I have an issue with Adobe Reader. Specifically I use the Advanced Search - and usually select one more more index's.
    However. I downloaded the latest version 11.0.10 and I cant seam to get my index search working:
    1/ I get a security popup saying "The operation you are trying to perform potentially requires read access to your drives. Do you want to allow this operation?" I hit allow.
    2/ When I select "Select index..." nothing happens and it goes straight to "currently selected index". It had not remembered my indexes (since when i seach at this pont nothing comes up)
    I've re-installed the reader twice - same results. I have managed to "double click" a .pdx file which has allowed me to get access to the index search. However it forgets this selection the next time i load adobe reader.
    Any assistance or points would be good.
    Cheers

    Hi Philip ,
    Could you please refer to the following thread and see if that solves the issue.
    Unable to turn on Advanced Search for viewing PDFs (v9.1) through IE7
    Regards
    Sukrit Dhingra

  • User index not working as expected..

    Hi all,
    we have a ldap to which two instances running on two diff boxes are connected, there are approx 4000 users and all these users show up in instance one but for some strange reasons only 1000 odd users show up in instance two, ldap has been configured accordingly for maxhits....the ume index on the instance two was deleted and recreated but has not solved the prob...instance one is ep6 and instance two is ep7.0 ? can anyone who knows what might have gone wrong throw some light on this please ?
    thanks in advance,
    Anupama.

    Thanks for the reply Scott, I have just had one of those Homer Simpson Doh! moments. I was copying the code into this post and then realised that I was actually using the value of the username item that has changed in the first parameter which attempts to get the userid:
    htmldb_util.edit_user(
    p_user_id => htmldb_util.get_user_id(UPPER(:P18_USER_NAME))
    ,p_user_name => UPPER(:P18_USER_NAME)
    ,p_web_password => x_default_pw
    ,p_new_password => x_default_pw
    ,p_developer_roles => x_developer_privs
    ,p_group_ids => x_group_ids);
    and quickly realised that this would not work as it was a value that could have been modified. so I created a new hidden item to store the original and modified the call to:
    htmldb_util.edit_user(
    p_user_id => htmldb_util.get_user_id(UPPER(:P18_ORIG_USER_NAME))
    ,p_user_name => UPPER(:P18_USER_NAME)
    ,p_web_password => x_default_pw
    ,p_new_password => x_default_pw
    ,p_developer_roles => x_developer_privs
    ,p_group_ids => x_group_ids);
    and it works as expected.
    Thanks for your help.
    Stuart

  • Tab Index not working - Screen Personas

    Hello guys,
    The order I put in my tab index propeties does not work. I don1t know what to do to fix it. I already tried to group and ungroup witthout success.
    Any idea??
    Thank you

    Ok.
    I have 5 fields in my screen (3 combo box and 2 text fields). In the first field (combo box) I set the tabIndex as 0, for the second field (text) I set 1, the third (combo box) = 2, the next (text) = 3 and the last (combo box) = 4.
    Now imagine the focus on the first field (number 0) and when I press TAB, it doesn't go to the next (number 1), it jumps to the third (number 2).
    That's help?
    Thanks Tamas

  • Part of Keypad Not Working

    Hi everyone,
    I have an LG VX5400 phone, and have been having trouble with the keypad for the past week or so.  Specifically, the middle column of numbers (2, 5, 8, and 0) does not work.  I can't press any of these numbers, which makes texting very difficult.  In addition, I also can't press the Speaker Phone button, the Send button, or the "up" button on the left side of the phone (which increases master volume).  The rest of the keys work as normal.  Any suggestions?
    Thanks!
    -bills

    How long have you had the Device ?  If you've had it for a long time 6 month or a year it might be the contact pads on the underside of your key pad is worn down or Worn out.. Is the phone around allot of Dust Like farming, Grain Elevator, Etc. or are you were there is allot of moisture any one of those elements can cause shortness of Life in the Keypads..But if your not around any of that as i mentioned it might just physical wear..
    I would take it too the Local come store and have a Rep or Manager take a look at it and if they can't get it to work as mentioned they'll possibly send you home with a new one or a Refurbished one... or have one sent to your residence.. 

  • Part of script not working

    There are three values specified in a dropdown list contained in a subform. I want the dropdown value to be set, and the caption of a text field to be changed, by a script which requires the user to answer a question. The problem is with setting the value of the dropdown list itself. It does NOT change. The caption of the text field changes as expected and the message box also displays.
    In the change event of the dropdown list, I have the following script:
    var nButton = app.alert({cMsg: "Question",cTitle: "Question Title", nIcon: 2, nType: 3});
    //if no, Change caption to "Equipment Name:" and dropdown value to 1
    if (nButton == 3){
    this.rawValue = 1;
    InstName.caption.value.text.value = "Equipment Name:  ";
    xfa.host.messageBox("Message1", "Title1", 3, 1);
    //if yes, Change caption to "Instrument Name:" and dropdown value to 2
    if (nButton ==4){
    this.rawValue = 2;
    InstName.caption.value.text.value = "Instrument Name:  ";
    xfa.host.messageBox("Message2", "Title2", 3, 1);
    Why is the dropdown value not changing? There are no other scripts associated with the dropdown list. I have also tested this.rawValue = 1; as the exit event and it works there. Puzzled.

    I think I understand; if I am correct in my understanding then using this.rawValue to set the value of a field with a change event does not work because data binding occurs after the change event has expired--and to the field value last set (which would also explain the time lag and execution of other events before the caption change I requested gets executed) .
    Thanks again.

  • Part of keyboard not working

    My computer, hp m8000n with ps2 keyboard. Operating system Windows Vista Home premium.. Had an issue with norton antivirus2012. This almost knocked out my computer. was able to restore system back with restore point. Have some issue with programs.
    My problem with my keyboard is; the main keys work, but the side keys such as the key to open the disk door, e-mail etc do not work.
    I checked devise manager: it said the key board is working properly. 
    Thank you Ed
    This question was solved.
    View Solution.

    Hi,
    Download and install this driver.
    Restart the system and check the result.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • Primary key index not working in a select  statment

    Hi ,
    I'm doing a :
    select *
    from my_table
    where B = v1 and
    A = v2 ;
    where A and B are the primary key of the table, in that table the primary key index is there and the order of the primary key definition is A first and then B.
    While testing this statment in my database the Explain Plan shows that it is using the index ok but when
    runninng in client database it is not using it becasue of the order (i think), is this something configurable that I need to ask to my DBA ?
    The solution I found was to do the select with a hint wich fix the problem , but I'm curious about why is working in my dadabase and not in the client database
    thanks in advance .
    oracle version 11g

    This is the forum for SQL Developer (Not for general SQL/PLSQL questions). Your question would be better asked in the SQL and PL/SQL forum.
    Short answer: The execution plan used will depend on optimizer settings and table/index statistics. For example if the table has very few rows it may not bother using the index.

  • HTML5 Glossary Letter Index Not Working

    Cp 7.01.237
    Glossary Interaction
    Approximately 175 entries
    Published as HTML5
    Clicking a letter from the index results in the list of words scolling only part way. For instance, clicking the letter T will only scroll the list to about the P section of the list.
    I have reported the bug.
    I have tried the project in Chrome, Firefox, IE, Safari, Opera and on an Android phone (4.3). All of them scroll only part of the way when a letter toward the end of the alphabet is clicked.
    I have tried with and without scalable HTML content selected. Same results.
    The project works as expected when published to SWF and not HTML5; meaning the letter index scrolls to the correct position in the list of terms when published as SWF.
    I am hopeful Adobe will respond to this issue.
    Thank you.
    Michael

    var elementPosition = dataID*28;//(28 is estimated height of each td item with padding)
    "28" seems to be the magic number. If I use a value greater than or less than I get poor scrolling accuracy. I believe the issue results from some <def></entries being longer than others and some are very short. When "28" is used, the scrolling is pretty good and I am able to see the letter heading for each letter. If, for instance, I use "30" as the value, I get progressively worse scrolls and the further down the alphabet I go, the more likely it is that it will scroll past the letter heading and put me one or more terms into that letter's group.
    All I can say is, "Wow!" That was quite a find. You seem to have some detailed knowledge of how the glossary interaction works with HTML5. I appreciate it. Thnak you.

Maybe you are looking for

  • HT1660 I HAVE 2 ITUNES USER`S ID HOW CAN I MERGE THEM, IF SO?

    I HAVE 2 ITUNES USER`S ID HOW CAN I MERGE THEM, IF SO?

  • S.video to usb

    Looking for a video grabber or capture device that takes s-video or composite video and connects to the usb port that works for WinXP using Parallels. It must operate under Windows so I can use it on occasion on a PC. I tried many device that work on

  • 9iAS Release 2 Forms/Reports Servers

    With 9iAS Rel1, there was a forms and a reports startup script for the servers. I'm not seeing this with Release 2. Also, we have had problems with Reports with regards to the DISPLAY environment setting. Where do I alter the DISPLAY for the reports

  • What happened to highlighting full paragraphs when you double click on a piece of text?

    When ever I double click I cannot highlight the entire text for some strange reason. And this happened all of a sudden. Because I was having no trouble about a few days ago but all of a sudden now when I double click on one word it only highlights th

  • How can I config to create an out-of-box jms queue

    Hi All, I am new to WebLogic Server and I need to create an out-of-box jms queue for my project, which means instead of creating and configuring the queue at the administration console, I'd like to program and change some configuration files to achie