Create ctxsys.ctxcat index in the object Table

What I'm trying to do is to create an index of type ctxsys.ctxcat on 'col3 '. But this 'col3' is not a 'TABLE', but in an object, as follows:

CREATE OR REPLACE TYPE TestObj AS OBJECT
(
col1 varchar2 (10),
col2 varchar2 (10),
COL3 varchar2 (10),
COL4 varchar2 (10)
);


CREATE OR REPLACE TYPE AS THE TestObj TABLE TestTable;

Now, how can I create an index of type ctxsys.ctxcat on 'col3 '?

create index test_ind on TestTable (col3) indextype is ctxsys.ctxcat;?


Thank you for helping.


Scott

You cannot index a user-defined data type. Indexes are used for persistent storage of persistent objects.

What I suspect you really want is an associative array or an array indexed by integer binary. Demos here:

http://www.morganslibrary.org/reference/arrays.html

Tags: Database

Similar Questions

  • How to create indexes on the nested table.

    Hi all
    I held the syntax to create indexes on the nested table.

    I found below synta but when I try it with my table it gives me error

    CREATE UNIQUE INDEX indx_name
    ON nestedtablestore (NESTED_TABLE_ID, id);

    What is here NESTED_TABLE_ID & ID

    They are virtual your nested table

    Here is an example.

    create or replace type obj as object (no integer, address varchar2(100))
    /
    create or replace type tbl as table of obj
    /
    create table test_tbl (id integer, name varchar2(100), address tbl) nested table address store as address_nt
    /
    create unique index address_no_idx on address_nt (no, address)
    /
    

    Published by: Karthick_Arp on November 23, 2010 01:41

  • Cannot create indexes on the flow table

    Hello

    I'm new to ODI.

    The problem is that during the execution of an interface, I get the error of the "IKM Oracle Dimension to slow variation"

    The command in step "Create unique index on the flow table:

    creating index < % = odiRef.getTable ("L", "INT_NAME", "A") % > idx

    on < % = odiRef.getTable ("L", "INT_NAME", "A") % > (< % = odiRef.getColList ("", "[column]", ",", "", "SCD_NK") % >)

    < % = odiRef.getUserExit ("FLOW_TABLE_OPTIONS") % >

    generate the following statement which lacks the name of the column between the (_)

    Create index I$ _MYTABLE_idx

    I have $_MYTABLE)

    NOLOGGING

    The result is that the interface fails with the error 936: 42000: java.sql.SQLException: ORA-00936: lack of expression caused by the previous command wrong.

    Please, can you help me?

    Thank you very much

    Angelo

    Hello

    I'm really really sorry! I just realized that you are working on the SCD. Basically, you are looking for all the column mapped as SCD_NK (key to slowly change natural Dimensions) insofar as shown here

    Substitution QAnywhere

    IF you need to read this

    SCD Type 2 - ODIExperts.com

    Let me know.

  • Index on the primary table becomes UNUSABLE after Exchange of partition

    Hello!

    I am the scene changes to partition and somehow, I see that the partition that I Exchange eventually becomes "UNUSABLE".


    The steps that I'm following:

    1. creating the temporary table:

    CREATE TABLE TEMP_TKTHEADER
    AS SELECT * FROM T3TKTHEADER
    WHERE 1 = 2

    2. replacement of the partition

    ALTER TABLE T3TKTHEADER
    PART08Q1Q2 PARTITION EXCHANGE
    WITH TABLE TEMP_TKTHEADER


    After the Exchange is carried out and I ask the stats of the index on the primary table (T3TKTHEADER as in this case):

    INDEX_NAME NOM_PARTITION STATUS
    ----------------------------------------------------------------------------------------------
    XTKTHDR1 PART08Q1Q2 UNUSABLE
    XTKTHDR10 PART08Q1Q2 UNUSABLE
    XTKTHDR11 PART08Q1Q2 UNUSABLE
    XTKTHDR12 PART08Q1Q2 UNUSABLE
    XTKTHDR13 PART08Q1Q2 UNUSABLE
    XTKTHDR14 PART08Q1Q2 UNUSABLE
    XTKTHDR2 PART08Q1Q2 UNUSABLE
    XTKTHDR3 PART08Q1Q2 UNUSABLE
    XTKTHDR4 PART08Q1Q2 UNUSABLE
    XTKTHDR5 PART08Q1Q2 UNUSABLE
    XTKTHDR6 PART08Q1Q2 UNUSABLE
    XTKTHDR7 PART08Q1Q2 UNUSABLE
    XTKTHDR8 PART08Q1Q2 UNUSABLE
    XTKTHDR9 PART08Q1Q2 UNUSABLE


    This is normal behavior!
    Is not swap Partition just supposed to change the pointer to the partition of the temporary table data and leave the rest of the table intact!

    Thank you
    AB007

    Dear AB007,

    Please see subpart of swap partition. I assumed that the version of your database is GR 11, 2;

    http://download.Oracle.com/docs/CD/E11882_01/server.112/e10592/statements_3001.htm#BABHHAHF

    INCLUDING | EXCLUDING INDEXES Specify INCLUDING INDEXES  if you want local index partitions or subpartitions to be exchanged with the corresponding table index (for a nonpartitioned table) or local indexes (for a hash-partitioned table).
    Specify EXCLUDING INDEXES  if you want all index partitions or subpartitions corresponding to the partition and all the regular indexes and index partitions on the exchanged table to be marked UNUSABLE.
    

    Hope that helps.

    Ogan

  • Drop and re-create the index on the current table

    Hello

    I just have a few questions about the removal and creating indexes on a table that activates a lot.

    Let me explain first:

    The table is used by the application with the DML statements every 3 seconds and I want to do is to drop the indexes and re-create them.
    But Im worried about the consequences - what happens when I try to recreate the indexes and the table has an option rowlock/used by the application?

    P.S
    It's production environment - so I can't stop the application.


    BR / Ander

    A reconstructed index either Online or Offline.

    Online index rebuild features:

    ALTER INDEX REBUILD ONLINE;

    LMD is allowed on the base table
    It's relatively slow
    Base table is targeted for the new index
    Base table is locked in shared mode and DOF is not possible
    Intermediate table stores changes to data in the base table, during the rebuilding of indexes to update the new index later

    Offline index rebuild features:

    ALTER INDEX REBUILD. (Default)
    Does not refer to the base of the table and the base table is exclusively locked
    New index is created from the old index
    Not possible DML and DDL on the base table
    Relatively faster

  • Nested in the object table

    Hi gurus,

    SQL > select * from v version $;

    BANNER

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

    Oracle Database 10g Release 10.2.0.4.0 - Production 64-bit

    PL/SQL Release 10.2.0.4.0 - Production

    CORE 10.2.0.4.0 Production

    AMT for Linux: release 10.2.0.4.0 - Production

    NLSRTL Version 10.2.0.4.0 - Production

    SQL >

    I want a table nested in the object. Here's my implementation

    CREATE or REPLACE TYPE test_language_obj AS OBJECT

    (returned VARCHAR2 (3),)

    Description varchar2 (50)

    )

    /

    CREATE or REPLACE TYPE test_language_tab AS TABLE OF THE test_language_obj;

    /

    CREATE or REPLACE TYPE test_Region_obj () AS OBJECT

    get rid of the VARCHAR2 (6).

    r_date DATE,

    lang_tab test_language_tab,

    CONSTRUCTOR FUNCTION test_Region_obj RETURNS RESULTS of AS SELF);

    /

    CREATE or REPLACE TYPE test_Region_tab AS TABLE OF THE test_Region_obj;

    /

    When I run the suite of applications, it works fine

    Select test_language_obj ('001', 'This is the English language code') of double

    But when I run the following question

    SELECT Test_Region_obj ('111 ', sysdate, (select test_language_obj ('001', 'This is the English language code') of double)) double

    It gives following error

    ORA-06553: PLS-306: wrong number or types of arguments in the call to 'TEST_REGION_OBJ '.

    My goal is to get all languages within the region.

    Anyone can point out what I'm missing here?

    Thanks in advance.

    The problem is that your test_Region_obj does not contain an object of test_language_obj but a collection of test_language_obj objects.

    If the constructor of test_Region_obj waiting for the 3rd Argument of type test_language_tab instead of test_language_obj.

    HTH

    Roger

  • Index on the seeding Table Oracle Applications

    Hi all

    Can I create an index on a column to the table of the seeds of the oracle applications. If so, then, what are the implications? If not, what are the reasons... Can anyone give some input on this...

    Why I need this...

    I have a validation on the column 'JOURNAL_COMMENT' in Table 'IC_JRNL_MST' in my custom Interface program. It takes 2.5 minutes to complete the validation of a record. I created the index on this column in the process of development and validation time is reduced to less than a second. So, I need to create this index on an instance of production to reduce the time of validation.

    can I do it? (create the index on the production instance) forgot to mention... I can't ignore that particular column validation...

    Thanks in advance...
    Melanie

    You can certainly create indexes custom table seeded so this improvement in performance has to offer. I did it several times.
    As you know, a new index is provided with a cost (storage and maintenance), but it will be significantly smaller than your gains.
    A new index will not harm any validations / business logic.
    Just keep in mind that if you or a patch happens to drop and re-create the table, you must remember to rebuild the index.
    Hope that answers your question

    Sandeep Gandhi
    Independent consultant
    513-325-9026.

  • Create procedure upsert (name of the existing table, incoming table name)

    Is it possible to create a procedure that makes a merge (upsert) with only two parameters:

    1. Existing Table name - name of table that will have data merged into it.
    2. Incoming Table name - name of the table that has developed data day/news.

    The method would be:

    1. Use primary keys on the "existing" table as the condition links
    2. Fact and update if exists and insert new
    3. no record
    4. no clues
    5. no removal clause

    Oracle 11g

    MERGE < tip > < table_name >

    USING < table_view_or_query >

    (< CONDITION >)

    WHEN MATCHED THEN < update_clause >

    DELETE < where_clause >

    WHEN NOT MATCHED THEN < insert_clause >

    [ERRORLOG < log_errors_clause > < reject limit < integer | unlimited >];

    < table_name > - from input parameter

    < table_view_or_query > -socket input parameter

    < condition > - primary key links (how search a single/multiple primary keys and return the list?)

    < update_clause > - update all columns (other than KP, how to get and use a dynamic list of columns)

    < where_clause > - not used

    < insert_clause > - insert new records for all columns (including the PK (s))

    declare

    p_source varchar2 (30): = "EMP_X";

    p_target varchar2 (30): = "EMP_Y";

    query varchar2 (32000);

    function get_cols (p_table in varchar2) return varchar2 is

    VARCHAR2 (32000) retval;

    Start

    Select the Group (order of column_id) listagg (column_name, ',')

    in retval

    of user_tab_cols

    where table_name = p_table

    Table_name group;

    Return retval;

    end;

    function get_keys (p_table in varchar2) return varchar2 is

    VARCHAR2 (4000) retval;

    Start

    Select listagg (cc.column_name, ',') in the Group (order by cc.position)

    in retval

    from user_constraints c,.

    user_cons_columns cc

    where cc.table_name = p_table

    and c.constraint_type = 'P '.

    and cc.table_name = c.table_name

    and cc.constraint_name = c.constraint_name

    C.table_name group;

    Return retval;

    end;

    function merge (p_merge1 varchar2, p_merge2 varchar2, p_link varchar2) return varchar2 is

    Merge1 varchar2 (32000): = p_merge1 | «, » ;

    merge2 varchar2 (32000): = p_merge2 | «, » ;

    VARCHAR2 (32000) retval;

    Start

    then merge1 is not null

    loop

    retval: = retval | » t.'|| substr (Merge1, 1, InStr (Merge1, ',') - 1) |'s =.' | substr (merge2, 1, InStr (merge2, ',') - 1);

    Merge1: = substr (merge1, instr(merge1,',') + 1);

    merge2: = substr (merge2, instr (merge2, ',') + 1);

    If merge1 is not null then

    retval: = retval | p_link;

    end if;

    end loop;

    Return retval;

    end;

    Chopper (p_cols p_keys varchar2, varchar2) return varchar2 is

    passes varchar2 (32000): = ', '. p_cols | «, » ;

    keys varchar2 (32000): = ', '. p_keys | «, » ;

    VARCHAR2 (32000) retval;

    Start

    While the keys! = «, »

    loop

    If instr (passes, substr (keys, 1, instr(keys,',',1,2))) = 1 then

    cols: = substr (collars, instr(cols,',',1,2));

    on the other

    cols: = substr (passes, 1, instr (passes, substr (keys, 1, instr(keys,',',1,2))) | substr (collars, InStr (collars, ',', InStr (passes, substr (Keys, 1, InStr(Keys,',',1,2))), 2) + 1);)

    end if;

    keys: = substr (keys, instr(keys,',',1,2));

    end loop;

    return trim (both ',' collar);

    end;

    Start

    query: = 'merge'. p_target |' t ' |' using (select ' | get_cols (p_source): ' from ' | p_source |') s '.

    ' on ('|) Merger (get_keys (p_target), get_keys (p_source), 'and') |') ' ||

    "When matched then update set ' | '. Merger (Chopper (get_cols (p_target), get_keys (p_target)), Chopper (get_cols (p_source), get_keys (p_source)), ',').

    «When not matched then insert ('|)» get_cols (p_target) |') values (s.'|) Replace (get_cols (p_source),', ', ', s') |') ';

    dbms_output.put_line (Query);

    end;


    Fusion in EMP_Y t using (select EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO EMP_X) s on (t.EMPNO = s.EMPNO and t.ENAME = s.ENAME) when matched then update set t.JOB = s.JOB, t.MGR = s.MGR, t.HIREDATE = s.HIREDATE, t.SAL = s.SAL, t.COMM = s.COMM, t.DEPTNO = s.DEPTNO when not matched then insert (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO) values (s.EMPNO, s.ENAME, s.JOB, s.MGR, s.HIREDATE, s.SAL, s.COMM, s.DEPTNO)

    Concerning

    Etbin

  • Problem creating Cup by text on the object

    So I group of shapes that are each a different color a rectangle (took a rectangle and used the tool for scissors divide to recolor). Each color is its own form, but I put them all in a group if that makes since. Then I put the text above the form to make the cut through and it turned out all rectangle white? It broken, but got rid of the gradient? Whats happening?

    Action taken:

    Click with the right button on text

    Vectorize

    Select the object and the text

    Click on exclude to scout

    Thanks, Tommy

    You want an Opacitiy mask.

    Make the text in black on top the glomeruli color objects.

    Select both and choos make mask in the transparency Panel.

    Uncheck the Clip and invert the mask.

  • How to create indexes for the great table of telecom

    Hello

    I'm working on DB 10 G on a 5 REHL for telecommunications company with more than 1 million saved per day, we need speed up the result of the query.
    We know, there are several types of INDEX and I need professional advice to create a suitable,

    many of our requests depend on the MSID (the MAC address of the Modem) column,
       
    Name           Null Type         
    -------------- ---- ------------ 
    STREAMNUMBER        NUMBER(9)    
    MSID                VARCHAR2(20) 
    USERNAME            VARCHAR2(20) 
    DOMAIN              VARCHAR2(20) 
    USERIP              VARCHAR2(16) 
    CORRELATION_ID      VARCHAR2(64) 
    ACCOUNTREASON       NUMBER(3)    
    STARTTIME           VARCHAR2(14) 
    PRIORTIME           VARCHAR2(14) 
    CURTIME             VARCHAR2(14) 
    SESSIONTIME         NUMBER(9)    
    SESSIONVOLUME       NUMBER(9)    
    .
    .
    .
    Please help,

    Hello

    first of all, think of all these SQL for the subquery on MAX (fairy) with analytical functions, the examples given on AskTom of rewriting: http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:9843506698920

    So I'll start with a normal index the MSID (but I think you already have), but provide a compression on the column, I think the same value MSID exist several times in the table. If the performance is not satisfactory or that the plan is not the best, then an option to include more columns can help you.

    I think that the first part of the answer will bring more gain.

    Herald tiomela
    http://htendam.WordPress.com

  • FindGrep results in tables tables, depending on the object table of GOLD?

    Hello

    Currently, I get the text, I would like to consider using an index of PointInsertion from a previous search:

    ... . parent.insertionPoints.itemByRange (startPos, endPos)

    Original research, as I did, I got a simple table, but the search inside the insertionPoints, I had an array of arrays.

    Code example below. Just open a new blank document in InDesign and run the following. Adapted text is added in the code example, of research. (Tested in CS6 so far.)

    var activeDocument = app.activeDocument;
    var pg = activeDocument.pages[0];
    
    var fr = pg.textFrames.add();
    fr.geometricBounds = [20, 20, 100, 100];
    fr.contents = 'a00sdf 12-9999\n15-888'
    
    app.findGrepPreferences = app.changeGrepPreferences = null;
    // Search for digits on a certain pattern
    app.findGrepPreferences.findWhat = '\\d\\d-\\d\\d+';
    var findings =activeDocument.findGrep(); // Searching the whole document
    
    // The result is an array of Text objects
    $.writeln('1. ' + findings[0].constructor.name);
    // Result: Text
    
    
    // Now search using an insertionPoint object instead. Search from the start (0) up to the position where we found the first match in the grep above.
    var myTextObj = findings[0];
    var insObj = myTextObj.parent.insertionPoints.itemByRange(0, myTextObj.index)
    // Now just search for any two digits
    app.findGrepPreferences.findWhat = '\\d\\d';
    var innerFindings = insObj.findGrep(); // Searching inside the insertion points object
    
    // The result is an Array of Arrays
    $.writeln('2. ' + innerFindings[0].constructor.name);
    // Result: Array
    
    // ... inside which are the Text objects
    $.writeln('3. ' + innerFindings[0][0].constructor.name);
    // Result: Text
    
    // ... so why did I get an array of arrays when searching inside the insertionPoints object?
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    Thank you

    Andreas

    Hi all

    In any case, a range of text is a special beast compared to the results of.itemByRange (...) the regular Collection.

    The fact is that myText. insertionPoints.itemByRange (0, myIndex) provides a collective PointInsertion (and it would be the same with the characters, wordsor any collection of text), but this text range instantly forced into an single text unit as soon as you access a property. Compare:

    .pointSize de.stories.itemByRange (0, -1) myDoc(1); => Size chart


    (2) myText. insertionPoints.everyItem () .pointSize; => Size chart


    (3) myText.pointSize de.insertionPoints.itemByRange (0, -1); / /-online single size (even in the heterogeneous context)


    Thus, text ranges are specially treated as text units, which leads to ask why myRange.findGrep () returns an array of arrays. IMO, the DOM is not in conformity on this point.

    As shown in Peter, the workaround is easy. We just need to explicitly convert the beach in unity of the text reference is made, using either () myRange.getElements [0] or myRange.texts [0].

    @+

    Marc

  • Adding indexes to the fact table large

    Hello

    Using oracle 11.20.3

    If made big table several billion lines and wants to add index disadvantages to only expliciltly gathering stats on the new index.

    Reason I just want to make the new index will be much faster.

    Thoughts?

    Thank you

    11.2 or later, his Stats are collected at the time of the creation of the index and you don't need to do it explicitly. Oracle optimizer will be bale to see this index immediately after creating indexes.

  • Audit Table and triggers for the object table 10g

    Hello

    I am trying to create an audit table and related triggers based on a table of objects.

    I have a table called payruns.

    created by this statement:

    CREATE TABLE payruns to payrun_o;

    I intend on creating a table of audit created by statement payruns_audit

    CREATE TABLE payruns_audit)
    payrun_old PAYRUN_O NOT NULL,
    action VARCHAR2 (1).
    default user user_resp VARCHAR2 (32) NOT NULL,
    action_date date default sysdate NOT NULL);

    A trigger is needed to maintain the tabel of audit update

    The trigger code would be something like:

    CREATE OR REPLACE TRIGGER payruns_br_ud
    FRONT
    INSERT OR UPDATE ON payruns FOR EACH ROW
    DECLARE

    lv_old_payrun payrun_o;
    lv_action VARCHAR2 (1);

    BEGIN

    If the insertion
    lv_action: = 'I ';
    on the other
    lv_action: = 'U ';
    end if;

    SELECT: old.value (pr)
    IN lv_old_payrun
    OF payruns pr
    WHERE pr.pr_id =: old.pr_id;

    INSERT INTO payruns_audit (payrun_old,
    action,
    user_resp,
    action_date)
    VALUES (lv_old_payrun,
    lv_action,
    user,
    SYSDATE);

    END;

    However: old.value does not work.

    Could you tell me about the correct syntax.

    Thank you!

    Hi Alistair - try to use OBJECT_VALUE.

    CREATE TABLE payruns_audit)
    payrun_old PAYRUN_O NOT NULL,
    payrun_new PAYRUN_O NOT NULL,
    action VARCHAR2 (1).
    default user user_resp VARCHAR2 (32) NOT NULL,
    action_date date default sysdate NOT NULL);

    CREATE OR REPLACE TRIGGER payruns_after_ud
    AFTER the update on payruns
    FOR EACH LINE
    DECLARE
    lv_action VARCHAR2 (1);
    BEGIN
    IF the insertion and THEN lv_action: = 'I ';
    ANOTHER lv_action: = 'U ';
    END IF;

    INSERT INTO payruns_audit (payrun_old, payrun_new, action, user_resp, action_date)
    VALUES (: OLD.) OBJECT_VALUE,: NEW. OBJECT_VALUE, lv_action, USER, SYSDATE);
    END payruns_after_ud;

    Cheers, Shane.

  • How can I create a book index in the back of Acrobat PDF document

    We want to be able to generate indexes of book to print PDF documents.  Some of our PDF files are 300 pages, so it is difficult to navigate in their impression.  We accuse Acrobat 9 Standard.

    Wow!  Big question that I have not heard before, much less seen it before, but apparently there is a third party tool that tries to do this from an existing PDF.  I've never heard of this tool before today then try and see if it works for you.

    http://www.PDFIndexGenerator.com/tour.php

    Acrobat can't do that and I don't think that the LiveCycle products for this either.

  • How to make simple "search" on the object Table or VARRAY?

    I do a simple bulk collect into a local table type and need a way to determine whether an item exists in this type of local table inside an if condition. I can't understand the syntax. Here is the code:


    DECLARE
    type emp_roles is table of the varchar2 (10);
    v_emp_roles emp_roles;


    BEGIN
    -Determine the role of the current employee
    Select ef.emp_function_code bulk collect
    in v_emp_roles
    of emplyee_function ef
    where ef.emp_no = 1234;

    If 'HOMEMRKT' in (v_emp_roles) then
    null;
    elsif "IMMIGRAT" then in (v_emp_roles)
    null;
    "INVENTOR" elsif then in (v_emp_roles)
    null;
    elsif 'TEMPHOUS' in (v_emp_roles) then
    null;
    end if;


    Any ideas how to proceed?

    Thank you

    'Member ':

    DECLARE
      type emp_roles is table of varchar2(10);
      v_emp_roles emp_roles;
    BEGIN
       select * bulk collect
              into v_emp_roles
       from table(sys.ku$_vcnt('IMMIGRAT','TEMPHOUS'));
    
       if 'HOMEMRKT' member of (v_emp_roles) then
          dbms_output.put_line('HOMEMRKT');
       end if;
       if 'IMMIGRAT' member of (v_emp_roles) then
          dbms_output.put_line('IMMIGRAT');
       end if;
       if 'INVENTOR' member of (v_emp_roles) then
          dbms_output.put_line('INVENTOR');
       end if;
       if 'TEMPHOUS' member of (v_emp_roles) then
          dbms_output.put_line('TEMPHOUS');
       end if;
    end;
    

    Best regards
    Sayan Malakshinov

Maybe you are looking for

  • How to play my games if I can't use Flash?

    Firefox has blocked Adobe Flash, so I can't access my games on Facebook, Pogo and many other sites. Is there something else we can use or download? Thank you.

  • Drag-and - drop photos in Pages

    How you drag and drop the photos to PHOTO pages.  Before El Capitan iPHOTO and PAGES worked well.

  • Connectivity on a Satellite A200-1 PCMCIA card has 9

    I recently took an A200-1 to 9 of London and currently use it in India. And I realize that I can't use my PCMCIA wireless card since the operators of mobile telephony to internet connectivity. There is no option for the card to slide in.Am I missing

  • Read bytes to lan

    Hello I would like to read the number of bytes sent and received on a specific lan connection? I would like to create a simple network monitor.but I found nothing.Can you help me?I tried to analyze the netstat-e but bytes are not specific to a connec

  • Try to restore the data file, get error 'you don't have permission to save in this location"in Vista

    I am new to Windows Vista, but relatively competent in older versions. I installed the software on my new desktop computer. I am the only user on this computer and I have administrative rights. I installed the software in the Program Files directory.