Results 1 to 5 of 5

Thread: Types of Table Indexes in SQL

  1. #1
    Join Date
    Dec 2009
    Posts
    59

    Types of Table Indexes in SQL

    Hi All,

    I am learning SQL. I know SQL is query language which is used for the data retrieval. But I want to be aware about the types of indexes in SQL. I don't have any idea about the indexers types. I have referred many SQL book to know about the indexes types. But unfortunately didn't get proper detail. I you have knowledge about the types of SQL indexes, then please let me know that. I am waiting for your reply.

  2. #2
    Join Date
    Jan 2008
    Posts
    1,521

    Re: Types of Table Indexes in SQL

    Basically there are two types of indexers i.e Clustered indexes and Non-clustered indexes. A clustered index used when we want to sorts as well to hold the rows of the SQL table or SQL view in order which is based on the clustered index key. The clustered index is basically applied as a B-tree index structure. This structure has support to the fast retrieval of the data rows, and this retrieval is related to the values of the clustered index key.

  3. #3
    Join Date
    Apr 2008
    Posts
    1,948

    Re: Types of Table Indexes in SQL

    Following are some possible types of indexes:
    • Spatial
    • Index with included columns
    • Nonclustered
    • Indexed views
    • Clustered
    • Filtered
    • Full-text

  4. #4
    Join Date
    May 2008
    Posts
    2,012

    Re: Types of Table Indexes in SQL

    Hi friend,

    The indexes of SQL is divided into Clustered and Non-Clustered indexes. If you want to retrieve from the clustered index then you need following:
    1. Single read for intermediate level
    2. Single read for index root level.
    3. Single read for data page.

  5. #5
    Join Date
    Apr 2008
    Posts
    2,005

    Re: Types of Table Indexes in SQL

    According to my SQL knowledge there are two types of indexes, one i Clustered and another is nonclustered. There are some differences in among these two type of indexes. Below I have mentioned some differences:
    * The leaf level in nonclustered indexes hold one key-pointer pair for the each row in the table.
    * The leaf pages from nonclustered indexes aren't the same as the data pages.
    * The intermediate index level and root of nonclustered indexes hold index keys as well as the page pointers to the other pages of index.

Similar Threads

  1. Search Indexes are broken on Windows 7 Libraries
    By Bejan Daroowala in forum Operating Systems
    Replies: 3
    Last Post: 21-01-2011, 07:53 PM
  2. Linux Mint Update failing to download repository indexes
    By panda dim in forum Operating Systems
    Replies: 4
    Last Post: 03-01-2011, 11:27 PM
  3. Link a Table to another Table to Drop Down In Main Table
    By himeshRES in forum Windows Software
    Replies: 6
    Last Post: 11-12-2010, 02:01 PM
  4. What are the Table Types in MySQL?
    By Dino M in forum Software Development
    Replies: 7
    Last Post: 29-10-2010, 05:18 PM
  5. How to manage SQL Server indexes
    By little-Jacqueline in forum Software Development
    Replies: 5
    Last Post: 14-02-2010, 03:44 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,253,533.74939 seconds with 17 queries