What is an index?

Answers were Sorted based on User's Feedback



What is an index?..

Answer / krishna chaithanya

index allows to search record in a table making the search
meachnism faster and effective

Is This Answer Correct ?    14 Yes 1 No

What is an index?..

Answer / sanjay mukati

Index is a such type of mechanism in which records are
searched and fetched efficiently and fastly in a table. It
is physical address of data.

Two type of index :
A. Cluster Index
B. Noncluster Index

Is This Answer Correct ?    8 Yes 2 No

What is an index?..

Answer / dharmendra k dixit

INDEX are physical address of data, its is same just we
Have indexes in our Book..through this we can make our
search much faster.
in Idle way always try to make Indexes on that Column which
have Integer Value(i.e. Not on text type).
There are two types of Indexes in SQL SEREVR
1. Clusterd Index.(Create automatically if there is a
Primary key on Table)
2. Non Clusterd Index.

Is This Answer Correct ?    7 Yes 2 No

What is an index?..

Answer / mandar kavishwar

Indexes in databases are similar to indexes in books. In a
database,an index allows the database program to find data
in a table without
scanning the entire table.
There are two types of Index in MS-SQL.
1.Clustered
2.Non-Clustered
In MS-SQL Server 2005,
Only 1 Clustered & 249 Non-Clustered Possible.So (Total 250)
But in MS-SQL Server 2008,
Only 1 Clustered & 999 Non-Clustered Possible.(Total 1000)

Is This Answer Correct ?    3 Yes 0 No

What is an index?..

Answer / sovan guha

An index is a physical structure containing pointer to the
data.Index are created in an existing table to locate rows
more efficiently and quickly.

Is This Answer Correct ?    2 Yes 1 No

What is an index?..

Answer / aman popli

Indexes in SQL Server are similar to the indexes in books.
They help SQL Server retrieve
the data quickly.

There are clustered and nonclustered indexes.
A clustered index is a special type of index
that reorders the way in which records in the table are
physically stored. Therefore table
can have only one clustered index. The leaf nodes of a
clustered index contain the data
pages.
A nonclustered index is a special type of index in which
the logical order of the index
does not match the physical stored order of the rows on
disk. The leaf node of a
nonclustered index does not consist of the data pages.
Instead, the leaf nodes contain
index rows.

Is This Answer Correct ?    3 Yes 2 No

What is an index?..

Answer / shrikant kalwade

Index means we create unique id to record in to the table.

primary key is example of index; using proper index we
search perticular record from database fast and accurate.

Is This Answer Correct ?    3 Yes 3 No

What is an index?..

Answer / nalini

index is a physical address of the data.Index having 2
types.
1) cluster index
2)nonclustered index

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More SQL Server Interview Questions

How many types of local tables are there in sql server?

0 Answers  


What are the differences in Clustering in SQL Server 2005 and 2008 or 2008 R2?

0 Answers  


What do you understand by recursive stored procedures?

0 Answers  


how to find number of columns in a table in sql server 2000 and 2005 also

16 Answers   Virtusa,


What is raiseerror? What is raiseerror?

0 Answers  






1.what are diff types of joins , and explain diff between cross join and full outer join 2.diff types of views 3. Diff types of index 4. What is diff b/w stores procedure and function procedure 5.diff between double and int in SQL 6.diff between char and varchar in SQL. 7.Oracle or SQL whice you will preferred and why.

0 Answers   Aptroid,


what are questions asked in TCS for database tester (sqlserver)for 2-3 exp?

0 Answers   ABC, TCS,


What is logon trigger?

0 Answers  


What happens if strings are casted into wrong code pages in ms sql server?

0 Answers  


What the difference between UNION and UNIONALL?

0 Answers   HCL,


What is an etl file?

0 Answers  


Using the customer, and order table in northwind database, please write a query to produce xml?

0 Answers  


Categories