Search for an exact phrase (quoted text)

Hello!

I'm trying to search for the exact phrase - "for this issue", but it seems that ITS ignore text between quotation marks and give me the result with only "issue" world.

Is this a Bug?

I don't believe it. The two 'for' this 'this' are the words of text stoplist Oracle. Those words 'noise' which are ignored by ITS during indexing.

Here is a link I found that might be useful: http://download-uk.oracle.com/docs/cd/B19306_01/text.102/b14218/cdatadic.htm#i1014730

This list can be changed for indexing of ITS.

I hope this helps.

-Stephen

Tags: Oracle

Similar Questions

  • Using CONTAINS to search for the exact phrase does not

    I'm trying to use an index of context to the exact phrase INSERT INTO text serch
    create table temp_source as select name, type, line, upper(text) as text from user_source;
    create index usr_src_text on temp_source (text) indextype is ctxsys.context;
    
    select * from temp_source where contains(text, 'INSERT INTO') > 0;
    documentation on several sites, I read all these said should work as they all do the same


    'INSERT INTO' '' INSERT INTO' ' 'INSERT & INTO' 'INSERT AND INTO' but they all return results that have just INSERT in

    Thank you
    Robert

    Is an empty word which is not indexed

    create table temp_source as select name, type, line, upper(text) as text from user_source where 1 = 2;
    insert into temp_source(text) values('insert into');
    insert into temp_source(text) values('insert');
    insert into temp_source(text) values('in');
    
    create index usr_src_text on temp_source (text) indextype is ctxsys.context;
    
    select score(100), text from temp_source where contains(text, 'into', 100) >= 0
    
    SCORE(100) TEXT
    0 insert into
    0 insert
    0 in 
    
    drop table temp_source
    

    So probably yo willl define your own list of empty words and add it to the index (CTX_DDL.create_stoplist, .add_stopword etc..)

    Compare

    create table temp_source as select name, type, line, upper(text) as text from user_source where 1 = 2;
    insert into temp_source(text) values('king kong');
    insert into temp_source(text) values('kong');
    insert into temp_source(text) values('king');
    
    create index usr_src_text on temp_source (text) indextype is ctxsys.context;
    
    select score(100), text from temp_source where contains(text, 'king kong', 100) >= 0
    
    SCORE(100) TEXT
    4 king kong
    0 kong
    0 king 
    
    drop table temp_source
    

    Published by: chris227 on 09.10.2012 04:13

    Published by: chris227 on 09.10.2012 04:16

  • How to search for words and phrases in multiple pdf documents

    Dear Sirs.

    I need to search for words AND phrases in a huge amount of PDF files (over 5000). The problem I found by using the "advanced search" is that I am able to search for single words sentences individual GOLD, but I need to combine a lot of words and multiple expressions in the same search. For example, if I need to look for instances of the word 'Florida' or 'Texas' or 'United States', I can't search for each PDF file that contains the word 'Florida' or 'Texas' or the phrase 'United States', since if I put 'word' in the search options, I will receive all the files that contain the word "Florida" or 'Texas' but also 'solidarity' or 'States' and simple words. I tried placing quotes in the words I need to research such as phrases, but it did not work. I would like to know if there is a way I can search the way I need.

    Thanks in advance.

    Alejandro Araujo.//

    Hello Alejandro,

    Please see this KB doc. helps Acrobat | The search for PDF files, it will be a great help.

    Kind regards

    Nicos

  • Search for an exact match without additional words

    Hello world

    is it possible to know if a tag contains a certain word or phrase and nothing else? For example the search for all documents with the title "foo" should match all documents containing < title > foo < /title > but not documents containing something like < title > foo bar < / title >. I tried something like "(foo ~ (% ~ foo)) IN the title ' but I get an error"extension of generic query results in terms too", so using a wildcard character is no option here. Any ideas?

    Another method would be to use extractvalue to limit lines. He would still use the text index to get the rows with foo inside, then extractvalue would limit only the rows where the word foo is in. Which would eliminate the need for a procedure or user_datastore or increasing the size of the index. Please see the demo below.

    SCOTT@orcl_11gR2> create table documents
      2    (text  varchar2 (45))
      3  /
    
    Table created.
    
    SCOTT@orcl_11gR2> insert all
      2  into documents values ('foo')
      3  into documents values ('foo bar')
      4  into documents values ('bar foo')
      5  select * from dual
      6  /
    
    3 rows created.
    
    SCOTT@orcl_11gR2> insert into documents
      2  select '' || object_name || ''
      3  from   all_objects
      4  /
    
    76012 rows created.
    
    SCOTT@orcl_11gR2> create index test_idx
      2  on documents (text)
      3  indextype is ctxsys.context
      4  parameters
      5    ('section group ctxsys.auto_section_group')
      6  /
    
    Index created.
    
    SCOTT@orcl_11gR2> set autotrace on explain
    SCOTT@orcl_11gR2> select * from documents d
      2  where  contains (text, 'foo within title') > 0
      3  and    extractvalue (xmltype (d.text), '//title') = 'foo'
      4  /
    
    TEXT
    ---------------------------------------------
    foo
    
    1 row selected.
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 3102160860
    
    -----------------------------------------------------------------------------------------
    | Id  | Operation                   | Name      | Rows  | Bytes | Cost (%CPU)| Time     |
    -----------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |           |     1 |    36 |    10   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS BY INDEX ROWID| DOCUMENTS |     1 |    36 |    10   (0)| 00:00:01 |
    |*  2 |   DOMAIN INDEX              | TEST_IDX  |       |       |     4   (0)| 00:00:01 |
    -----------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - filter(EXTRACTVALUE("XMLTYPE"."XMLTYPE"("D"."TEXT"),'//title')='foo')
       2 - access("CTXSYS"."CONTAINS"("TEXT",'foo within title')>0)
    
    Note
    -----
       - dynamic sampling used for this statement (level=2)
    
    SCOTT@orcl_11gR2>
    
  • Need help with the search for special characters in oracle text

    Hi all

    Oracle 11g sql developer 4.0 help

    I am facing this challenge where Oracle text when it comes to searching for text that contains a special character.

    What I've done so far with the help of http://www.orafaq.com/forum/t/162229/

    "CREATE TABLE"SOS" COMPANY ".

    (SELECT "COMPANY_ID" NUMBER (10,0) NOT NULL,)

    VARCHAR2 (50 BYTE) "COMPANY."

    VARCHAR2 (50 BYTE) "ADDRESS1"

    VARCHAR2 (10 BYTE) "ADDRESS2"

    VARCHAR2 (40 BYTE) 'CITY ',.

    VARCHAR2 (20 BYTE) 'STATE ', HE SAID.

    NUMBER (5.0) "ZIP".

    ) CREATION OF IMMEDIATE SEGMENT

    PCTFREE, PCTUSED, INITRANS 40 10 1 MAXTRANS 255 NOCOMPRESS SLAUGHTER

    STORAGE (INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645)

    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS USER_TABLES DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT 1)

    TABLESPACE 'USERS ';

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (1, 'LSG SOLUTIONS LLC', null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (2,' LOVE "S TRAVEL', null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (3, 'DEVON ENERGY', null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (4, 'SONIC INC', null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (5, "MSCI", null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (6, 'ERNEST AND YOUNG', null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (7, "JOHN DEER", null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (8,'Properties@Oklahoma, LLC', null, null, null, null, null);

    Insert into COMPANY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (9, 'D.D.T L.L.C.', null, null, null, null, null);

    BEGIN

    CTX_DDL. CREATE_PREFERENCE ("your_lexer", "BASIC_LEXER");

    CTX_DDL. SET_ATTRIBUTE ("your_lexer", "' SKIPJOINS,"., @-"'); -to jump. , @ - ' symbols

    END;

    /

    CREATE INDEX my_index2 ON COMPANY (COMPANY_NAME)

    INDEXTYPE IS CTXSYS. CONTEXT IN PARALLEL

    PARAMETERS ("LEXER your_lexer");

    SELECT
    company_name
    FROM company
    WHERE CATSEARCH(company.COMPANY_NAME, 'LLC','') > 0
    ORDER BY company.COMPANY_ID;
    
    

    output

    company_name

    1 LSG SOLUTIONS LLC

    2 Properties@Oklahoma, LLC

    only 2 rows back but must return 3

    It helps if you post a copy and paste of effective enforcement of the full code, including the results.  You posted an index of context with the query with catsearch, which requires a ctxcat index.  You must be a context clue that you did not post and did not add your lexer to.  The following table shows it returns all the lines of 3 as planned using either a with catsearch ctxcat index or a context index with contains, as long that you include the lexer in your create index.  You must also be sure that the index is created, or synchronized after inserting or updating data.

    Scott@ORCL >-version:

    Scott@ORCL > SELECT banner version of v$.

    BANNER

    --------------------------------------------------------------------------------

    Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production

    PL/SQL Release 11.2.0.1.0 - Production

    CORE 11.2.0.1.0 Production

    AMT for 64-bit Windows: Version 11.2.0.1.0 - Production

    NLSRTL Version 11.2.0.1.0 - Production

    5 selected lines.

    Scott@ORCL >-table and the test data:

    Scott@ORCL > CREATE TABLE 'SOCIETY '.

    2 ("COMPANY_ID" NUMBER (10,0) NULL NOT ACTIVATE,)

    3 'COMPANY_NAME' VARCHAR2 (50 BYTE),

    VARCHAR2 (50 BYTE) 4 "ADDRESS1"

    5 "ADDRESS2" VARCHAR2 (10 BYTE),

    VARCHAR2 (40 BYTE) 6 'CITY',

    7 VARCHAR2 (20 BYTE) 'STATE ', HE SAID.

    NUMBER (5.0) 8 'ZIP '.

    (9) THE CREATION OF IMMEDIATE SEGMENT

    PCTFREE 10 10 PCTUSED 40 INITRANS, MAXTRANS NOCOMPRESS SLAUGHTER 1 255

    11 STORAGE (INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645)

    12 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS USER_TABLES DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT 1)

    TABLESPACE 13 "USERS."

    Table created.

    Scott@ORCL > START

    2 insert in SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (1, 'LSG SOLUTIONS LLC', null, null, null, null, null);

    3 insert in SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (2,' LOVE "S TRAVEL', null, null, null, null, null);

    4 insert into SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (3, 'DEVON ENERGY', null, null, null, null, null);

    5 insert into SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (4, 'SONIC INC', null, null, null, null, null);

    6 insert in SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (5, "MSCI", null, null, null, null, null);

    7 insert into SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (6, 'ERNEST AND YOUNG', null, null, null, null, null);

    8 insert in SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (7, "JOHN DEER", null, null, null, null, null);

    9 insert in SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (8,'Properties@Oklahoma, LLC', null, null, null, null, null);

    10 insert into SOCIETY (COMPANY_ID, COMPANY_NAME, Address1, Address2, CITY, STATE, ZIP) values (9, 'D.D.T L.L.C.', null, null, null, null, null);

    11 END;

    12.

    PL/SQL procedure successfully completed.

    Scott@ORCL >-lexer:

    Scott@ORCL > START

    CTX_DDL 2. CREATE_PREFERENCE ("your_lexer", "BASIC_LEXER");

    CTX_DDL 3. SET_ATTRIBUTE ("your_lexer", "' SKIPJOINS,"., @-"'); -to jump. , @ - ' symbols

    4 END;

    5.

    PL/SQL procedure successfully completed.

    Scott@ORCL >-ctxcat index and using catsearch queries:

    Scott@ORCL > CREATE INDEX my_index2 ON COMPANY (COMPANY_NAME)

    2 INDEXTYPE IS CTXSYS. CTXCAT PARALLEL

    3 PARAMETERS ("LEXER your_lexer");

    The index is created.

    Scott@ORCL > SELECT

    2 company_name

    3 the COMPANY

    4. WHERE the CATSEARCH (company.COMPANY_NAME, 'LLC', ") > 0

    5 ORDER BY company.COMPANY_ID;

    COMPANY_NAME

    --------------------------------------------------

    LSG SOLUTIONS LLC

    Properties@Oklahoma, LLC

    D.D.T L.L.C.

    3 selected lines.

    Scott@ORCL >-context and using the query index contains:

    Scott@ORCL > CREATE INDEX my_index3 ON COMPANY (COMPANY_NAME)

    2 INDEXTYPE IS CTXSYS. CONTEXT IN PARALLEL

    3 PARAMETERS ("LEXER your_lexer");

    The index is created.

    Scott@ORCL > SELECT

    2 company_name

    3 the COMPANY

    4 WHERE CONTAINS (company.COMPANY_NAME, 'LLC') > 0

    5 ORDER BY company.COMPANY_ID;

    COMPANY_NAME

    --------------------------------------------------

    LSG SOLUTIONS LLC

    Properties@Oklahoma, LLC

    D.D.T L.L.C.

    3 selected lines.

  • Search for change through an external text file

    Hello people

    I'm pretty little in InDesign scripting so could you please look at this.

    How can I change any text field in the Indesign CS3 text file document.

    I find change script, but for each InDesign file specific text in the document is assigned.

    So, whenever I need to change find change the GREP property which is also repetitive work. Is it possible to find information about the changes must be extracted from the external text file.

    Many of the tanks in advance

    In the FindChangeByList script, you can customize the myFindFile (myFilePath) {...} function to search the FindChangeList text file in the location of the document rather than on the location of the script. This is an example. The question is: given a document, where you will have the corresponding FindChangeList?

    @+

    Marc

  • GREP to search for the string of quotes

    I have some strange "strings" of quotes that I need to look where there are single quotes and double row with nothing between them. So ' ' ' ' wording here. ' " "" "Here. »

    GREP lets you search a string of quotes that could consist of a number or combination of single and double quotes? The chain would consist of all open citations or nearby, but could be any combination of double and single, beginning or ending with simple or double.

    Thank you

    Ken

    SRiegel wrote:

    ['"]+

    (it's a single and double quotes inside the square brackets) If you do this with typographical quotes turned on [..]

    As for the finding , there is no need to toggle the quotes or disable. For example, a single ' will find all three variants, while ~ [will match only open loop, ~] closed curly, and ~' those just right.

    Other than that, Yes, you want to make sure that even when curly quote is active for replacements.

  • Array of string to search for the exact match words

    I need to create a search feature.

    There is a textfield where the user will enter one or more words.

    Then I need to check if are any reference in the array of names.

    namesArray ["ocean in the sky", "cean on sky", "cean is white"];
    keywordsArray ["cean", "sky"];
    matchCounter = 0;
    

    If I entered the word "cean" I don't want in my results 'ocean in heaven', 'cean's heaven

    I have the following code:

    for (var j:int = 0; j < namesArray.length; ++j)
    {
         var tempStr:String = namesArray[j];
    
         for (var k:int = 0; k < keywordsArray.length; ++k)
         {                    
              if (tempStr.indexOf(arrayKeywords[k]) != -1)
              {
                  matchCounter++;
              }
         }
    
         if(lengthKeywords == matchCounter)
                                  {
              trace("yeahhh... there's a match!!");
         }
    
         matchCounter = 0;
    }
    

    Is there a better way? How can I do this?

    There are little things, but the main problem is that 'new RegExp()' needs double escapes ("\")

    ...
                var namesArray:Array = ["ocean in the sky", "cean on sky", "cean is white"];
                var keywordsArray:Array = ["cean", "sky"];
    
                for (var j:int = 0; j < namesArray.length; j++){
                    var matchCounter:uint = 0;
                    var tempStr:String = namesArray[j];
    
                    for (var k:int = 0; k < keywordsArray.length; k++){
                        var regExp:RegExp = new RegExp("(\\s+|^)" + keywordsArray[k] + "(\\s+|$)");  
    
                        if (tempStr.search(regExp) > -1){
                            matchCounter++;
                        }
                    }
    
                    if(keywordsArray.length == matchCounter){
                        trace("\"" + namesArray[j] + "\" matched all the keywords");
                    }
                }
    ...
    

    Traces:

    'cean on Sky' set match all keywords

  • Style GREP to search for the last phrase

    I have a paragraph style with a photo at the end credit. I want to style the last words of 3-6 according to the legend, but I'm stuck on the GREP.

    The legends are like this (one to three sentences), the photo credit is not punctuated:

    In 2001, a boy, looks like a kite. The kite is red. Photo of Charlie Brown

    What I'm getting doesn't seem to work. everything that begins with (? < = whatever). + \r is a failure.

    I need to (I think) were looking for GREP style back since the end of the punctuation. Any ideas?

    If by "the last words of 3-6 according to the legend" you mean the last words of 3-6 in the legend", so maybe it works (assuming that 'word' is covered by \w+):

    (\s\w+) \s\w+$ {2.5}

    There may be two reasons why (?)<=whatever).+\r doesn't="" work:="" (1)=""><=...) must="" match="" items="" of="" equal="" length,="" and/or="" (2)="" the="" caption="" doesn't="" end="" in="" a="" paragraph="" mark="" (\r).="" $="" looks="" for="" the="" end="" of="" the="" paragraph,="" rather="" than="" the="" paragraph="">

    Peter

  • Is it possible to search for "text on a path?

    I need to be able to search for all occurrences of the text on a path. How do I do that?

    This should give you a report from where you have paths to text in your document as a whole:

    var doc = app.documents[0];
    var foundPages = [];
    var foundItems = 0;
    for(var idx=0;idx0){
          foundPages.push(doc.pages[idx].name);
          foundItems++;
        }
      }
    }
    if(foundItems>0){
      var newDoc = app.documents.add();
      var frame = newDoc.pages[0].textFrames.add();
      frame.geometricBounds = GetLiveBounds(newDoc.pages[0]);
      frame.contents = String(foundItems)+"  text paths found on pages:\r" + foundPages.join(", ");
    } else {
      alert("No Text Paths Found!");
    }
    
    function GetLiveBounds (page) {
      var bounds = page.bounds;
      return [
        page.marginPreferences.top,
        page.side == PageSideOptions.leftHand ? bounds[1] + page.marginPreferences.right : bounds[1] + page.marginPreferences.left,
        bounds[2] - page.marginPreferences.bottom,
        page.side == PageSideOptions.leftHand ? bounds[3] - page.marginPreferences.left : bounds[3] - page.marginPreferences.right
      ]
    }
    
  • Not able to search for a specific file name in Vista

    I can't search for a specific file name. When I search for a specific name, the text I type get numbers instead of letters of type I.

    Hi royfarnol,

    1. what file you want to search?
    2. What are the numbers that rises instead of text?
    3. it happens with all file search?

  • Looking for a specific phrase within a document.

    I use Windows 8, I used to be able to search for a specific phrase within a document by using the file Explorer.  This no longer works.  I'm looking for an expression as ZONE-14-D search returns anything that has all the combinations of these letters.  Is there something I'm missing in the search parameters?

    In this case I will try to rebuild the index it uses to search for.  First of all, to run this diagnostic Auto search.

    (1) open Control Panel by typing Windows + X

    (2) type "disorder" in the search box and go to the troubleshooting section that appears

    3) go to system, then click on find and fix problems with Windows Search

  • How can I search for a word in several files in a particular folder?

    Original title: search for a specific word

    Hello

    I'm working on Windows 8. How can I search for a word in several files in a particular folder?

    TKS

    Provide the location is indexed, you can search for a specific phrase or Word file Explorer by typing content: follow-up of your phrase surrounded by quotation marks. This will produce a list of files, the filtering criterion.

  • How to create a search field to search for keywords in the XML through AS3 file?

    Hello world.

    I am trying to create a field of research in AS3 to search for keywords in a dynamic text field of the same flash movie, where the text is loaded from an XML file.

    Kind regards

    Kartik.P

    Look in the String class and its methods, specifically the indexOf() (to find) and substr() (of extraction) methods.

  • Need help to search for phrases with wildcards

    My application runs through the paragraphs of the text using the user input. I need a way to search using wildcards in words OR phrases.

    Example: If my entries of the user "this % that" I would like it matches "Celaque", "thisOTHERthat", and "this other text here that.

    Any help is great, but I prefer the suggestions that would work in Java

    Search for "this % who" will find "Celaque" and "thisOTHERthat". To find "this other text here that" you must search 'this and that', but you should also use a list of stopwords that does contain no 'this' or 'it '. If you do not specify a list of empty words when creating an index, a list of default stoplist is used. The following shows how to do what you requested using ctxsys.empty_stoplist in the index settings and changing the user input, so that when the user enters "this % that" it seeks "this % one or (this and that).

    SCOTT@orcl_11gR2> create table test_tab
      2    (columnName  clob)
      3  /
    
    Table created.
    
    SCOTT@orcl_11gR2> create index test_idx
      2  on test_tab (columnName)
      3  indextype is ctxsys.context
      4  parameters
      5    ('stoplist ctxsys.empty_stoplist
      6        transactional')
      7  /
    
    Index created.
    
    SCOTT@orcl_11gR2> insert all
      2  into test_tab (columnName) values ('thisthat')
      3  into test_tab (columnName) values ('thisOTHERthat')
      4  into test_tab (columnName) values ('this other text here that')
      5  into test_tab (columnName) values ('other data')
      6  select * from dual
      7  /
    
    4 rows created.
    
    SCOTT@orcl_11gR2> commit
      2  /
    
    Commit complete.
    
    SCOTT@orcl_11gR2> variable user_input varchar2(100)
    SCOTT@orcl_11gR2> exec :user_input := 'this%that'
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> select * from test_tab
      2  where  contains
      3             (columnName,
      4              :user_input || ' or (' ||
      5              replace (:user_input, '%',' and ') || ')'
      6             ) > 0
      7  /
    
    COLUMNNAME
    --------------------------------------------------------------------------------
    thisthat
    thisOTHERthat
    this other text here that
    
    3 rows selected.
    

Maybe you are looking for

  • Foxfire version 3.6.8 verus version 12?

    I tried to solve a problem and help them answers do not seem to match what I 3.6.8 as help > about Mozilla, there is no update tab, etc.. I have a view that says that I need Foxfire 25? and I see the 12 version called, but where I get it? I have Win7

  • ProBook 455 G2: Change the map dual band wireless

    Hi all I was wondering if I can change my card wireless in my laptop to a double band so I can use 5 GHz. I tried to find what cards are compatible with my laptop but without much luck. Any help would be appreciated. Thank you.

  • Video chip

    The video can Flake in my HP Dv4 Entertainment Notebook. I'm not interested in the cost-effectiveness rather if it is possible to change the video chip. Thank you for your help.

  • My garden of Image with windows using 10 to scan from a canon printer mg5450

    I'm trying to use my kindergarten picture using windows 10 to scan from a canon printer mg5450 but I get mg5400 in my selection of scan and my printer is not recognized. Just downloaded and installed mp68-victory-mg5400-1_01-YES. Any suggestions plea

  • Particle position and orientation to an image

    Hello I have a single particle in a binary image. I want to correct its position and orientation of the image and then saving them. I managed to change his orientation. However, I would like to know if there is a direct approach to change his positio