Help with z-index

I'm trying to design an online sticky note. It's working fine
in Safari, Firefox (Mac and PC) and IE Mac, but it's not working at
all in IE Win.
It's supposed to display the entire sticky note over the rest
of the content on page load, then the sticky turns into a bar and
you have to click the bar to get the sticky back.
All its doing on IE WIn is make an outline. Any suggestions?
Here's the page:
http://milehighnews.com/114260.112112body.lasso
Here's the code:

Nevermind, It's the active content block problem

Similar Messages

  • Help with context index with /, -, @

    Hi all!
    I have just start work with oracle. I have a problem with context index. Please help me. My problem is :
    I have two column 'name' and 'address'. I index two column with context index (for example : Two index have name is 'Index1' and 'Index 2' ). I set parameter ('STOPLIST ctxsys.empty_stoplist') and i insert four rows such as : ('A','80/3 cong hoa'), ('B','80-3 cong hoa'), ('C','80@3 cong hoa'), ('D','80 3 cong hoa'). But when i execute this select :
    select * from tablename where contains(address, '3 cong hoa') > 0
    Result will return to me 4 rows But i just want one rows is ('D', '80 3 cong hoa').
    I know oracle will convert character '/', '-', '@' to space so result will return 4 rows and i don't know how to oracle keep character '/', '-', '@' when oracle index. I just want to add with 'Index2' for column 'address' and i don't want to add with 'Index1' for column 'name'
    Please help me, and thanks for your attention

    So you want "/", "-" and "@" to link tokens, but you want "." to break numeric tokens?
    OK, we can do that - though it seems a slightly odd requirement.
    There are two special characters NUMJOIN and NUMGROUP which are used for purely numeric tokens. The default will vary by locale, but for English-speaking locales the defaults are "." and "," - so a number such as 1,234,567.89 will be treated as a single token. In French (and other) speaking locales, they are reversed since numbers are normally written as 1.234.567,89.
    If you want to disable these NUMJOIN and NUMGROUP characters, so that numbers are always split into component tokens, then you can set both of the to the space character (it won't allow NULL or '', which would be more logical in my opinion).
    drop table foo;
    create table foo (bar varchar2(200));
    insert into foo values ('80/3 cong hoa');
    insert into foo values ('80-3 cong hoa');
    insert into foo values ('80@3 cong hoa');
    insert into foo values ('80 3 cong hoa');
    insert into foo values ('80.3 cong hoa');
    exec ctx_ddl.drop_preference('foo_lexer')
    exec ctx_ddl.create_preference('foo_lexer', 'basic_lexer')
    exec ctx_ddl.set_attribute('foo_lexer', 'PRINTJOINS', '/-@')
    exec ctx_ddl.set_attribute('foo_lexer', 'PRINTJOINS', '/-@')
    exec ctx_ddl.set_attribute('foo_lexer', 'NUMJOIN', ' ')
    exec ctx_ddl.set_attribute('foo_lexer', 'NUMGROUP', ' ')
    create index foo_index on foo(bar) indextype is ctxsys.context
    parameters ('lexer foo_lexer');
    select * from foo where contains (bar, '3 cong hoa') > 0;Output is:
    BAR
    80 3 cong hoa
    80.3 cong hoa

  • Need some help with Adobe Indexes

    Hello Reader forum! I'm looking for help to make our lives in IT easier.
    We have about 15 pdf files with pdx or index files setup for quick searching. They reside in seperate folders off of a network share.
    Problem is we are about to migrate the share to a new server and about 50 to 60 users have there local installation setup pointing to those shares via \\UNCname. So once we move the share we will have problems, being that we would have to walk to each PC and manually update the index file locations for each user.
    So my question/desire is to either copy the specific file that houses the index paths to all of the PC's or perhaps use VB Script to change all of the references automatically.
    They should all be on 9.0 reader at least.
    Any ideas, suggestions, point me in the right direction would be appreciated.

    Ping this up to the top and looking for any help!

  • Help with set(index, object) please / new to java

    private static void setDobject(Rectangle [] setrect)
              LinkedList<Rectangle> rects = new LinkedList<Rectangle>();
              Rectangle myrectangle = new Rectangle(9.0,9.0);                                                                  
                 rects.set(1,myrectangle);
              for(Rectangle x : setrect)
                   System.out.print("Rectangle: ");
                   System.out.println(x.getLength() + " by " + x.getWidth());
              }  //End of for loop
         }  //End of unsorted
         }  the other previous code works, i have used the add(object) and it works here is the code for that:
    private static void addDobject(Rectangle [] addrect)
              LinkedList<Rectangle> rects = new LinkedList<Rectangle>();
              Rectangle myrectangle = new Rectangle(9.0,9.0);                                                                  
                 rects.add(myrectangle);
                 for(Rectangle x : rects)
                   System.out.print("Rectangle: ");
                   System.out.println(x.getLength() + " by " + x.getWidth());
              }  //End of for loop
              System.out.println();
         }  //End of unsorted
    this is the output error it is giving me :
    Part 1 : An Array List of Rectangles
    Enter length or 999 to exit: 3
    Enter width: 2
    Enter length or 999 to exit: 1
    Enter width: 2
    Enter length or 999 to exit: 10
    Enter width: 20
    Enter length or 999 to exit: 999
    Rectangle: 3.0 by 2.0
    Rectangle: 1.0 by 2.0
    Rectangle: 10.0 by 20.0
    Display Object with added item
    Rectangle: 3.0 by 2.0
    Rectangle: 1.0 by 2.0
    Rectangle: 10.0 by 20.0
    Rectangle: 9.0 by 9.0
    Displaying Objects with SET item
    Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 1, Size:
    0
    at java.util.LinkedList.entry(LinkedList.java:365)
    at java.util.LinkedList.set(LinkedList.java:328)
    at Lab11.setDobject(Lab11.java:129)
    at Lab11.main(Lab11.java:78)
    Press any key to continue...
    finally here is the Rectangle class i'm using:
    public class Rectangle
        private double length;     // Instance variables
        private double width;
        public Rectangle(double l, double w)  // Constructor method
            length = l;
            width = w;
        } // end Rectangle constructor
        public double getLength()             // getter 
             return length;
        } // end getLength
         public double getWidth()             // getter 
             return width;
        } // end getWidth
        public void setLength(double l)      // setter 
             length = l;
        } // end setLength
         public void setWidth(double w)     // setter 
             width = w;
        } // end setWidth
         public double calculateArea()         // calculation method
            return length * width;
        } // end calculateArea
        public void displayRectangle()         // display method
            System.out.println("Rectangle Length = " + length);
            System.out.println("Rectangle Width = " + width);               
        } // end displayRectangle
    } // Rectangle ClassHope you can help guys! thanks!

    LinkedList<Rectangle> rects = new LinkedList<Rectangle>();rects is an empty LinkedList at this point. It has no elements added to it.
    rects.set(1,myrectangle);So you can't set the item at index 1 (the 2nd element in the list) because it doesn't even exist. You need to add items to it.

  • Help with array / indexed property

    Hi,
    I am trying to save the value of multiple dropdowns in the Session Bean. Therefore, I created an index property "rule" in the Bean.
    Each time the page is loadad, a different dropdown appears depending on the previous choices. If the ok button is clicked, the action is performed to save the current dropdown value in the index property:
    public String button1_action() {
    int cnt = 1;
    // if page was loaded before, replace count
    if (getAdminBean().getCount() > 0) {
    cnt = getAdminBean().getCount() +1;
    } else {
    // save current count in Session
    getAdminBean().setCount(cnt);
    setValue("#{AdminBean.rule[cnt-1]}", selectme.getValue());
    This is the error message:
    Exception Details: javax.faces.el.PropertyNotFoundException
    Error setting property '-1' in bean of type null
    Possible Source of Error:
    Class Name: com.sun.faces.el.PropertyResolverImpl
    File Name: PropertyResolverImpl.java
    Method Name: setValue
    Line Number: 153
    I have played around and even the following code would not work to save a value at the first position of the index property:
    setValue("#{AdminBean.rule[0]}", selectme.getValue());
    Can anyone help?
    Thanks,
    Nils

    You can not set the index as you use here i.e
    #{AdminBean.rule[cnt-1]}
    is not correct. Because in JSF the "[" is used for some other purpose.
    I would suggest you to use another property called "index"
    setValue("#{AdminBean.index", cnt-1);
    setValue("#{AdminBean.rule", selectme.getValue());
    Inside the session bean, in the method setRule get the index (already set) and place your value in the correct indexed array.
    Same logic you can use to get the value too
    setValue("#{AdminBean.index", cnt-1);
    getValue("#{AdminBean.rule");
    the method getRule() should get the value for the index and return it.
    - WInston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Help with a Index on sql server

    I have a table named AVAILABILITY
    ID - IDHOTEL - IDROOM - DATE_FROM - DATE_TO
    for each room a hotel insert a period (from - to) when the room in booked
    Considering this query
    select id, date_from, date_to from AVAILABILITY
    where IDHOTEL = #idhotel#
       and IDROOM = #idroom#
       and DATE_TO >= #dateadd("d",-1,now())#
    order by DATE_FROM
    Could you suggest me a index to create on the table ?

    Depending on how many rows are in there, you may find the database engine doesn't actually bother using the index at all, it's not until you have thousands of rows it really starts to make a difference.
    Weigh that up with the amount it'll slow down inserts, and you might find it detrimental to create an index. Definitely put in queryparams though, there's never an excuse for not doing that and as Dan says that'll speed things up a bit.

  • Help with value index

    Hi,
    We need some help getting our queries to join on V() type indexes, so we think.
    Here is our situation: We are on DBXML 2.2.13, and not quite ready to upgrade.
    We are trying to do a join of 2 or sequences each 5000 in length.
    Based on our reading of the query plan, the joins are not using the V(...) type index on both sides of the join.
    One side will use a V() index, the other uses a P() regardless of the indexe(s) we apply.
    We used double data type on the index type because of another posting, but we we get the same results regardless of the datatypes used in out index(s)
    The @patient-ref and @id values are all positive integer values.
    We've re-arranged the query, we've tried many different datatypes on the query.... Help!
    The questions are:
    a) are we on to the correct optimization strategy, and
    b) please help us how to figure out how to get the right type of indexs applied.
    Thanks...
    dbxml> reindex system.dbxml n
    dbxml> list
    Default Index: node-attribute-equality-double
    Index: unique-node-metadata-equality-string for node {http://www.sleepycat.com/2002/dbxml}:name
    2 indexes found.
    dbxml> queryplan 'for $pid in collection()/reports-catalog/report/@patient-ref where $pid = collection()/patient-index/patient/@id return $pid'
    <XQuery>
    <FLWOR>
    <ForBinding name="pid">
    <Navigation>
    <QueryPlanFunction result="collection" container="system.dbxml">
    <OQPlan>P(node-attribute-equality-double,prefix,@patient-ref)</OQPlan>
    </QueryPlanFunction>
    <Step axis="child" name="reports-catalog" nodeType="element"/>
    <Step axis="child" name="report" nodeType="element">
    <OQPlan>P(node-attribute-equality-double,prefix,@patient-ref)</OQPlan>
    </Step>
    <Step axis="attribute" name="patient-ref" nodeType="attribute"/>
    </Navigation>
    <Where>
    <Navigation>
    <QueryPlanFunction result="collection" container="system.dbxml">
    <RQPlan>V(@id,=,'[to be calculated]')</RQPlan>
    </QueryPlanFunction>
    <Step axis="child" name="patient-index" nodeType="element"/>
    <Step axis="child" name="patient" nodeType="element">
    <RQPlan>V(@id,=,'[to be calculated]')</RQPlan>
    </Step>
    <Step axis="attribute" name="id" nodeType="attribute"/>
    <DbXmlCompare name="equal">
    <Variable name="pid"/>
    </DbXmlCompare>
    </Navigation>
    </Where>
    </ForBinding>
    <Variable name="pid"/>
    </FLWOR>
    </XQuery>

    I did try the node-attribute-equality-string index before, but I must have left on my node-element-presence-none index, because now, I'm getting what looks like a much more improved query using the string index and NOT using the node-element-presence-none index.
    dbxml> run test.xq
    Default Index: node-attribute-equality-string
    Index: unique-node-metadata-equality-string for node {http://www.sleepycat.com/2
    002/dbxml}:name
    2 indexes found.
    Adding default index type: node-attribute-equality-string
    Container reindexed: chb-system.dbxml
    5000 objects returned for eager expression '
    for $pid in collection()/reports-catalog/report/@patient-ref
    where   $pid = collection()/patient-index/patient/@patient-ref
    return
            $pid
    Time in seconds for command 'query': 2.438
    dbxml> run test.xq
    Default Index: node-attribute-equality-string
    Index: unique-node-metadata-equality-string for node {http://www.sleepycat.com/2
    002/dbxml}:name
    2 indexes found.
    Adding default index type: node-attribute-equality-string
    Container reindexed: chb-system.dbxml
    <XQuery>
      <FLWOR>
        <ForBinding name="pid">
          <Navigation>
            <QueryPlanFunction result="collection" container="chb-system.dbxml">
              <OQPlan>P(node-attribute-equality-string,prefix,@patient-ref)</OQPlan>
            </QueryPlanFunction>
            <Step axis="child" name="reports-catalog" nodeType="element"/>
            <Step axis="child" name="report" nodeType="element">
              <OQPlan>P(node-attribute-equality-string,prefix,@patient-ref)</OQPlan>
            </Step>
            <Step axis="attribute" name="patient-ref" nodeType="attribute"/>
          </Navigation>
          <Where>
            <Navigation>
              <QueryPlanFunction result="collection" container="chb-system.dbxml">
                <RQPlan>V(@patient-ref,=,'[to be calculated]')</RQPlan>
              </QueryPlanFunction>
              <Step axis="child" name="patient-index" nodeType="element"/>
              <Step axis="child" name="patient" nodeType="element">
                <RQPlan>V(@patient-ref,=,'[to be calculated]')</RQPlan>
              </Step>
              <Step axis="attribute" name="patient-ref" nodeType="attribute"/>
              <DbXmlCompare name="equal">
                <Variable name="pid"/>
              </DbXmlCompare>
            </Navigation>
          </Where>
        </ForBinding>
        <Variable name="pid"/>
      </FLWOR>
    </XQuery>
    Time in seconds for command 'queryPlan': 0.188

  • Need Help with INSERTS & INDEXES

    Let me try explaining my scenario and then my confusion:
    Scenario:
    Parent_table
    Child_table
    Both Parent_table & Child_table have Indexes and Constraints.
    Confusion:
    If I remove all Indexes and Constraints, my INSERTS are 10 times faster. Howevere I am taking a chance of:
    1. Loosing Referential Integrity (No Parent row for a Child Row).
    2. Storing Duplicate data.
    The chnaces of either one of this happening is rare, but it is a definite possiblility.
    I am trying to find some articles that will give me some guidance on how this should be done right. Such that I can disable certain Indexes, so that the existing data can be queried without any problems and the new data is Indexed after the load.
    Any help will be appreciated.
    -- Thanks

    Maintaining indexes certainly requires some additional overhead during inserts. Generally, though, you've got indexes in place to allow you to query data at an acceptable speed. Presumably, when you remove all your indexes, all your reporting/ OLTP applications will crawl to a halt.
    What are the indexes you have on these tables and why do those indexes exist? Frequently, you'll find that you may have indexes that are useless either because they are essentially duplicated by other indexes or because they are indexing attributes that don't benefit from having indexes. If 90% of your insert time is being spent updating indexes, that certainly seems like a possibility here...
    Justin

  • Need help with an index creation

    Hi,
    Oracle 8.0.6,
    Win 2000 server
    SELECT PT_CODE,BUS_UNIT,TOP_BRASS_YN,ROOM_CLASS_CODE,WARD_CODE,
    ADMIT_STATUS_FLAG,PT_ADMIT_DATE,PT_ADMIT_TIME,MD_CODE,REQUEST_NO,REG_NO,
    INP_REG_NO,MOTHER_PT_CODE,CRE_NOTES,PT_DIAGNOSIS_NOTE,
    TMP_CLINIC_DISCHARGE_DATE,ROOM_CODE,BED_CODE,ROWID
    FROM
    A_INP_PATIENTS_ADMT WHERE bus_unit = :1 and admit_status_flag = 'C' and
    nvl(clinical_discharge_yn,'N') not in ('Y','C') and (ward_code = :2 or :3 =
    '007') order by room_code
    call         count       cpu    elapsed       disk      query    current        rows
    Parse 1 0.00 0.03 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 4 0.14 26.61 2306 47604 0 33
    total 6 0.14 26.64 2306 47604 0 33
    I want to create a function based index on column nvl(clinical_discharge_yn,'N').
    I issued the following command,
    create index new_index on A_INP_PATIENTS_ADMT (bus_unit, admit_status_flag, nvl(clinical_discharge_yn,'N'), ward_code)
    But i am getting the error ORA-00907:missing right parenthesis.
    Could you plss tell me where am i missing the parenthesis
    Best Regards,

    If I remember correctly function-based indexes weren't introduced until the 8.1.x versions of Oracle.

  • Need help with creating template. Changes are not going through to index.html page

    Hi all,
    I have an issue with my template that I am creating and also a question about creating template Regions (Repeating and Editable).
    Somehow my changes to my index.dwt are not changing my index.html page.
    Also my other question is: For my top navigation bar and left navigation bar links, do I need to select and define each individual button or link as Repeating/Editable Region? or can I just select the whole navigation bar (the one on the top) etc...
    Below are my steps for creating my template...I am kinda fairly new to using DW and this is my first attempt to making a template following the DW tutorial CD that came with DW CS3.
    I appreciate any help with this...regards, Dano
    -Open my index.html file
    -File/save as template
    -Save
    -update links - yes
    -Select Repeating and Editable Regions (I selected the whole top navigation bar and selected Repeating Region and Editable Region, same with the left side navigation links)
    -File close all
    -Open the index.dwt
    -Save as and selected the index.html and chose to overide it..
    When I make changes to my index.dwt it is not changing the index.html
    I feel that I am missing some important steps here.....
    Website address
    www.defenseproshop.com

    Figured out

  • Can you help with InDesign CS5 index problem?

       This is my first attept at creating an Index. I've pretty much tried everything I can think of to get this index to work properly. I think I might have made some fundamental errors in creating this document. I created a document and not a book. I placed 5 text files without linking them. I thought I could simply use the index panel and enter my words from the toc and front matter and InDesign would find all the occurences in the document. But when I ran the index I got the toc pg numbers and the index pg numbers only, i.e., Illumination vi-225 (p225 being the index pg). So far I have:
    reentered all the index entries to using the "whole document" because I had originally chose "This page" for each entry - that didn't work
    then I threaded the 5 text files thinking that might work - nope!
    then I saved the file as a book and tried using that - that didn't work.
       And yes, I have searched the Adobe CS5 help books, videos, online sites, etc. I'm hoping it's something simple! I would truly appreciate any help with this. Thank you!
       Sue

    You don't have any Shape layers, so you won't have any fill or stroke options.  If you had a rectangle and line layer, you have either deleted them, or caused them to be rasterized.  That would also remove any Fill and Stroke options from the Options bar.
    The 'little camera' at the bottom of the Tool bar, is the Quick mask icon.  Clicking on it toggles between standard and Quick mask modes, like you said.  Clicking on it is exactly the same as hitting the q key.  It has absolutely nothing to do with Shape layers.
    What you need to do now, is regroup.  What exactly are you trying to achieve, and what do you expect to see in your Workspace?  You will have noticed that your workspace is context sensitive.  It automatically changes according to what tools are selected, or what function you are using at any particular time.

  • I need help with event structure. I am trying to feed the index of the array, the index can vary from 0 to 7. Based on the logic ouput of a comparison, the index buffer should increment ?

    I need help with event structure.
    I am trying to feed the index of the array, the index number can vary from 0 to 7.
    Based on the logic ouput of a comparison, the index buffer should increment
    or decrement every time the output of comparsion changes(event change). I guess I need to use event structure?
    (My event code doesn't execute when there is an  event at its input /comparator changes its boolean state.
    Anyone coded on similar lines? Any ideas appreciated.
    Thanks in advance!

    You don't need an Event Structure, a simple State Machine would be more appropriate.
    There are many examples of State Machines within this forum.
    RayR

  • Can you help with RoboHelp Version 11: WebHelp Index Keyword Sorting?

    I'm new to RoboHelp 11, and I am finding it difficult to alphabetize topics listed under my Index Keywords. When I look at the keyword topics in my RoboHelp HTML editor, they are listed in alphabetical order (see the Tools topic in the first image), but when I generate WebHelp the Tools topics are not in the correct order (second image). I believe that the problem pertains to new entries made to a converted RoboHelp Version 6 WebHelp application. Basically, I have been adding content to several old version 6-generated html files in the new RoboHelp HTML editor.
    Another issue that's perplexing is the fact that the Move Up and Move Down icons at the top of the Index editor pod, or whatever it's called, are grayed-out (not functioning). I remember with the Version 6 application, they worked fine.
    Can anyone offer any suggestions on how to get the index alphabetized? I appreciate your help.

    Hi, pweb248
    Just an expansion of what Rick has suggested. Binary index is only used when Microsoft HTML Help "CHM" is your primary layout. So, because WebHelp is your primary layout, Binary should definitely be unchecked. Selecting the Index file (HHK) is fairly standard for WebHelp use and it is sorted numerically and alphabetically by default. The HHK file contains all the Index keywords and their topic associations all tucked into one file, whereas adding Index Keywords using the "Topic" radio button embeds the coded reference right in the topic html file itself.
    This online help topic explains a little more about the Sorting options depending on the primary layouts and whether Binary is selected.
    Adobe RoboHelp 11 * Edit index keywords
    This is the key paragraph:
    >>Note: The Sort command is unavailable with a binary index. The sort function is enabled only when the primary layout is HTML Help and the Index is set to Index File with no Binary Index. In all other layouts, the index remains sorted but for HTML output, the sorting of the index can be changed. Sorting enables the up and down keys on Index Pod.<<
    As you have noticed, your Index Designer view is apparently working as documented. I share your puzzlement about the out-of-sort listing in the WebHelp output shown in your screenshot. I wonder if there is some left-over crud from the ancient RoboHelp 6 code that is not converted properly and gumming up the works? Also curious if you have more than one Index in your project and if you are selecting the right one in the WebHelp Settings > Content dialog. Maybe Rick, Peter or Willam can shed some light on this?
    John

  • Help with CIS Lab - Flesch Readability Index

    I am a first year computer science student and I need some help with one of our projects. It is working on the Flesch Readibility Index.
    We have to create three classes: word, sentence and Flesch (which will include the main method)
    The word class has to have the methods countSyllables, getWord and isVowel. We already did that.
    The sentence class has to have methods countWords, and nextWord.
    We have countWords but are having a lot of problems with nextWord.
    As of right now when we call the nextWord() method from the main method, we are given only the first or last word in the sentence. I'm using a string tokenizer to do this.
    I need to somehow figure out how to make the method where when it is called it gives one word, remembers the word it gave and then when called again gives the next word because the method cannot be passed any value. It would be a lot easier if I could pass what word I wanted and then just use an array.
    Here is what my partner and I have so far:
    import java.util.*;
    import java.io.*;
    * Write a description of class Sentence here.
    * @author (your name)
    * @version (a version number or a date)
    public class Sentence
        String sentence;
        private int tokenCount;
        public Sentence(String s)
            sentence = new String(s);
        public int countWords()
            int numWords = 0;
            boolean prevWhitespace = true;
            for (int i = 0; i < sentence.length(); i++)
                char c = sentence.charAt(i);
                boolean currWhitespace = Character.isWhitespace(c);
                if (prevWhitespace && !currWhitespace)
                    numWords++;
                prevWhitespace = currWhitespace;
            return numWords;
        public Word nextWord()
            StringTokenizer tokens = new StringTokenizer(sentence, " .,", false);
            Word test = new Word("");
            tokenCount = tokens.countTokens();
            for (int i = 0; i < tokenCount; i++)
                    test = new Word(tokens.nextToken());
            return test;
        public static void main(String[] args)
            Sentence test = new Sentence("The quick sly fox jumped over the lazy brown dog.");
            System.out.println(test.nextWord().getWord());
            System.out.println(test.nextWord().getWord());
            System.out.println(test.nextWord().getWord());
            System.out.println(test.nextWord().getWord());
            System.out.println(test.nextWord().getWord());
    }Where the main method gives us:
    dog
    dog
    dog
    dog
    dogAnother thing is that for nextWord() the return type has to be Word.
    Here is a link to the full lab:
    http://users.dickinson.edu/~braught/courses/cs132f02/labs/lab07.html
    Any help you can give would be GREATLY appreciated

    Please read the teacher's instructions again. All the information that you need to know is in there. They explicitly state: "use a StringTokenizer as part of the the instance data". Read up on what instance data means. Utilize this instruction and it should fall into place.
    Edited by: petes1234 on Oct 28, 2007 8:34 AM

  • How to configure one TREX host with multiple index servers ?

    Hi All,
    Does anyone know how to configure TREX on the one host,
    with multiple index servers ?
    Reason for this is to make better use of resources available on the host server(4 Gig, 4 Processor, Windows2003), to improve the search performance of
    our KM content for portal users.
    I am using TREX 7 and have not been able to do this,
    despite reading the Single and Distributed install
    documentation.
    Any help would be appreciated.
    Regards,
    Andres

    Hi Andres,
    To make use of the RAM a Server provides you have to run two indexserver processes (each can then consume 2 GB);
    Proceed like this:
    1. Go to TREXdeamon.ini; check if section [indexserver2] is there (it is already provided, but not active in standard installation)
    2. In TREXdeamon.ini go to
    [daemon]
    references sections below
    programs=nameserver,preprocessor1,indexserver1,queueserver,alertserver
    and add indexserver2 here. Restart TREX; second porcess is then started; can be checked in TREX monitor in Portal as well
    3. To distribute existing indexes to the new process, start TREXadmintool and go to Index: Landscape
    Go to the last two columns and move the indexes (move master here/secondary mouse click)
    If you don't distribute the indexes the new index server process will be regarded when an new index is created.
    Hope this helps!
    cheers
    Bettina

Maybe you are looking for

  • JDBC receiver adapter: Insert of CLOB into Oracle DB

    Hi, I've got a short question: Is it possible to insert CLOB fields (larger than 4kB) into an Orcale database using the JDBC receiver adapter without using a stored procedure? We are on XI 3.0 SP20. I had someting in mind that this is only possible w

  • Mapping static constant objects.

    hi all, Briefly describe, I have the following classes : public class Status public final Status OPEN_STATUS = new Status("OPEN"); public final Status CLOSE_STATUS = new Status("CLOSE"); String name; private Status(String pName) this.name = pName; pu

  • Short dump in SDP94

    Hi,         I am getting the following error when I am trying to access SDp94. I am actually working on a different PA/POS/Planning book combination than the standard one but the system keeps going to 9ADP001 and asking if I want to initialize it. Th

  • User access logging for my Oracle database 9.2.0.3 and Linux server

    Hi Friends, I would like to have a record of users who had accessed my oracle apps database(9.2.0.3).Please let me know the method. Also i would like to record the users who had connected to my linux server (using putty) please suggest a method. Rega

  • ALV AutoRefresh....Using SLIS!

    Haii All, Is it possible to refresh my alv list as i am using the type-pools SLIS in my program. Actually i am calling a Trasaction (MM02) and when i make the changes in the transaction and come back the list should be updated. I have created a refre