5
Reply

how many type of indexing in database?

Praveen Moosad

Praveen Moosad

Jul 17, 2009
14.1k
0

    There are Two Types of Indexing present over , Clustered Index and Non-Clustered Index

    Manoj Kumar
    January 03, 2017
    0

    http://technet.microsoft.com/en-us/library/ms175049.aspx

    Purushottam Rathore
    July 24, 2009
    0

    There are five types of indexes: unique and non-unique indexes, and clustered and non-clustered indexes, and system generated block indexes for multidimensional clustered (MDC) tables .

    Naresh Kanth
    July 20, 2009
    0

    A database Index is a data structure that improves the speed of operation on a database.

    Index  can be classified as clustered or non-clustered.

    1.Clustered Index

    1. The leaf level of a clustered index is the actual
      data
    2. the logical order of the index matches the physical stored
      order of the rows on disk.
    3. There can be only one Clustered index for a table.
    4. usually made on the primary key.

     2.Non-clustered Index

    1. the leaf level is actually a pointer to the data in rows
    2. the logical order of the index does not match the physical
      stored order of the rows on disk
    3. There can be only 249 Clustered index for a table
    4. usually made on the any key(Unique Key or any other)

    PEEYUSH MISHRA
    July 20, 2009
    0

    thier are two type of indexing in dtabase cluster or noncluster indexing in database

    Praveen Moosad
    July 17, 2009
    0