Duplicate index links

Hi,
We're using RH 7.03.001 for a project. When we generate our primary layout (FlashHelp), the index works fine until we post on our Intranet. Once it's posted, we link to the htm file and if you click on Index and then click on a keyword, the results are duplicated and sometimes they repeat 3 times (see screenshot below). When we test this on a local PC or laptop, there are no repeat results. Any suggestions on what to check to resolve this?
Thanks.

Hi there
Your image suggests that the index term is linked to two topics that may be titled identically. Have you scrutinized the index term carefully to ensure this isn't the case?
I suppose it's also possible that you have somehow managed to merge systems in a manner where the same topic (or topics) are listed more than once.
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • Script to find duplicate index and how can we tell if an index is REALLY a duplicate?

    Does any one have script to find duplicate index? and how can we tell if an index is REALLY a duplicate?
    Rahul

    One more written by Itzik Ben-Gan
    The first query finds exact matches. The indexes must have 
    the same key columns in the same order, and the same included columns but in any order. 
    These indexes are sure targets for elimination. The only caution would be to check for index hints. 
    -- exact duplicates
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols,
    (select case keyno when 0 then colid else NULL end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by colid
    for xml path('')) as inc
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'exactduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and c1.cols = c2.cols
    and c1.inc = c2.inc;
    The second variation of this query finds partial, or duplicate, indexes 
    that share leading key columns, e.g. Ix1(col1, col2, col3) and Ix2(col1, col2) 
    would be considered duplicate indexes. This query only examines key columns and does not consider included columns. 
    These types of indexes are probable dead indexes walking. 
    -- Overlapping indxes
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'partialduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and (c1.cols like c2.cols + '%' 
    or c2.cols like c1.cols + '%') ;
    Be careful when dropping a partial duplicate index if the two indexes differ greatly in width. 
    For example, if Ix1 is a very wide index with 12 columns, and Ix2 is a narrow two-column index 
    that shares the first two columns, you may want to leave Ix2 as a faster, tighter, narrower index.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How do I duplicate hard links when copying with Finder rather than making two copies of the file?

    I have 1.6 TB of Video on one external drive. All of this was imported using iMovie and lives mostly in iMovie events. I then decided I wanted to use Final Cut Pro X for some additional flexibility.
    I opened FCPx and imported the iMovie events and movies. As I expected, FCPx made hard links to the files in the iMovie events rather than wholesale copying the events into the original content area. I have found that it is much easier to keep all movie content on one disk rather than having is spread all over creation, so I am trying to make a copy on another larger drive.
    I am trying to use Finder to copy the files rather than some other more obtrusive option using the actual applications. The problem is, when I use the finder Copy function, all files that had hard links in the file system are now phyiscally copied twice and are actually duplicated on the new disk. This doubles the size of the the content on the new disk and completely ruins the reason for moving the files in the first place.
    Now that I have finally figured out what is going on, I guess I can figure out the proper Unix style commands in the Terminal to make happen what I expect, but I would much rather have Finder duplicate a link if it finds a link. I really want to be able to use iMovie or FCPx on the Event content and only have one copy of the content unless I want to make a modification in one or the other.

    Mark,
    I have had a similar problem lately.  I use rsync to perform nightly backups from one internal drive to another.  I noticed (after I started using Final Cut Pro X) that my backup drive had 300G more disk space allocated.  It was only after a long and painful debugging process that I figured out that FCPX had created hard links to my iMovie Events.  I don't have a solution to this problem yet but I wanted to at least mention that I have run into the same challenge.
    Regards,
    Greg

  • The index link does not appear in italic. What do I do wrong?

    The primary definition of the glossary term does appear in bold, but the secondary (index link) term does not appear in italic.  I also can not format the word in another color or typeface. Any ideas on how to fix this?

    Try one of your other USB ports. Be sure to insert it with the plated fingers pointing upwards.

  • Duplicate Quick Links

    Hi Guys,
    I have Role A that contains Workset A, that contains Page A which contains iView A. Similarly, Role B -> (contains) Workset B -> Page B -> iView B. Both Page A and Page B have parameter QuickLink configured as "Hello", thus making them duplicate quick links. The reason behind having duplicate quick links is to suit the scenario: if User has Role B only, then http://<domain>/Hello should display Page B under Role B. But If User has Role A and B, then http://<domain>/Hello will display Page A under Role A 1st.
    I read that to create this sequencing can be done by arranging the sort order of the navigation node -"If one quick link string is defined for two navigation nodes, the first node in the useru2019s navigation tree is displayed." 
    Thus, I attempted to create this order by setting Sort Priority of Role A to be lesser than Role B which makes Role A the top navigation node. But it doesn't seem to work as in some cases, Page A will be called sometimes Page B will be called when http://<domain>/Hello is called.
    Is there something I've missed out that anyone can kindly advise on? THank you.

    Generally we should not create duplicate quick links, but we can always do that.
    In that case, the first one will display in the tree structure.
    Can you check the sort priority again
    Raghu

  • Index-link bonds

    Hi, everbody!
    I need explaining how system calculate coupons with index.
    Example:
    We have index-linked bonds. Time of paiying coupons - 2 time in year - 29/04/ and 29/10. Nominal value - 15 USD, percentage rate - 9%.. Issue start - 29/04/2006, end of tem - 29/06/2014, first calculate date of coupons - 29/10/2008.
    We buy  36900 units of bonds 20/07/2009 with price 15,581895 usd.
    iNDEX VALUE AT 20/07/2009 - 0,888918. Payment amount of purchase - 511 102,90, Accrued interest - 9 963,33.
    Next accrue interest will 30/11/2009,  iNDEX VALUE AT that date - 0,876045, index clean value at 29/10/2009 - 25 322,63. So how system has to accrue interest with  index value to 30/11/2009?
    Regards, Gulzhan.

    Hi Gulzhan
    I saw your question on the form regarding index link bonds, did you manage to it right. If so kindly takes me through how to configure these and get the pricing right.
    Victor

  • Index Linked Bonds in SAP Treasury

    Hello SAP Gurus,
    Could you please help me to sort out follwoing queries realted to SAP Treasury Index Linked Bonds?
    1. How is the Index Linked Bonds work in SAP?
    2. How They Calculate the Values?
    3. Can we enter the Indexation Start and End Date?
    4. We want the Indaxtion based on the movement between the two index values
    Thanks in advance for your help.
    Thanks and Regards,
    Amit

    hi exactly what you want,
    where you want all these things

  • Index links  do not import into Acrobat 5.0

    I created a long indexed document in InDesign CS2, the entries appear in the index, and there is a ^ where each entry is marked as being in the index. I generated the index with the book (405 pages).
    When I export the document to .pdf using Acrobat 5.0 the Table of Contents works fine and when selected takes me to the correct area. When I select an entry from the index, I am taken to the 1st page of the Main Table of Contents (the first page of the document).
    I took the document into my personal copy of InDesign CS3 and import it into Acrobat 8.0. I experience the same problem but the TOC also does not link.
    Any Suggestions.
    Russell

    Well, since you are the user in this user to user forum who has a solution... how about posting that step by step solution in case someone else ever does a search?

  • How do I  resolve, prevent and remove duplicate index key words?

    The problem I'd like to resolve in in my index is: I have
    mutiple 'Getting Started' topics in each module (for example). When
    I open the Index in the application and click 'Getting Started' I
    am presented with 41 selections. Could be more, I stopped counting
    after 41 and refused to scroll. I would have to click on each one
    to find the "Getting Started" topic I was looking for. I know as an
    end user that I would come un-glued if I had to click and close 41+
    topics in my quest for help . Help should be ... well, helpful. If
    I need help the last thing I'm looking for is annoyance at a tool
    that I hoped would be my salvation. As I'm writing this I'm
    beginning to wonder if what I want can be accomplished. What can I
    do to indicate to the user what specific topic any given "Getting
    Started' refers to so they don't find themselves instead in a click
    and close coma? It seems to me that I have a bloated, out of
    control index. Any suggestions on how I might put my index on a
    diet and provide optimal index effectiveness??

    You could try renaming the topics to something like "Module A
    Getting Started", "Module B Getting Started", etc. but I'd also
    suggest that having 40+ topics against a keyword is not the right
    way to do things. I personally wouldn't have 40+ Getting Started
    topics. By all means have an Overview topic at the start of each
    main area of your help and link to other parts of the same book
    (e.g. to the major tasks).
    A better way however may be to have a single Getting Started
    book at (or near to) the top of your TOC which tells the users what
    they can do. Then link to the topics elsewhere in the TOC that
    provide the detail.
    As far as indexing is concerned, we have an unwritten rule
    that you have no more than two index levels and no more than 5-6
    topics per keyword. If you think this is impossible maybe you need
    to look at how you are indexing.

  • New Aperture Web Themes with 'Parent INDEX' link

    Hi all,
    I've hacked up the Stock themes to create a Stock Grey and also add a link back to the parent directory of a web gallery in order to make it easier to put together a full site with Aperture. No, it doesn't help create the initial top level index of all sub-galleries, but it does make it easier for viewers to navigate back out of one album and into another.
    I've made an installer for it that searches for Aperture.app no matter where it was installed, so it can take a minute or so to complete, but I've put it up on my site:
    http://minimal.cx/2006/08/15/four-free-aperture-themes/
    and have a sample set of images for viewing at:
    http://gallery.minimal.cx/
    The top level page was done by hand, everything else simply came out of Aperture and was dropped directly onto the web space with no other changes.
    Hope that's of some use to other people.
    TTFN,
    ian.
      Mac OS X (10.4.7)  

    Your comment about searching for Aperture.app reminded me that I'd been meaning to look into the proper way to do this.
    There doesn't seem to be a convenient command-line tool to do it (you can use lsregister and dump the LaunchServices database, but that's ugly).
    But here's a Perl one-liner, that would be callable from a preflight script:
    $ perl -MMac::Processes -e 'print LSFindApplicationForInfo(undef, "com.apple.Aperture"),"\n" '
    which on my system returns:
    /Applications/Aperture.app
    the Mac::Processes module is standard with Tiger (comes in Essentials.pkg)

  • Headings follow relevant chapter names? Index link to pdf search engine?

    I´m new to Pages 09 and haven´t found how to have the page heading contain only the relevant chapter name. I´ve got 8 chapters and want the relevant name at the top of each page, as one usually finds. How is it done?
    Can one automatically link the alphabetical word index to the internal pdf search engine when exported as pdf file or does one have to do this by hand?
    Thanks for any help in these matters
    Neil

    Cut your document in sections.
    Insert your chapters in different sections.
    Doing that you will be able to use the chapter name in the corresponding header.
    In page 58 of the User Guide (English version) we may read:
    *Changing Headers and Footers in a Section*
    You can change headers and footers to be unique to a section. You can also change headers and footers within a section.
    To change headers and footers:
    1 Place the insertion point in the section.
    2 Click Inspector in the toolbar, click the Layout button, and then click Section.
    3 Deselect “Use previous headers and footers.”
    4 Type the new header or footer in the header or footer area of your document.
    Yvan KOENIG (from FRANCE dimanche 8 mars 2009 18:20:09)

  • Crystal report returning duplicate rows - Linking issue?

    Hello,
    I know this is a commonly brought up issue - that duplicate rows are returned in Crystal reports for various reasons.  In a lot of instances, where it's only a single row of data per case that I'm looking for, I'll move them to their own group.  But that solution doesn't work here.
    The tables and links used in the simple report I have are illustrated in the attached "Report Database Expert Links.jpg" file, and the conditions and report fields required as as follows:
    Select Expert conditions:
    {CLAIM_PERIODS.CPE_START_DATE} < Today and
    {CLAIM_PERIODS.CPE_END_DATE} > Today and
    {CLAIM_ROLES.CRO_START_DATE} < Today and
    IsNull({CLAIM_ROLES.CRO_END_DATE})
    Report Design fields (in Details section):
    CLAIMS.CLA_REFNO, CLAIM_ROLES.CRT_CODE, PARTIES.PAR_PER_FORENAME, PARTIES.PAR_PER_SURNAME
    So what this report is to do:
    It looks for benefit claims which are live (have a CLAIM_PERIODS.CPE_START_DATE prior to today, and CLAIM_PERIODS.CPE_END_DATE after today), and for these claims gives a breakdown of all people in the household (everyone associated with that claim, where CLAIM_ROLES.START DATE is prior to today, and end date is null - to pick out those who are currently active in the household).
    This works fine otherwise, but the issue is that each live claim can have either one or two rows present in CLAIM_PARTS and CLAIM_PERIODS (so could satisfy my first two conditions twice).  For claims with only a single claim part active, I get each household member listed once.  But when they have two claim parts active, I get eveyone listed twice.
    Is there a way - either in how I'm linking the tables up, or how I'm arranging the report design, that I can have every household member only appear once no matter how many related rows there are in CLAIM_PARTS and CLAIM_PERIODS?
    Many thanks in advance,
    Sami
    P.S. I don't seem to be allowed to attache image files to my post, but have embedded the content instead:

    Thank you very much Don - this is a feature I wasn't aware of previously, and is a big step in the right direction for me.  Really useful.
    In the report mentioned, this sort of works.  It works very well on individual fields - so I could just "Suppress If Duplicated" on the forename and then remove duplicates on that column when exported to Excel (or simply bring in a unique field such as the party reference number and do likewise).
    However, is there a way to get Crystal to do this for me?  So to suppress the whole line based on whether or not I'm suppressing this one field?
    Just applying "Suppress If Duplicated" to all fields at once seems to have slightly unpredictable behaviour - not suppressing every field in the row.  So I experimented a bit with using the "Suppress" tick to do this, then applying a formula to it.  But the closest I can get for the formula is something like:
    -     {PARTIES.PAR_PER_FORENAME} = previous({PARTIES.PAR_PER_FORENAME}) and
    {PARTIES.PAR_PER_SURNAME} = previous({PARTIES.PAR_PER_SURNAME}) and
    Which will only compare the current row with previous.  Is there a way to do the same comparison but with all previous rows?

  • Index link to bookmark

    I'm trying to link an index entry to a bookmark which I have
    placed in the middle of a topic. When a user clicks the index
    entry, I would like the text that starts at the bookmark to display
    at the top of the page or at least be highlighted. I don't seem to
    be able to do this.

    Welcome to our community, ndldn
    It won't be possible to highlight. But to coax it to the top
    of the page, you need to place the cursor at the bottom of the page
    (Ctrl+End does this nicely) and press Enter lots of times to add
    "White Space" at the bottom of the topic.
    Note that if your user decides to print said topic, the
    additional white space will likely cause an extra sheet or maybe
    two of paper to be "printed". Not really much of an easy way around
    that. It will also possibly cause an unwanted gap if you create
    printed docs. But for those, you might apply a conditional build
    tag to the white space so that it's removed when you generate
    printed docs.
    Cheers... Rick

  • Providing Site Index Link

    Hi,
    Can any one help me, how to provide link for Site Index. For example a Link for Site Index as shown in SDN's Tool Area
    Regards,
    Ravi.

    Find out the URL for your Site Index iView. If its part of any role then you can open the role -> open the iView from the Role - copy the pcd location property and change the pcd: to ROLES:// to get the complete URL. Or you can just preview the iView to get the complete URL.
    If you have the link as "ROLES://.../iView" then you can put a EPCM.doNavigate(your url) inside the masthead par file. Inside the masthead par file open the HeaderView.jsp and put this link there beside the Help / Log Off links. If you open the JSP you can find these links existing there... just create another table cell and put your own link. It should work.
    Regards,
    Shubhadip

  • Duplicate or link

    When I drag music from various folders on my hard drive to iTunes, are the files duplicates of the original or just links?
    christine

    If you have "Copy Files to iTunes Music folder when adding to library" checked in iTunes Edit> Preferences>Advanced> General the it will make a copy of your song so that there will be one in the iTunes folder and an original elsewhere on the hard drive. If you have this option unchecked then it will link to the song in it's original folder.

Maybe you are looking for