Click here to Skip to main content
15,886,037 members
Home / Discussions / Database
   

Database

 
AnswerRe: Description for various tables elements Pin
Jwalant Natvarlal Soneji7-Oct-07 21:36
Jwalant Natvarlal Soneji7-Oct-07 21:36 
QuestionStored Procedures Pin
kibromg5-Oct-07 4:12
kibromg5-Oct-07 4:12 
AnswerRe: Stored Procedures Pin
Michael Potter5-Oct-07 4:39
Michael Potter5-Oct-07 4:39 
GeneralRe: Stored Procedures Pin
kibromg5-Oct-07 4:53
kibromg5-Oct-07 4:53 
GeneralRe: Stored Procedures Pin
Michael Potter5-Oct-07 5:36
Michael Potter5-Oct-07 5:36 
GeneralRe: Stored Procedures Pin
kibromg5-Oct-07 6:05
kibromg5-Oct-07 6:05 
GeneralRe: Stored Procedures Pin
Michael Potter5-Oct-07 8:50
Michael Potter5-Oct-07 8:50 
GeneralRe: Stored Procedures Pin
GuyThiebaut5-Oct-07 9:07
professionalGuyThiebaut5-Oct-07 9:07 
Indexing a SQL database is quite a topic in itself.

Read up on it - google it and you will find lots of useful information.

One aspect with SQL indexes that is important to understand is whether, or not, to make the indexes clustered indexes.

Creating clustered indexes can massively speed up data access and it can also create a massive slowing down of data access.

Without going into too much detail, and without being 100% accurate, clustering a table means that the last node on the index is the data and not a pointer(as is the case in non-clustered indexes).
This means that if you have a table that has very few updates on it then there is a good chance that a clustered index is what you want.
A table with a lot of updates is generally not a candidate for clustering; as when the index is written a lot of data may have to be moved around on the disk.
Also you can only have 1 clustered index per table.

The above is just to give you a bit of an idea about what indexing in SQL entails.

Understanding indexes is so important for optimising data access that you will be doing yourself a real favour to read up on it.

I hope this helps...





You always pass failure on the way to success.

QuestionTool to generate data Pin
matthias s.5-Oct-07 3:16
matthias s.5-Oct-07 3:16 
QuestionTO STORE IMAGES FROM FOLDER TO DATA BASE Pin
kishoregani5-Oct-07 2:39
kishoregani5-Oct-07 2:39 
AnswerRe: TO STORE IMAGES FROM FOLDER TO DATA BASE Pin
Christian Graus5-Oct-07 2:52
protectorChristian Graus5-Oct-07 2:52 
AnswerRe: TO STORE IMAGES FROM FOLDER TO DATA BASE Pin
Vasudevan Deepak Kumar5-Oct-07 3:39
Vasudevan Deepak Kumar5-Oct-07 3:39 
AnswerRe: TO STORE IMAGES FROM FOLDER TO DATA BASE Pin
Paul Conrad7-Oct-07 11:09
professionalPaul Conrad7-Oct-07 11:09 
QuestionUpdating one Dataset from another Dataset. Pin
Hemant.Kamalakar5-Oct-07 2:11
Hemant.Kamalakar5-Oct-07 2:11 
AnswerRe: Updating one Dataset from another Dataset. Pin
Kschuler5-Oct-07 6:18
Kschuler5-Oct-07 6:18 
GeneralRe: Updating one Dataset from another Dataset. Pin
Hemant.Kamalakar5-Oct-07 19:30
Hemant.Kamalakar5-Oct-07 19:30 
GeneralRe: Updating one Dataset from another Dataset. Pin
Hemant.Kamalakar15-Oct-07 2:05
Hemant.Kamalakar15-Oct-07 2:05 
GeneralRe: Updating one Dataset from another Dataset. Pin
Kschuler15-Oct-07 3:15
Kschuler15-Oct-07 3:15 
Questionhow to update a sum value from join tables? Pin
Eunice (VB junior)5-Oct-07 0:07
Eunice (VB junior)5-Oct-07 0:07 
AnswerRe: how to update a sum value from join tables? Pin
Joe5-Oct-07 1:00
Joe5-Oct-07 1:00 
GeneralRe: how to update a sum value from join tables? Pin
Eunice (VB junior)8-Oct-07 16:18
Eunice (VB junior)8-Oct-07 16:18 
AnswerRe: how to update a sum value from join tables? Pin
pmarfleet5-Oct-07 1:02
pmarfleet5-Oct-07 1:02 
GeneralRe: how to update a sum value from join tables? Pin
Eunice (VB junior)8-Oct-07 16:20
Eunice (VB junior)8-Oct-07 16:20 
Questiondate format Pin
Sonia Gupta4-Oct-07 23:19
Sonia Gupta4-Oct-07 23:19 
AnswerRe: date format Pin
N a v a n e e t h5-Oct-07 0:29
N a v a n e e t h5-Oct-07 0:29 

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.