Index on Number & Varchar2

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tillu

    Index on Number & Varchar2

    One of the column in a new table can be ename - varchar2(20) or
    hase_code_ename - number(11) – Hash Code generated by JAVA.
    We are going to create non-unique index on this column as one frequent
    query will have where clause on this column only. Choice is either
    varchar2(20) or number(11).
    1. Is Non-unique index on Number is faster then varchar2? Why?
    2. If Number column has negative values, then will it affect
    performance of Non-unique index on it?
    3. How much space Number & Varchar2 consume? i.e storage space
    difference between number(10) and varchar2(10)

    Sahil
  • Mark D Powell

    #2
    Re: Index on Number & Varchar2

    tosahil@yahoo.c om (Tillu) wrote in message news:<ef9028f5. 0312020043.3f13 d4a6@posting.go ogle.com>...
    One of the column in a new table can be ename - varchar2(20) or
    hase_code_ename - number(11) ? Hash Code generated by JAVA.
    We are going to create non-unique index on this column as one frequent
    query will have where clause on this column only. Choice is either
    varchar2(20) or number(11).
    1. Is Non-unique index on Number is faster then varchar2? Why?
    2. If Number column has negative values, then will it affect
    performance of Non-unique index on it?
    3. How much space Number & Varchar2 consume? i.e storage space
    difference between number(10) and varchar2(10)
    >
    Sahil
    Please do not cross-post. When a newsgroup has sub-groups this
    generally means you should post to one of the sub-groups and not to
    the group. Many news reader services no longer carry
    comp.databases. oracle but provide access to the subgroups only.

    You the column that the customer knows and will query on.

    HTH -- Mark D Powell --

    Comment

    Working...