CATSEARCH sorting and ranking

Hi, if ORDER BY is omitted in the CATSEARCH function, what type of sort is applied?

Select * from my_table where CATSEARCH (NAME, e

< query >

< textquery grammar 'context' = > $TABLE | $SIMPLE

< / textquery >

(< / query > ', NULL) > 0

There is no way to have the ranking based on the CATSEARCH?

CTXCAT indexes are not rating / ranking by relevance, if sorting is according to normal SQL "order by" clauses.

If you have need of relevance, you must use a CONTEXT index.

Tags: Database

Similar Questions

  • Sorting and grouping - two months in this query

    Hi all

    Thanks a lot for JAC

    I am doing a project for the construction company, I faced this problem by grouping points according to the relationship between these points the
    Relationship is from 1 to 100. If the point between what means there is relationship between these points has come.

    resolve this question already, but the results does not correct when the table contains more data.

    SQL - sorting and grouping.
    Jac and thanks a lot to him.

    This example for more details

    for example, I have these points
    id   location         percentage   comments 
    1     loc 1,2          20%                that mean point  1 and 2 close to each other by 20%
    2     loc 1,3          40%              that mean point 1 and 3 close to each other byy 40%
    3     Loc 8,6          25%               that mean point 8 and 6 close to each other by 25% 
    4     Loc  6,10        20%
    5     LOC 11,10        10 %
    6     LOC 15,14         0%
    In addition, we can see the relationship between these points as follows
    -points 1,2,3 in a group why because close 1.2 and 1.3 a relationship which means 1.3 also hid the relationship.
    -Points 6,8,10,11 in the second group there are the relationships between them.
    - but no relationship between 1, 2 or 3 with any point of 6,8,9,10,11
    -as well as no relationship between 15, 14, which means 14 in the third group and 15 in the fourth group.


    Whati need?

    to group the points that growing a relationship according to the percentage value


    The most important part is to group the points. For EXAMPLE, the query below, the gropuing is not correct.

    I have the following table with data
    drop table temp_value; 
    create table temp_value(id number(10),location varchar2(20), percentage number(9)); 
     
     
    insert into temp_value values  (1,'LOC 1,2',10); 
    insert into  temp_value values (2,'LOC 1,3',0); 
    insert into  temp_value values (3,'LOC 1,4',0); 
    insert into  temp_value values (4,'LOC 1,5',0); 
    insert into  temp_value values (5,'LOC 1,6',0); 
    insert into  temp_value values (6,'LOC 2,3',0); 
    insert into  temp_value  values(7,'LOC 2,4',0); 
    insert into  temp_value values (8,'LOC 2,5',30); 
    insert into  temp_value values (9,'LOC 2,6',0); 
    insert into  temp_value values (10,'LOC 3,4',0); 
    insert into  temp_value values (11,'LOC 3,5',0); 
    insert into  temp_value values (12,'LOC 4,5',40); 
    insert into  temp_value values (13,'LOC 4,6',0); 
    insert into  temp_value values (14,'LOC 6,7',40);
    insert into  temp_value values (15,'LOC 7,2',0);
    insert into  temp_value values (16,'LOC 8,2',60);
    insert into  temp_value values (17,'LOC 8,3',0);
    insert into  temp_value values (18,'LOC 3,1',0);
    insert into  temp_value values (19,'LOC 9,6',30);
    insert into  temp_value values (20,'LOC 11,2',0);
    insert into  temp_value values (22,'LOC 12,3',10);
    insert into  temp_value values (23,'LOC 19,3',0);
    insert into  temp_value values (24,'LOC 17,3',0);
    insert into  temp_value values (24,'LOC 20,3',0);
    When I used this query, the results is not correct

     with t as
        (select percentage,loc1,loc2,sum(case when percentage = 0 then 1
                           when loc1 in (l1,l2) then 0
                       when loc2 in (l1,l2) then 0
                       when l1 is null and l2 is null then 0
                       else 1
                  end) over(order by rn) sm
        from (     select id,location,percentage,
                           regexp_substr(location,'\d+',1,1) LOC1,
                          regexp_substr(location,'\d+',1,2)  LOC2,
                         lag(regexp_substr(location,'\d+',1,1))
                          over(order by percentage desc) l1,
                          lag(regexp_substr(location,'\d+',1,2))
                          over(order by percentage desc) l2,
                  row_number() over(order by percentage desc) rn
          from temp_value
          order by percentage desc
            )
      )
       select loc,min(sm)+1 grp
         from(
           select loc,rownum rn,sm
           from(
           select percentage,decode(rn,1,loc1,loc2) loc,sm
           from t a,
                (select 1 rn from dual union all
                 select 2 from dual ) b
           order by percentage desc,decode(rn,1,loc1,loc2) asc
          )
       )
        group by loc
       order by min(sm),min(rn);
    results


    SQL > /.
    LOC                         GRP
    -------------------- ----------
    2                             1
    8                             1
    6                             2
    7                             2
    4                             3
    5                             3
    9                             4
    1                             5
    12                            6
    3                             6
    11                           13
    
    LOC                         GRP
    -------------------- ----------
    19                           14
    17                           15
    20                           22
    
    14 rows selected.
    SQL >


    but the just is
    Location        group No
    2                  1
    8                  1
    4                  1
    5                  1
    1                  1
    6                  2
    7                  2
    9                  2
    12                 3
    3                  3
    19                 4
    17                 5
    20                 6
    Thanks in advance.

    Published by: Isabelle on November 30, 2012 03:07

    OK, I thought an it once again and found out how to include with any such percentage points.
    In your example expected output you missed the 11 that's why we got 7 groups now.
    The order of the Group 2 and 3 is ambiguous, because the highest percentage of these groups is the same.

    with connects as (
    select distinct
     loc1
    ,loc2
    ,connect_by_root(loc1) grp
    ,percentage per
    from
    temp_value
    --start with
    --percentage != 0
    connect by nocycle
    (prior loc2 = loc1
    or
    prior loc1 = loc2
    or
    prior loc1 = loc1
    or
    prior loc2 = loc2)
    and
    percentage != 0
    and
    prior percentage != 0
    )
    
    select
     loc
    ,dense_rank() over (order by decode(per,0,1,0), grp) grp
    from (
    select
     loc
    ,max(grp) keep (dense_rank first order by per desc, grp) grp
    ,max(per) keep (dense_rank last order by per nulls first) per
    from (
    select
     loc1 loc
    ,grp
    ,per
    from connects
    union
    select
     loc2
    ,grp
    ,per
    from connects
    )
    group by
    loc )
    order by 2,per desc,1
    
    LOC     GRP
    2     1
    8     1
    4     1
    5     1
    1     1
    12     2
    3     2
    6     3
    7     3
    9     3
    11     4
    17     5
    19     6
    20     7
    

    Think we are done now ;-)
    Edited by: chris227 at 30.11.2012 16:46

    Edited by: chris227 at 30.11.2012 17:12
    order corrected

    Edited by: chris227 at 30.11.2012 17:15
    simplification, no need to rank in linking subquery

    Edited by: chris227 at 30.11.2012 17:26

  • Why the menu bookmarks will remain sorted after that you sort and close the page?

    Newly added Favorites go to the bottom of the list. The page will sort from A to Z when we click on the sort icon... When you leave the page to sort and go back in the newly added bookmarks back not sorted to the bottom of the page.

    See also:

    Via the menu displays in the library to sort only shows bookmarks in the chosen sort order and constantly changing them (from where the name of views of this menu).

    By clicking on the header did the same thing.

    If you want to sort the bookmarks then you must right-click on a folder and use "Sort by name" to sort this issue.
    You cannot sort the individual bookmarks, only one folder can be sorted like this.

  • Margin of flase Table between rank and rank

    Hello

    I have the following question...

    Why I can't see correctly my HTML file when I put live? I can't undestand why I see a row of bwetten speace and ranks (see image). Please can you help me with this?

    If you want I can share my HTML code...

    Thanks in advanceUntitled.jpg

    It is the default browser inline image text strict doctype cushion descender (including the html5 doctype).

    Add the following to your css file...

    IMG {}

    Display: block;

    }

  • How to Auto search PDF for some criteria, and then sort and combine PDFs of this criterion.

    I receive 100 faxes a day.  Each fax has a particular bank account # (I have about 40 different bank accounts it could be associated to). I want Adobe Acrobat Pro to search all these faxes to identify the associated bank account #'s.  So I would like to sort these faxes by the identified bank account #.  So I want to combine PDF files into 1 single file PDF for each bank account # (already know how to do this last step). If anyone has any ideas on how to complete the first two functions, it would be greatly appreciated.

    Thank you!

    Hey Ethan,

    I'm sorry, but it is certainly not possible directly via Acrobat.

    Java script code must be created in order to perform the first two tasks.

    Or otherwise you can manually search, sort and combine the PDF "." But it would be a hectic task.

    If you are good with the scripts you could try once and see if you can.

    Concerning

    Sukrit diallo

  • disable column sorting and resizing on table view


    Is there a way to disable sorting and resizing of columns in the view table?

    Thank you

    Use

    setSortable (false)

    setResizable (false)

    on each TableColumn

  • 42.5 operations in memory of sorting and filtering of lines games

    Hi experts,

    I've had a few queries about this subjects., well I did not understand this topic a little, this will lead to ask me a question. ?

    Description:

    uses jdev11.1.1.5.0 - wls10.3.5, I was ah project say as example HR my application is in race mode employee details screen is rendered fine mode.ok
    I mean something may curious, I enter db - employee - employee table (column name) change in the name of the employee in db 'mark richard' did 'maggie '. but no one is using my name employee app.updated will consider my employee UI app Interface without disturbing screen?

    employee dependent vo - eo.

    ViewObject.QUERY_MODE_SCAN_DATABASE_TABLES

    This is the default mode that retrieves the results of the database.

    so above topic will help me to get an answer to my question... ?

    Thank you & & best regards
    ADF7.

    It's exactly like the quote from the doc. If you use in-memory sort and filter the data in the model layer are used instead of sending a new query to the db.

    Example: you have loaded the employees table in memory (for example select * from employees). Now, you want to see only the employees with a salary< 8000,="" so="" you="" enter="" this="" into="" the="" filter="" of="" the="">
    (a) normal behavior (QUERY_MODE_SCAN_DATABASE_TABLES) means that a query (select * from employees where salary)< 8000)="" is="" send="" to="" the="" db="" and="" you="" get="" the="" result="" set="" back="" showing="" the="" data="" from="" the="" db="" tables="" at="" the="" exact="" point="" when="" you="" send="" the="" query.="" changes="" made="" since="" you="" loaded="" the="" employees="" table="" the="" first="" time="" are="" now="" visible="" in="" the="">
    (b) in memory: now the lines already in the model layer are scanned and filtered and all records with salary< 8000="" are="" put="" into="" the="" result="" set.="" no="" query="" is="" send="" to="" the="" db,="" so="" you="" can't="" see="" changes="" made="" by="" others="" to="" the="" data="" in="" the="">

    Timo

  • Sorting and null for currency values in a report

    All,
    I think this should be easy, and I just missed something obvious.
    I have an APEX 3.2.1 standard report that includes a column with a monetary value in it. I want the column to display the UK pound sign to be able to sort and display NULL values, as appropriate.
    The question I have is that I can't find a way to reach all 3 in a medium satisfctory. As I see the options would be:

    (1) in the SQL for the report, concat the pound sign in the required column, for example SELECT "£". amount OF the...
    The problem is that it makes this field a CHAR field, so sorting is not sort of the same way as for a numeric field.

    (2) use the format FML999 number... etc in the column attribute.
    The problem with this is that it is a multi-country database, and the default currency unit is the value of the U.S. dollar.

    (3) expression box to use HTML code in the column attribute to display £#COL #.
    It fills the pound sign and keep the number format, but unfortunately a null value is displayed as a sign of pounds with no number. I do not see how so he can leave this value in the report as completely empty.

    As I said, I'm sure I missed obvious soemthing. If someone can identify how to achieve this it would be much appreciated.

    Kind regards
    Jon.

    >
    (2) use the format FML999 number... etc in the column attribute.
    The problem with this is that it is a multi-country database, and the default currency unit is the value of the U.S. dollar.
    >

    The NLS currency symbol can be changed on the fly if you have a few ways to identify the location/preference of the user: {: identifier of the thread = 990848} (ignore the last post)

    However, it probably doesn't make sense to do - ≠ £100 $100 (at least I hope not!) - unless there is some sort of conversion occurring in the report? Is there a currency stored and the amount?
    >
    (3) expression box to use HTML code in the column attribute to display £#COL #.
    It fills the pound sign and keep the number format, but unfortunately a null value is displayed as a sign of pounds with no number. I do not see how so he can leave this value in the report as completely empty.
    >
    Use 2 columns, one for the amount and one for the money, with a switch to include or exclude it if necessary:

    select
              ename
            , comm amount
            , nvl2(comm, '£', null) currency
    from
              emp
    where
              job in ('SALESMAN', 'MANAGER')
    
    ENAME      AMOUNT                 CURRENCY
    ---------- ---------------------- --------------------------------
    ALLEN      300                    £
    WARD       500                    £
    JONES
    MARTIN     1400                   £
    BLAKE
    CLARK
    TURNER     0                      £                                
    

    Then use the two columns in the Expression of the amount of HTML:

    #CURRENCY##AMOUNT#
    
  • ADG custom sort and icons

    I've got flat of data from AMFPHP as a collection of array of objects with properties such as

    type
    grade
    day_number
    Object
    ...

    Some of the data is special, marked as a "Viper" (Adder = 1). The Adder must appear at the top of the list and have a specific icon (sign more or something). All other entries should be sorted alphabetically, under the Adder and have another icon (trash).

    When the user clicks on the "adder", they revise their new entry, once completed, the entry is added to the list and the Adder is maintained. A similar behavior in powerpoint when creating bullets (a temporary entry waiting a tool for editing, when it exists, a new entry is created).

    I read until I can't stand more... people talk about the custom item renders, subclassing etc. I understand that, however, I have no idea of what I need to do (what functions of overload) to achieve this behavior.

    In addition, the data are grouped through a group collection, so that the user can navigate to a specific day, grade and then the class to add/change. Again, I would change the icons for folders according to their function.


    In summary:
    1. what should I do to customize the sorting of data in the ADG (first take an element of the kind and everything).
    2. what should I do to change the icons of specific so that some icons will be trash and other nodes will be signs more.
    3. what should I do to change the behavior of itemClick so that if the user clicks on an element with a recycle bin, the item is deleted, but not if the user clicks on an element with a sign more.
    4. what should I do to change folder icon based on the item type and depth of the order of the day (so that each level has a different icon).

    If it's simple, I apologize. Everything seems easy for people in flex, and yet I've worked dozens of hours on this stupid problem and can not solve. Flex could be great if I could understand this shit... Go to PHP! : o).

    "MacGyverMan" wrote in message
    News:gd0so7$2u5$1@forums. Macromedia.com...
    > I've got flat of data from AMFPHP as a collection of array of objects
    > with
    > properties such as
    >
    > type
    > grade
    > day_number
    > topic
    > ...
    >
    > Some data is special, marked as a "Viper" (Adder = 1). The Adder
    > must
    > appears at the top of the list and have a specific icon (sign more or less)
    (> something). All other entries should be sorted alphabetically under the
    > Adder and
    > have a different icon (trash).
    >
    > When the user clicks on the "adder", they are revising their new entry, on
    > completion.
    > the entry is added to the list and the Adder is maintained. A behavior
    > similar
    > to powerpoint when creating bullets (a temporary entrance waiting for a change, if)
    > It
    (> is one, a new entry is created).
    >
    > I read until I can't... do the people speak
    > custom
    > point renders, etc. the subclassing. I understand that, however, I have no idea
    > what
    > I do (what functions of overload) to achieve this behavior.
    >
    > In addition, the data are grouped through a group collection, so that the user can
    > go to a specific day, grade and then the class to add/change. Again, I got
    > as
    > change the icons for folders according to their function.
    >
    >
    > In summary:
    > 1. What should I do to customize the sorting of data in the ADG (take an element
    > out
    (> sorting and put everything first).

    According to me, is the only type of hierarchical Collection, you can do it with one
    GroupingCollection. You will need to use a compareFunction on the Group
    and/or GroupingField to always return-1 for that particular item.

    > 2. What should I do to change the icons of specific end-nodes as well as some
    > icons
    > will be trash and some signs will be more.

    Watch iconFunction.
    http://livedocs.Adobe.com/Flex/3/langref/MX/controls/listclasses/AdvancedListBase.html#ICO nFunction

    Despite what say the docs for AdvancedDataGrid, he _does_ support the
    iconFunction property.

    > 3. What should I do to change the itemClick behavior so that the user case
    > click on
    > an article with a trash can, the item is deleted but not if the user clicks
    > a
    > point with a sign more.

    The ListEvent you get from itemClick will have a property called
    currentTarget. If you look at currentTarget.data, it will be the
    information on the entire line. Check what property you used in your
    iconFunction show trash vs the sign, to the
    different features.

    > 4. What should I do to change based on the type of element folder icon and the
    > article
    > depth (so that each level has a different icon).

    Look at the docs for groupIconFunction.
    http://livedocs.Adobe.com/Flex/3/HTML/advdatagrid_06.html

    > If it's simple, I apologize. Everything seems simple for people to
    > flex,.
    > and still I've worked dozens of hours on this stupid problem and cannot
    > solve
    > it. Flex could be great if I could understand this shit... Go to PHP!
    > :o)

    It all takes a long time to understand what is happening in Flex, but
    Once you do, it's amazing :-).

    I did an example with a GroupingCollection you can or can not find
    useful, since I deliberately _not_ use it for an ADG.
    http://flexdiary.blogspot.com/2008/09/GroupingCollection-example-featuring.html

    I also have a demo here that shows using an iconFunction, although, once again, do not
    with an ADG
    http://flexdiary.blogspot.com/2008/08/TileList-with-stylefunction.html

    HTH;

    Amy

  • How can I add a page to my Web site which contains a list of items to sell? We must be able to add items, sort and delete? Each line item will have a video icon to see the points of sale.

    I am building a Web site for a cattle broker who needs to display cattle land for sale, which includes a description of the cattle (several bits of information) and a video of the cattle. It is a list that can be sorted by the key of the fields.

    Your experience of software development would say that you can pick up the necessary skills in HTML, XML, CSS, PHP, Javascript and RWD (Responsive Web design) required for a web developer. We look forward to provide any help you want.

    The aspect of the design of things will be to learn what appeals to users and what Google needs to rank your site well.

    Avoid the pitfalls of the Flash, the software and absolute positioning graphics never let write your HTML code for you.

    You will now be in a case sensitve * nix environment.

    You plan to generate your own graphics as well?

  • I want to messages with attachments to not be sorted and I want to see the attachment icon

    Please send me information about the display of an attachment icon. I did what you suggested and it did not work. And now, if I get an email with an attachment, I do not see the email - it's buried somewhere in my Inbox. I used to be able to get messages with attachments and they came in chronological order, and there will be an icon of attachment. Can you please help?

    Click on the label to DATE header sort by date. Click on DATE a 2nd time to reverse the sort order.

    This works on any header. Click on the one where he's sort.

    You have the attachment showing column? See the image.

    Otherwise, click the circled icon and add it.

  • How to sort and organize the desktop icons in Windows Vista?

    How do sort you the icons on the desktop by name or lock the desktop under Vista icons

    Right-click on the desktop and click view.
    To get the icons to stay where it is placed on the desktop.
    Click on align on the grid and automatic uncheck their reorganization.

    To have the icon to align with the grid
    This will keep the icons of overlap between them.
    Click on snap to grid.

    To have the icons align automatically:
    The icons will be automatically aligned in the upper left corner of the office.
    Click Auto arrange.

    Not sure if that's what you are meaning.
    Let us know if that helps.

    Marilyn

  • Multiple operating systems. How to get the double boot or sort and what's on the disk images?

    Hello. I currently have Windows XP Home Edition on my desktop. I have an update for Windows Vista Home Premium. Both are 32-bit. I read this linkhttp://windows.microsoft.com/en-US/windows-vista/Installing-and-reinstalling-Windows-Vista. I have a few questions, I would like to precise please.

    Can I add the upgrade to Vista on a separate hard drive? Is there a partition?

    Do I need to install any other program infront of XP or Vista so I can dualboot? I have to if I wanted to add Win7 Home Premium 64 - bit as a bunch of sorting?

    I'm not pure install, I understand that. I'm done with my XP havn't programs, it takes more time than expected.

    Is it possible to create disk images or backups with more than one operating system installed? If I have an upgrade, I don't think that I can remove the previous installed OS (XP Home Edition) and have a Vista disk image work. At least I have clean install and only Vista is? I have Norton Ghost 15 and I wondered if I would be able to drive or backup XP image or upgrading to Vista at all, or together.

    Can an upgrade copy, I change the material at all, or add anything internally?

    XP SP3 on the desktop.

    Hello

    Yes, you need XP on your drive hard first to use the dual boot with Vista, after the restoration of ghosting for 2 hard drives.

    If you only want Vista on the PC, then you will need to use your Vista installation disk to repair and install files on the hard disk Vista.

    As for the reactivation, you should be able to activate again within 3 days on the internet, you may need to phone MS if you can't.

    1) click Start and in the search for box type: slui.exe 4
    (2) press the ENTER"" key.
    (3) select your "country" in the list.
    (4) choose the option "activate phone".
    (5) stay on the phone and waiting for someone to help you with activation.

    Your XP disk is more then likely an OEM version, which means that it is linked to the computer it was installed on.

    So your Vista upgrade could also be tied to the PC you are upgrading to.

    Please keep in mind that my answer is based on the information in your message. More the better I can answer, Slan go foill, Paul

  • Need to free more RAM to sort and link several very large excel files

    HP Pavilion dm1 computer running windows 7 64 bit with Radeon HD graphics card laptop. Recently upgraded to 8 GB with 3.7 GB of usable memory.

    I have several very large files with more 150 000 lines in each excel file. Need to combine these 3-4 files and sort. Research to maximize the availability of memory.  The Task Manager is total view Mo 3578, available - 1591 MB, cache - 1598. Free 55MO.  A single instance of Chrome and Excel 2014 without worksheet are running.
    Appreciate your help.

    It's her! It worked... disabled the maximum memory and restarted.

    available memory is 7.6 GB to 8 GB. Oh boy, I can't believe it...
    Thank you guys. Many thanks to hairyfool, Gerry and countless others who have given pointers...
  • Fill a field with the results of the other (sort and add custom text)

    I have a PDF form with many fields popup asking 'Yes', 'Maybe' or 'no '. I need a way to collect the answers and sorting, all the 'yes' first of all, that all the 'maybe', all the 'no '. When I need after that sort of response of three, is put in a 'Results' field with the container of the ToolTips for each popup and the ability to add a "BOLD" text, between three sorted responses.

    I have found some javascript in the forum here to collect data from field only. It seems to be easy to modify if you have several fields to collect/sorting/extract.

    Assistance or management to do will be appreciated.

    Thank you!

    Assuming that you have 50 menus named A1, A2... A50 and each drop-down list has three elements (Yes, maybe, no), you could do something like:

    Initialize object to contain the info of the answer

    var oResponse = {}

    'Yes': [],.

    "Maybe": [],.

    ['No':]

    };

    var i, f;

    Browse fields (A1, A2... A50)

    for (i = 1; i<= 50;="" i="" +="1)">

    Get a reference to the current field

    f = getField ("A" + i);

    Add ToolTip text of the current field to the corresponding table in the response object

    oResponse [f.valueAsString] .push (f.userName);

    }

    Generate the output string

    aOutput var = [];

    If (oResponse ['yes'] .length > 0) aOutput.push ("It's the priority YES\r" + oResponse ["Yes"] .join ("\r"));

    If (oResponse ["Maybe"] .length > 0) aOutput.push ("It's the priority MAYBE\r" + oResponse ["Maybe"] .join ("\r"));

    If (oResponse ['No'] .length > 0) aOutput.push ("It's the priority NO\r" + oResponse ["No"] .join ("\r"));

    Enter the results

    getField("Results").value = aOutput.join("\r\r");

Maybe you are looking for

  • Virus or Trojan or something else that will activate the guest account?

    My computer is very slow, and every time I wake it from sleep I notice that the guest account has been enabled.  So I go into Control Panel and then users and groups and disable the guest account unblocking of the user and groups with my password, re

  • Satellite A30 - upgrade RAM

    Hello I was wondering if it is possible to get an upgrade of ram for my A30? I have an extension connector. If so, where can you offer me that I buy it from? Thank you! Tom WardCambridge, UK

  • Two common examples of the same VI

    It never really occurred to me until now, but when you place the same vi on the front panel twice, are two instances of the vi created or is a vi just one copy of the other. I don't know if what I say makes sense but take a glance to my screws undern

  • Updating video card - computer crashing

    I am very computer illiterate so need help "basic"... I have for two months had hit a regular number (every day) with my computer blocks an hour after it started, the message always reads that video card expired need to upgrade. Can someone give me p

  • Any ideas where to get the online startup disk?

    Vista with SP2 without MS. Have a 32 bit Windows 6.0 core dual processor 6000 X 2 3.0 GB. Want a startup disk for Windows 7. Can you help me?