Click here to Skip to main content
15,891,184 members
Home / Discussions / Database
   

Database

 
QuestionHow to read an database table step by step (with ADO) Pin
harry7988019-May-08 3:35
harry7988019-May-08 3:35 
AnswerRe: How to read an database table step by step (with ADO) Pin
Adeel Chaudhry19-May-08 5:48
Adeel Chaudhry19-May-08 5:48 
AnswerRe: How to read an database table step by step (with ADO) Pin
Mycroft Holmes19-May-08 23:29
professionalMycroft Holmes19-May-08 23:29 
QuestionAppending the value with NULL value Pin
Revathij19-May-08 2:40
Revathij19-May-08 2:40 
AnswerRe: Appending the value with NULL value Pin
J4amieC19-May-08 3:14
J4amieC19-May-08 3:14 
Questionwhat is the use of indexes , when i creating table it already creating one index.......... Pin
Shaik Haneef19-May-08 0:52
Shaik Haneef19-May-08 0:52 
AnswerRe: what is the use of indexes , when i creating table it already creating one index.......... Pin
J4amieC19-May-08 1:22
J4amieC19-May-08 1:22 
AnswerRe: what is the use of indexes , when i creating table it already creating one index.......... [modified] Pin
Vinay Dornala19-May-08 19:31
Vinay Dornala19-May-08 19:31 
Hi,

The clustered index is created on primary key. a table can have only one clustered index the reason the data is arranged in physical order, sql server will maintain index record this will contain all index values mean empid in particular order. When we fire an select query this will arrange the result set in following format and fetch the corresponding record. The proper implementation of clustered index will reduce the query response time.

The disadvantage is All the index values should present in Index Record Table( here is empids)


empid

101 ---------> 101 XXX India
102 ---------> 102 YYY USA
103 ---------> 103 ZZZ UK

Non Clustered index on table will arrange result set in heap sorting order this mean not all index values should not present in Index Record. This will occupies less memory space. We will usually created on Non primary keys.

-.Net Professional.

modified on Tuesday, May 20, 2008 3:10 AM

QuestionUpdate the value with a value in the table Pin
Revathij18-May-08 22:21
Revathij18-May-08 22:21 
AnswerRe: Update the value with a value in the table Pin
Alsvha18-May-08 22:44
Alsvha18-May-08 22:44 
GeneralRe: Update the value with a value in the table Pin
Revathij18-May-08 23:15
Revathij18-May-08 23:15 
QuestionHow can save List in MS-Access Database? Pin
Le@rner18-May-08 22:02
Le@rner18-May-08 22:02 
QuestionGet unique value in INNER JOIN in SQL server 2005 query Pin
salon18-May-08 20:49
salon18-May-08 20:49 
AnswerRe: Get unique value in INNER JOIN in SQL server 2005 query Pin
Alsvha18-May-08 20:54
Alsvha18-May-08 20:54 
AnswerRe: Get unique value in INNER JOIN in SQL server 2005 query Pin
Blue_Boy18-May-08 21:22
Blue_Boy18-May-08 21:22 
AnswerRe: Get unique value in INNER JOIN in SQL server 2005 query Pin
Vinay Dornala19-May-08 19:48
Vinay Dornala19-May-08 19:48 
QuestionAttaching a sql server database Pin
hadad18-May-08 20:19
hadad18-May-08 20:19 
AnswerRe: Attaching a sql server database Pin
Alsvha18-May-08 20:30
Alsvha18-May-08 20:30 
QuestionOCCI's functions which return a STL object lead errors when deconstructing the STL object Pin
eat_union18-May-08 19:44
eat_union18-May-08 19:44 
AnswerRe: OCCI's functions which return a STL object lead errors when deconstructing the STL object Pin
Mike Dimmick19-May-08 2:39
Mike Dimmick19-May-08 2:39 
GeneralRe: OCCI's functions which return a STL object lead errors when deconstructing the STL object Pin
eat_union19-May-08 15:09
eat_union19-May-08 15:09 
QuestionSQL ordering Pin
tom groezer18-May-08 13:29
tom groezer18-May-08 13:29 
AnswerRe: SQL ordering Pin
leckey18-May-08 16:17
leckey18-May-08 16:17 
AnswerRe: SQL ordering Pin
Mycroft Holmes18-May-08 16:28
professionalMycroft Holmes18-May-08 16:28 
AnswerRe: SQL ordering Pin
Blue_Boy18-May-08 17:53
Blue_Boy18-May-08 17:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.