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. An index in a database is a list of values in a table with the storage locations of rows in the table that contain each value. Indexes can be created on either a single column or a combination of columns in a table and are implemented in the form of B-trees. An index contains an entry with one or more columns (the search key) from each row in a table. A B-tree is sorted on the search key, and can be searched efficiently on any leading subset of the search key. For example, an index on columns A, B, C can be searched efficiently on A, on A, B, and A, B, C.
marquee
LATEST DOTNET INTERVIEW QUESTIONS
Sunday, 24 November 2013
What is Index? It’s purpose?
Subscribe to:
Post Comments (Atom)
Popular Posts
-
ASP.NET QUESTIONS 1) On which of the operating system below ASP.NET can run? a) Windows XP Professional ...
-
T-SQL Queries 2 tables Employee Phone empid empname salary mgrid empid phnumber Select all employees...
-
76) Select the control which does not have any visible interface a) Datalist b) DropdownList ...
-
1. What is a Web service ? How it is different from remoting? 2. Diiferent life cycle events phases in asp.net web form. 3. OOPS conc...
-
56) Which of the following is true ? a) IsPostBack is a method of System.UI.Web.Page class b) IsPostBa...
-
Interview Questions .NET Windows Forms 1) Write a simple Windows Forms MessageBox statement? 2) Can you write a class witho...
-
126) Which of the following denote ways to manage state in an ASP.Net Application? a) Session objects b)...
-
Asp.net Page Life cycle This is a transcript of a programming manual, to refresh my memory, and it’s always good to RTFM. As a contro...
-
1. What is caching.? 2. Types of cahing? 3. What is cache Block? 4. What are indexers? 5. What is difference between Namespace and assembl...
-
21) To set page title dynamically in ASP.NET which of the following is used ? a) None of the above b) ...
No comments:
Post a Comment