Problem with hide TOC, Index ans Search

Hello,
I want to generate a chm where TOC , Index ans Search are
hide when I open my chm.
I don't find a solution to do this.
I try to find in creating a new "Window", but I doesn't
operate.
If someone have a solution, thanks to tell me,
because I'm going to loose lots of time for that...

Hi vlavergne,
In theory you should be able to hide the TOC, Index and
Search simply by selecting
Hide Nav Pane on Startup in the Window properties. However,
after a bit of experimentation it seems that you also have to
deselect the
Remember Window Size and Position option.
Hope this helps
Anne

Similar Messages

  • Problem with my iTunes store, cannot search, stays in one application that I already purchased. Please help!

    Problem with my iTunes store, cannot search, stays in one application that I already purchased. Please help!

    Go to Settings, Store, Apple ID, Sign out and then sign back in again and have another go.
    Also, try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is app and data safe!

  • RoboHelp 9 - problem with merged TOC and index

    Using RoboHelp v9.0.0.228 I have a master project which contains several merged TOCs and indexes for other CHMs. This has worked successfully for years, but has now stopped working in our translated CHMs. I have checked all the relevant settings and they appear to be correct. The English version still works correctly. Can you help please? Many thanks.

    OK, so my post was just a summary really!
    I have a main project with its own TOC, index and topics. I then have several other projects with their own TOCs, indexes and topics, and these are merged into the master TOC. In all these projects, we use the indexes to contain function ids for our software, so that when you press F1 in a software function, it invokes the correct Help topic in the CHM. The software is coded so that it goes to the main project first, and then looks in the merged index to find the link to the Help topic.
    In the individual sub projects, the TOCs and indexes are present and work correctly. Also, in the master project, the TOC and index works correctly in the original English version. However, even though the TOCs, indexes and topics are all present and correct in the translated versions (Russian, for example) the index in the master project does not contain the entries for the sub projects. The TOCs for the sub projects do, however, work correctly.

  • Problem with Pages/SpotLight index

    Hi
    I posted a question regarding a problem I am having using "Open existing files" in Pages. The thread is called "Can't find pages files".
    After some responses I was asked to use Onyx to rebuild the spotlight index. However the problem was fixed on the first search but soon returned back. One of the posters said that it seems that something on my system is clobbering the Spotlight index. He says I may require a clean system install to get rid of the issue. However before doing so, he suggested I ask in the forum dedicated to _Mac OS X v10.6 Snow Leopard _
    Can anyone help?
    Thanks,
    Raffaele

    If you want to report this issue to Apple's engineering, send a bug report or an enhancement request via its Bug Reporter system. To do this, join the Mac Developer Program—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report or enhancement request. The nice thing with this procedure over submitting feedback is that you get a response and a follow-up number; thus, starting a dialog with engineering.

  • TileList problem with effects - 'RangeError: Index '8′ specified is out of bounds.' error.

    Flex 3.0 beta TileList problem with effects
    I have a problem with deleting item from a Flex 3.0 beta
    TileList component. While a delete item effect is playing and I
    delete another item (while the first effect is still playing) , I
    get an ‘RangeError: Index ‘8′ specified is out of
    bounds.’ error. How do you delay processing until the effects
    are done? or is there another solution? do I use a callLater()? or
    remove the eventListener and wait until the effect finishes?
    To see the problem, hit the down error twice quickly.
    To see the application ->
    http://designwithflex.com/pics/fasterror.swf
    Here is Thumbnail.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100" height="100">
    <mx:Label text="{data.name}" />
    <mx:Label text="{data.age}" />
    </mx:VBox>
    and here is main.mxml:

    luvgelato,
    Can you please file a bug at
    http://bugs.adobe.com/flex/
    and attach all your MXML code.
    Thanks,
    Peter

  • Problem with bitmap partitioned index

    My order table (3.6 M rows) has got 4 partitions (one per year). I've defined 24 LOCAL BITMAP INDEXES on the data (DSS environment); every index is built on one column.
    The cardinality of these columns is quite various (from 10% to 80%) - I know in some case the use of bitmap index is not OK -.
    The table is manipulated in this way:
    - Nightly it has about 5K new rows inserted.
    - All of this rows have update after insertion (only some of this update are referred to indexed column).
    - Early in the morning the partition table referred to actual data, is analyzed with COMPUTE STATISTICS option.
    - During the day the data are queried thousand times.
    The problem is:
    1. Before table/index partitioning all the indexes of the table were BITMAP too, and their size were acceptable; these size did not grow up to much during the time. We use to rebuild index once at 2-3 months.
    2. After table/index partitioning some of the bitmap indexes related to the partition that contain actual data, get poor in few days. Their size grow up very quickly (about 16mb at day) and they can allocate 100 times more space than before partitioning. So, I must rebuild these indexes / partitions once at 2-3 days. I have checked the distinct values of poor indexes column, and there is not correlation between cardinality and growth (I mean, this problem happens on index with low cardinality as well as high cardinality).
    3. I have the same order table in another schema with the same indexes and similar number of rows (1.7 M). Any of these indexes have strange growth. (I.E.: size of index on AGENT column is normally 2Mb; the poor index is about 200Mb after 4 work days).
    We work with 8.1.7.2 on Windows 2000.
    Does anyone have any idea about my problem?
    Thanks in advance L.

    Nirpol wrote:
    I create 2 different bitmap join index:
    CREATE BITMAP INDEX lsa.AAB_V_ARTICOLO_MARCA_IDX ON LSA.AAB_VENDUTO(MARCA)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_ARTICOLO aa WHERE vv.articolo_id=aa.articolo_id;
    CREATE BITMAP INDEX lsa.AAB_V_CLIENTE_TIT_STUDIO_IDX ON LSA.AAB_VENDUTO(TITOLO_STUDIO)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_CLIENTE cc WHERE vv.cliente_id=cc.cliente_id;
    What happens if you just create two plain bitmap indexes without the join?
    CREATE BITMAP INDEX lsa.AAB_V_ARTICOLO_MARCA_IDX ON LSA.AAB_VENDUTO(MARCA);
    CREATE BITMAP INDEX lsa.AAB_V_CLIENTE_TIT_STUDIO_IDX ON LSA.AAB_VENDUTO(TITOLO_STUDIO) ;You can also go with normal indexes on the FK rows (cliente_id) and the optimizer can do a bitmap conversion from normal index to bitmap index if needed. Are the column values evenly distributed? If not you might need to go for some column histogram. but I don't have the impression that this is really useful in your case.

  • Problem with hidding Search fields used to pass IDs to the table

    Hello,
    I have a problem which may be trivial but I cannot find the solution for quite a long time.
    Please help
    I have created a standard Search Panel with CustomSimpleSearch
    I have LOVs to search for manager and organizations. You simply choose the a manager of an organization from the list.
    Then I would like to put the values back on the original form
    in two fields (in case of manager)
    Manager name - visible for users so they know what they selected
    Manager ID - to use to search the records in the table I have
    SO I have defined mappings and the values are passed and then
    the records are found based on Manager ID. The only problem is
    I don;t want the ID to be displayed on the screen. I would like to hide this
    messageTextInput
    but I cannot
    I tried setting the following attributes:
    Rendered = false -> searching does not work
    Secret = true -> searching does not work
    Length = 0 - > lenght does not change
    How to hide this field so that the ID is passed to it transparently and then the value is used for searching ?
    Thank You in advance for Your help
    This forum is great
    Michael

    Use formValue bean instead of messageTextInput. It is used for the very same purpose which you are looking for.
    --Shiv                                                                                                                                                                                                                                                   

  • Problem with HIDE statement

    Hi All,
    i have been working with an interactive report. while coding for the event AT LINE SELECTION i have used HIDE statement to capture the contents of the row on which click either on basic or secondary list. but the hide statment is not capturing the content of the record which i click. i have debugged the program, when the cursor comes to HIDE statement it is passing into some standard programs and still it is not holding the contents of the record on which i click.
    below is the coding, can anyone let me know where the coding went wrong.
    TABLES: VBAK,                       " Sales Document: Header Data
            VBAP,                       " Sales Document: Item Data
            VBKD,                       " Sales Document: Business Data
            VBEP.                       " Sales Document: Schedule Line Data
    TYPES BEGIN OF TY_VBAK.
            INCLUDE STRUCTURE VBAK.
    TYPES END OF TY_VBAK.
    TYPES BEGIN OF TY_VBAP.
            INCLUDE STRUCTURE VBAP.
    TYPES END OF TY_VBAP.
    TYPES BEGIN OF TY_VBKD.
            INCLUDE STRUCTURE VBKD.
    TYPES END OF TY_VBKD.
    TYPES BEGIN OF TY_VBEP.
            INCLUDE STRUCTURE VBEP.
    TYPES END OF TY_VBEP.
    DATA: IT_VBAK TYPE STANDARD TABLE OF TY_VBAK,
          WA_VBAK TYPE TY_VBAK,
          IT_VBAP TYPE STANDARD TABLE OF TY_VBAP,
          WA_VBAP TYPE TY_VBAP,
          IT_VBKD TYPE STANDARD TABLE OF TY_VBKD,
          WA_VBKD TYPE TY_VBKD,
          IT_VBEP TYPE STANDARD TABLE OF TY_VBEP,
          WA_VBEP TYPE TY_VBEP.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
      SELECT-OPTIONS: S_VKORG FOR VBAK-VKORG,             " SALES ORGANIZATION
                      S_VTWEG FOR VBAK-VTWEG,             " DISTRIBUTION CHANNEL
                      S_SPART FOR VBAK-SPART,             " DIVISION
                      S_ERDAT FOR VBAK-ERDAT.             " OBJECT CREATED DATE
      PARAMETERS: P_ERNAM TYPE VBAK-ERNAM.                " OBJECT CREATED PERSON
    SELECTION-SCREEN END OF BLOCK B1.
    TOP-OF-PAGE.
      WRITE:/ 'THIS IS SALES DOCUMENT HEADER DATA'.
    TOP-OF-PAGE DURING LINE-SELECTION.
    IF SY-LSIND EQ 1.
      WRITE:/ 'THIS IS SALES DOCUMENT ITEM DETAILS'.
    ELSEIF SY-LSIND EQ 2.
      WRITE:/ 'THIS IS SALES DOCUMENT BUSINESS DATA'.
    ELSE.
      WRITE:/ 'THIS IS SALES DOCUMENT SCHEDULING LINE DATA'.
    ENDIF.
    START-OF-SELECTION.
    SELECT *
            FROM VBAK
            INTO TABLE IT_VBAK
            WHERE VKORG IN S_VKORG
            AND   VTWEG IN S_VTWEG
            AND   SPART IN S_SPART
            AND   ERDAT IN S_ERDAT
            AND   ERNAM EQ P_ERNAM.
      LOOP AT IT_VBAK INTO WA_VBAK.
    WRITE:/ WA_VBAK-VBELN HOTSPOT, WA_VBAK-ERNAM, WA_VBAK-VBTYP, WA_VBAK-AUART,
                WA_VBAK-SUBMI, WA_VBAK-VKORG, WA_VBAK-VTWEG, WA_VBAK-VKGRP,
                WA_VBAK-VKBUR, WA_VBAK-KNUMV, WA_VBAK-KTEXT, WA_VBAK-BSTNK,
                WA_VBAK-BSARK, WA_VBAK-BSTZD, WA_VBAK-KUNNR, WA_VBAK-KOSTL.
      HIDE: WA_VBAK-VBELN.
      ENDLOOP.
    AT LINE-SELECTION.
    IF SY-LSIND EQ 1.
        IF NOT IT_VBAK IS INITIAL.
        SELECT *
                FROM VBAP
                INTO TABLE IT_VBAP
                WHERE VBELN EQ WA_VBAK-VBELN.
      ENDIF.
      LOOP AT IT_VBAP INTO WA_VBAP.
    WRITE:/ WA_VBAP-VBELN HOTSPOT, WA_VBAP-POSNR, WA_VBAP-MATNR, WA_VBAP-MATWA,
                WA_VBAP-PMATN, WA_VBAP-CHARG, WA_VBAP-MATKL, WA_VBAP-ARKTX,
                WA_VBAP-PRODH, WA_VBAP-ZWERT, WA_VBAP-ZMENG, WA_VBAP-MEINS,
                WA_VBAP-ABDAT, WA_VBAP-ABSFZ, WA_VBAP-KDMAT, WA_VBAP-KBVER.
        HIDE: WA_VBAP-VBELN.
      ENDLOOP.
    ENDIF.
    IF SY-LSIND EQ 2.
      IF NOT IT_VBAP IS INITIAL.
        SELECT *
                FROM VBKD
                INTO TABLE IT_VBKD
                WHERE VBELN EQ WA_VBAP-VBELN.
      ENDIF.
      LOOP AT IT_VBKD INTO WA_VBKD.
    WRITE:/ WA_VBKD-VBELN HOTSPOT, WA_VBKD-POSNR, WA_VBKD-KONDA, WA_VBKD-KDGRP,
                  WA_VBKD-BZIRK, WA_VBKD-PLTYP, WA_VBKD-INCO2, WA_VBKD-KURRF,
                  WA_VBKD-VALDT, WA_VBKD-PRSDT, WA_VBKD-FKDAT, WA_VBKD-STCUR,
                  WA_VBKD-FPLNR, WA_VBKD-BSTDK, WA_VBKD-AKWAE, WA_VBKD-AKPRZ.
        HIDE: WA_VBKD-VBELN.
      ENDLOOP.
    ENDIF.
    IF SY-LSIND EQ 3.
      IF NOT IT_VBKD IS INITIAL.
        SELECT *
                FROM VBEP
                INTO TABLE IT_VBEP
                WHERE VBELN EQ WA_VBKD-VBELN.
      ENDIF.
      LOOP AT IT_VBEP INTO WA_VBEP.
    WRITE:/ WA_VBEP-VBELN HOTSPOT, WA_VBEP-POSNR, WA_VBEP-ETENR, WA_VBEP-ETTYP,
                  WA_VBEP-EDATU, WA_VBEP-EZEIT, WA_VBEP-WMENG, WA_VBEP-BMENG,
                  WA_VBEP-LMENG, WA_VBEP-MEINS, WA_VBEP-BDDAT, WA_VBEP-BDART,
                  WA_VBEP-VBELE, WA_VBEP-POSNE, WA_VBEP-ETENE, WA_VBEP-BSART.
      ENDLOOP.
    ENDIF.
    in the output iam getting the basic list and the subsequent secondary lists but in the secondary lists iam having the data of the last record of the basic list.
    let me know why the HIDE statement is not getting triggered.
    Thanks,
    BJR.

    Hi,
    Hide statement stores according to sy-linno.
    The Problem is with the empty fields in your Work area. When they are empty it goes for next line and 'write:/' statement will not trigger next line . so, the next work area prints on the same sy-lino which is already reserved for previous one .
    You can read Documentation in that
    HIDE <f>.
    This statement places the contents of the variable <f>
    for the current output line (system field SY-LINNO) into the HIDE area.
    The variable <f> must not necessarily appear on the current line.
    To make your program more readable,
    always place the HIDE statement directly after the output statement
    for the variable <f> or after the last output statement for the current line.
    You can try this piece of code for your understanding,
    DATA:
      w_hide LIKE sy-index.
      DO 20 TIMES.
       w_hide = sy-index.
        WRITE w_hide.
        NEW-LINE.
        HIDE w_hide.
      ENDDO.
    AT LINE-SELECTION.
      IF sy-lsind = 1.
        WRITE w_hide.
      ENDIF.
    Hope you understand.
    Regards,
    Raghava Channooru

  • Problem with a stored procedure to search in a table

    h5.
    Hi,
    h5.
    As many people on the forum, I'm new on PL/SQL programming.
    h5.
    I'm trying to program a stored procedure that allow to search on my table fields with different parameters.
    h5.
    All this parameters doesn't need to be set, at least one.
    h5.
    I'm looking for the solution from 2 weeks ago.
    h5.
    I have looked everywhere
    h5.
    Could someone help me, please??
    h5.
    Here is my code:
    * HERE WE CREATE PACKAGE FOR THE CURSOR
    create or replace
    PACKAGE HOTEL_DEST_PKG
    IS
    /* Define the REF CURSOR type. */
    TYPE HOTEL_DEST_TYPE IS REF CURSOR;
    END HOTEL_DEST_PKG;
    * HERE WE CREATE OUR STORE PROCEDURE TO SEARCH
    create or replace
    PROCEDURE Search_Hotel (
    IdDocument IN number,
    MyFilter IN VARCHAR2,
    IdCountry IN number,
    DepartureDateFirst IN DATE,
    DepartureDateSecond IN DATE,
    HD_Cursor OUT HOTEL_DEST_PKG.HOTEL_DEST_TYPE)
    IS
    SQL_REQ VARCHAR2(5000);
    BEGIN
    /* all columns were entered */
    IF ((IdDocument > 0) OR
    ((MyFilter IS NOT NULL) AND (length(MyFilter) > 0)) OR
    (IdCountry > 0) OR
    (DepartureDateFirst IS NOT NULL) OR
    (DepartureDateSecond IS NOT NULL))
    THEN
    SQL_REQ := 'SELECT HOTEL_DESTINATION.*
    FROM HOTEL_DESTINATION
    WHERE 1=1';
    /* Search on the hotel id*/
    IF IdDocument > 0 THEN
    SQL_REQ := SQL_REQ || ' AND HOTEL_DESTINATION.HD_ID = :IdDocument';
    ELSE
    SQL_REQ := SQL_REQ || ' AND :IdDocument IS NULL';
    END IF;
         /*Search on different indexed fields*/
    IF MyFilter IS NOT NULL AND LENGTH(MyFilter)>0 THEN
    SQL_REQ := SQL_REQ || ' AND CONTAINS(HOTEL_DESTINATION.HD_FILTER, :MyFilter)';
    ELSE
    SQL_REQ := SQL_REQ || ' AND :MyFilter IS NULL';
    END IF;
    /* Search on the hotel country id*/
    IF IdCountry > 0 THEN
    SQL_REQ := SQL_REQ || ' AND HOTEL_DESTINATION.HD_CN_ID = :IdCountry';
    ELSE
    SQL_REQ := SQL_REQ || ' AND :IdCountry IS NULL';
    END IF;
    /* Search on the dates*/
    IF DepartureDateFirst IS NOT NULL THEN
    SQL_REQ := SQL_REQ || ' AND HOTEL_DESTINATION.HD_DEPARTURE_DATE >= :DepartureDateFirst';
    ELSE
    SQL_REQ := SQL_REQ || ' AND :DepartureDateFirst IS NULL' ;
    END IF;
    IF DepartureDateSecond IS NOT NULL THEN
    SQL_REQ := SQL_REQ || ' AND HOTEL_DESTINATION.HD_DEPARTURE_DATE <= :DepartureDateSecond';
    ELSE
    SQL_REQ := SQL_REQ || ' AND :DepartureDateSecond IS NULL';
    END IF;
    OPEN HD_CURSOR FOR SQL_REQ USING IdDocument,
    MyFilter,
    IdCountry,
    DepartureDateFirst,
    DepartureDateSecond;
    END IF;
    END;
    * HERE WE CALL AND EXECUTE OUR STORE PROCEDURE TO SEARCH
    * ON WORD
    set serveroutput on
    DECLARE
         IDDOCUMENT NUMBER;
         MYFILTER VARCHAR2(200);
         IDCOUNTRY NUMBER;
         DEPARTUREDATEFIRST IN DATE;
         DEPARTUREDATESECOND IN DATE;
         HD_CURSOR OUT HOTEL_DEST_PKG.HOTEL_DEST_TYPE);
    BEGIN
    IDDOCUMENT := 0;
    MYFILTER := 'test';
    IDCOUNTRY := 0;
    DEPARTUREDATEFIRST := NULL;
    DEPARTUREDATESECOND := NULL;
    SEARCH_HOTEL(
    IDDOCUMENT => IDDOCUMENT,
    MYFILTER => MYFILTER,
    IDCOUNTRY => IDCOUNTRY,
    DEPARTUREDATEFIRST => DEPARTUREDATEFIRST,
    DEPARTUREDATESECOND => DEPARTUREDATESECOND,
    HD_Cursor => HD_Cursor
    -- Modify the code to output the variable
    --DBMS_OUTPUT.PUT_LINE('HD_Cursor = ' || HD_Cursor);
    END;

    You need to grant right on the table to the owner of the stored procedure directly (not via Role).
    When there are only rights via role everything is fine in sql, but it will not work in stored procedures, functions or packages.
    So as Table-Owner do:
    grant select on <table> to <procedure, package or function-owner>;Edited by: hm on 22.10.2010 08:49

  • Problem with replacement of index series, change of base year

    Hi Experts!
    I try to explain my problem in Real Estate.
    In Italy from January 2011 the baseline (base year) national index of consumer prices for the entire community (NIC) and national consumer price index for families of workers and employees (CPI) moved from 1995 to 2010.
    So, I have to change the base year of index in Rent Adjustment.
    I think I have changed the base year from 1995 to 2010.
    (Path: Real Estate>Rent Adjustment>Index>Replacement of index series, change of base year)
    In table TIVAJINDXCON (previous was empty) now there is this record:
    SERIESTO: 08000
    BASEYEARTO: 1995
    SERIESFROM: 08000
    BASEYEARFROM: 2010
    CHAINDATE: 31.12.2010
    INDEXBASETO: 1,373
    But with transaction FOA0 it seems that the rent adjustment still consider 1995 as base year instead of 2010.
    I have to set the SAP application as to use 2010 as new base year instead of 1995.
    Would you please forward me with any support.
    Best regards,
    Thank you.
    Tania

    My question has been answered by SAP.

  • Problem with "Hide" command in advanced actions

    Hi:  I am having an issue with the "Hide" function in advanced actions.  Here's the scenario:  I have a smart shape covering an object on the master slide.  When the user clicks on a click box, I want the smart shape to go away (hide) so that the object on the master slide appears.  I set up the click box and then added the advanced action as follows:
    Conditional Action:
    If
    1 is equal to 1
    Actions:
    Assign v-Tanker with 1
    Play Audio Slide 12Tanker.mp3
    Hide HazWasteDefHider
    No Else action because 1 is always equal to 1.
    The problem is this...When I click the Click box in preview, the first two actions happen, but the last one (Hide HazWasteDefHider) does not.
    What am I doing wrong?  Any advice would be appreciated.

    I have to disagree with my esteemed colleagues on this one.  I NEVER use Standard Actions (SA) unless I know for certain that it will be a very simple action I'm happy to delete and rebuild if it turns out that I ended up needing a Conditional Action (CA) instead.
    Perhaps it's just the types of projects I work on, or perhaps it's a flaw in my character, but in my experience almost every time I've used a SA in a project I've ended up needing a CA later in the development process and wished I'd done that in the first place.  So I've fallen into the habit of ONLY ever using CAs as insurance against wasting time.  I've not found CAAs run any slower than SAs, but they are FAR more versatile.  SA's hem you in too much.
    You can easily make a CA work as a SA by fudging the condition with 1==1 as mentioned above. And you can mix CAs with SAs as consecutive statements in the same CA. But no matter what you do, Captivate does not allow you to change a SA into a CA.  Once created, the die is set in stone for SAs.  It's the fact that you cannot convert one into the other that makes me go straight to the CA option in the drop-down each time.  I just wish I had the option to make CAs the default instead of always needing to change it from SA.
    I would personally prefer that Captivate's developers made the Condition section of a CA optional via a check box or similar so that you could just switch off the condition if you didn't need it.

  • Problems with Safari 7.1.2 search engine and home page preferences

    I'm using Mavericks OSX.9.5 on Safari 7.1.2. I set my Safari preferences to use Google as the default search engine, and apple.com as my homepage. However, Safari keeps opening the search engine to yahoo.com, and my home page as only-search.com. I have no idea what is going on. I feel like my computer as been hijacked! I've quit and restarted Safari, only to find that the preferences is showing Google correctly as my search engine (but still goes to yahoo), and my homepage reverts to only-search com. No matter how many times I change it in Safari preferences I can't get it to work correctly. I've reset Safari completely, with the same results after the reset. I'd appreciate any suggestions and help.

    Adware is installed without your knowledge. You have to remove it.
       Use  free  AdwareMedic by clicking “Download ” from here
       http://www.adwaremedic.com/index.php
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once done, quit AdwareMedic by clicking AdwareMedic in the menu bar and selecting
       “Quit AdwareMedic”.
       Safari > Preferences > Extensions
       Turn those off and relaunch Safari again.
       Turn those on one by one and test.
                   or
       Remove the adware  manually  by following the “HowTo” from Apple.
       http://support.apple.com/en-us/HT203987

  • Problem with blob column index created using Oracle Text.

    Hi,
    I'm running Oracle Database 10g 10.2.0.1.0 standard edition one, on windows server 2003 R2 x64.
    I have a table with a blob column which contains pdf document.
    Then, I create an index using the following script so that I can do fulltext search using Oracle Text.
    CREATE INDEX DMCS.T_DMCS_FILE_DF_FILE_IDX ON DMCS.T_DMCS_FILE
    (DF_FILE)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS('DATASTORE CTXSYS.DEFAULT_DATASTORE');
    However, the index is not searchable and I check the following tables created by database for my index and found them to be empty as well !!
    DR$T_DMCS_FILE_DF_FILE_IDX$I
    DR$T_DMCS_FILE_DF_FILE_IDX$K
    DR$T_DMCS_FILE_DF_FILE_IDX$N
    DR$T_DMCS_FILE_DF_FILE_IDX$R
    I wonder what's wrong with it.
    My user has been granted the ctx_app role and I have other tables that store plain text which I use Oracle Text are fine. I even output the blob column and save as pdf file and they are fine.
    However the database seems like not indexing my blob column although the index can be created without error.
    Please advise.
    Really appreciate anyone who can help.
    Thank you.

    The situation is I have already loaded a few pdf document into the table's blob column.
    After I create the Oracle text index on this blob column, I find the system generated index tables listed in my earlier posting are empty, except for the 4th table.
    Normally we'll see words inside the table where those are the words indexed by oracle text on my document.
    As a result, no matter how i search for the index using select statement with contains operator, it will not give me any result.
    I feel weird why the blob is not indexed. The content of the blob are actually valid because I tested this by export the content back to pdf and I can still view and search within the pdf.
    Regards,
    Jap.

  • 2 problem with BITMAP JOIN INDEX and access plan

    On my schema ("LSA") I have 3 tables:
    AAB_VENDUTO (~4.200.000 record)
    AAB_ARTICOLO (~8.200 record)
    AAB_CLIENTE (~15.000 record)
    AAB_ARTICOLO.MARCA has 1079 distinct values
    AAB_CLIENTE.TITOLO_STUDIO has 22 distinct values
    I create 2 different bitmap join index:
    CREATE BITMAP INDEX lsa.AAB_V_ARTICOLO_MARCA_IDX ON LSA.AAB_VENDUTO(MARCA)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_ARTICOLO aa WHERE vv.articolo_id=aa.articolo_id;
    CREATE BITMAP INDEX lsa.AAB_V_CLIENTE_TIT_STUDIO_IDX ON LSA.AAB_VENDUTO(TITOLO_STUDIO)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_CLIENTE cc WHERE vv.cliente_id=cc.cliente_id;(star_trasformation_enabled is TRUE)
    I run (on SQL Developer 1.5.5) these similar queries:
    SELECT DISTINCT VV.cliente_id FROM LSA.AAB_VENDUTO VV JOIN LSA.AAB_ARTICOLO AA on VV.articolo_id=AA.articolo_id
    WHERE (MARCA='ALGIDA' OR MARCA='SAMMONTANTA');
    SELECT DISTINCT VV.cliente_id FROM LSA.AAB_VENDUTO VV JOIN LSA.AAB_CLIENTE CC  on VV.cliente_id=CC.cliente_id  
    WHERE (titolo_studio='LAUREA BREVE' OR titolo_studio='MAGISTRALE');The first one use correctly the bitmap join index, this is the access plan:
    !http://bitlgs.altervista.org/_altervista_ht/marca.png!
    but the second query...
    !http://bitlgs.altervista.org/_altervista_ht/titolo_studio.png!
    why the second query doesn't use the bitmap index?
    problem #2:
    I create another bitmap index:
    CREATE BITMAP INDEX LSA.AAB_V_CLIENTE_SESSO_IDX ON LSA.AAB_VENDUTO(SESSO)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_CLIENTE cc WHERE vv.cliente_id=cc.cliente_id;and I run this query:
    SELECT VV.cliente_id, COUNT(*) FROM LSA.AAB_VENDUTO VV JOIN LSA.AAB_CLIENTE CC on VV.cliente_id=CC.cliente_id
    WHERE sesso='Donna' and (titolo_studio='LAUREA BREVE' or titolo_studio='MAGISTRALE') GROUP BY VV.cliente_id;this is the access plan:
    !http://bitlgs.altervista.org/_altervista_ht/terzo.png!
    In my opinion, the part that I have marked as 'A' is superfluous...
    why it make a join with AAB_CLIENTE table? Why it filter again the titolo_studio and sesso field?
    Edited by: Nirpol on 4-set-2009 13.25

    Nirpol wrote:
    I create 2 different bitmap join index:
    CREATE BITMAP INDEX lsa.AAB_V_ARTICOLO_MARCA_IDX ON LSA.AAB_VENDUTO(MARCA)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_ARTICOLO aa WHERE vv.articolo_id=aa.articolo_id;
    CREATE BITMAP INDEX lsa.AAB_V_CLIENTE_TIT_STUDIO_IDX ON LSA.AAB_VENDUTO(TITOLO_STUDIO)
    FROM LSA.AAB_VENDUTO vv, LSA.AAB_CLIENTE cc WHERE vv.cliente_id=cc.cliente_id;
    What happens if you just create two plain bitmap indexes without the join?
    CREATE BITMAP INDEX lsa.AAB_V_ARTICOLO_MARCA_IDX ON LSA.AAB_VENDUTO(MARCA);
    CREATE BITMAP INDEX lsa.AAB_V_CLIENTE_TIT_STUDIO_IDX ON LSA.AAB_VENDUTO(TITOLO_STUDIO) ;You can also go with normal indexes on the FK rows (cliente_id) and the optimizer can do a bitmap conversion from normal index to bitmap index if needed. Are the column values evenly distributed? If not you might need to go for some column histogram. but I don't have the impression that this is really useful in your case.

  • Phone heats up, hangs and restarts due to problems with the media index.

    A few times a week my phone heats up, hangs, and goes into a restart loop every few minutes, which drains the battery quickly. After some research in the diagnostics app I have come to the conclusion that it is the Media Storage app that hangs. I see spontaneous restarts in the android.process.media process every few seconds. A work-around is to go into settings, apps, all apps, media storage (Lagring av Media, in swedish, or android.process.media in android) and clear data. This immediately stops the problem, but then I usually need to reboot the phone manually once to get it to rescan all media again, since all that indexed data was lost.
    I suspect that my sd card (SanDisk microSDXC Mobile Ultra 128GB (Class 10)), with 90GB of MP3 files has somehow related to do, or at least makes matters worse, although I haven't tried to go for a week without it. The media data is usually around 50MB, when I clear it, this quickly rebuilds, until next time...
    The media storage index seems to be prone to corruption, and/or one or more processes reading or writing is corrupt.
    This is a nuisance since if I don't catch it rebooting right away I can be without battery quickly.
    So, even though the fix is easy now that I've found it, I would rather not have the problem at all. Worst of all, is when this happens when I'm in a call, or when someone tries to call or text me, but I don't notice, since the phone is hung. Also there is nothing wrong with the phone, this must be a software issue, where an error isn't handled correctly.
    In the early days of researching this problem, I did a factory reset, which actually cleared up some other issues I'd had with bluetooth connection in the factory installed software (even though it was of the same version). After this I waited to install any apps, and just went with standard vanilla android and sony apps. Still the same problem occurred after a couple of days. So it isn't related to third party software either. I see lots of posts online which detail this workaround, some as old as a few years old, but none with a real solution.
    Help please?

    I recieved a reply from Sony Xperia Care support. They suggested removing the SD-card to see if that helped. Fingers crossed I have now gone three days without acting up. The next time it does I'll try removing the sd card and see if I can break the record of seven days without a problem.
    They claim that it can be a hardware fault with the SD-card (highly unlikely in my opinion). Or a corrupt file on the card. I have only used the phone operating system and the Sony PC Companion application to transfer files. None of them have warned me about corrupt files. Also, if I can go seven days without a problem, why not eight? It's not like it acts up every time I access a particular file. It's just random, and rarely when I'm doing anything that access files on the sd-card.
    My guess is still that the media storage indexing is buggy. It's much more likely that the storage index is corrupt, than a file, for this behaviour to occur. Note that I work as a software test officer, with 25 years of IT experience, so I have a vague idea what I'm talking about.

Maybe you are looking for

  • Answer to my question: Why can I not use Premiere Elements 12 on my PC with WIndows 8.1 when the video is done with the same software on a PC with Windows 7?

    i got an answer to use archive function from Mr. Romano: I did as you said, but it did not work, I get the dummy video with no real video. I had no menu yet on the video.  What came in my mind when I read your e-mail, on one PC is WIndows 8.1 64 bit

  • Turbo 2 problem

    I recently upgraded to the turbo 2 motherboard, volcano 9 heatsink/fan and xp 1700 cpu.   Initially, everything worked fine.  I bumped the fsb to 145 and the multiplier up to 12.5 and everything worked fine.  Initially, I set the volcano 9 fan up wit

  • How do I include 'Time' in a time dimension?

    I have a requirement where I need to classify the data in the warehouse based on date and time (example : between 10 am to 11 am, 3.00 pm to 6.00 pm like that). The time dimension created by OWB contains only the date part and when I load the data I

  • User Exit or BADI

    Hi experts , I am rying to create new feald IN T-CODE MP01 feald name MPN reference number. (MFRPN) TO VIEW THIS IN TABLE TABLA :- M_MAT1MPN is there any USER EXIT or BADI ... Thanksin advance, Anthyodaya. Edited by: anthyodaya Reddy Nagaram on Jan 2

  • Camera Raw 7.1 & PSE 7

    Hello How do I install Camera Raw for my Photoshop Elements 7 please?   I try and install but when I try to open the zip file nothing happens. Feel such a dork. Anyone help please?  I have a Fuji HS30EXR. Regards Dave