DBMS Indexing: The Basic Concept

preview_player
Показать описание
A quick introduction to the concept of indexing in RDBMSs
Рекомендации по теме
Комментарии
Автор

Indexes are used to quickly locate data without having to search every row in a database table every
time a database table is accessed. An index is a copy of selected columns of data from a table, called a database key that can be searched very efficiently that also includes a low-level disk block address or direct link to the complete row of data it was copied from.

JollyAZ
Автор

The analogy helped me a lot to understand and now I don't think I will forget this concept. Thanks a lot!

Vikasslytherine
Автор

Thank you Brian, great intro and great description. Very helpful!

innate-videos
Автор

Wow that was awsome....explained with such a simple example..thanks a lot

ShabnamKhan-cjzc
Автор

nice video. tomorrow is my exam on web designing, circuit, history of computer technology, programming and database. I didn't know anything about database management. the video really helped.
thanks

ananyaimtiazhussain
Автор

I use many Flat Files, with fixed-length records, and "text" fields, working in tandem with Perl SDBM binary files of key/value pairs tied to Perl program hash tables. These key/value pairs offer persistent, instantaneous, random access to Flat File records. For random access, the file pointer is first set to a single record location byte offset, where the offset is the number of bytes to seek to from either TOP of file or END of file. Then the record is read into memory. Once in memory, the contents of the record can be changed/modified and written back out to the Flat File, overwriting the existing data stored in that record.

erichansen
Автор

thank you so much, I have a test tomorrow and I didn't know why not just sort instead of indexing.. hopefully I'll go good

xxibmehrab
Автор

thank you so much for this valuable helpful video

mohammadahmedragab
Автор

Thank you for explaining this 🙏 Helped me

mamedk
Автор

Thank you for an interesting intoro to the indexing concept.

b.petrushchak
Автор

Thanks @Brian! A good intro to indexing.

hansmartinhanken
Автор

Great explanation, very clear, just what I was looking for right now. Thanks a lot

mau_lopez
Автор

Excellent explanation of Index. Thanks. 

TurtlGAmnG
Автор

Very well explained, thank you very much.

chidinwaka
Автор

Thanks for the explanation. The only con I see is that to generate an index you first need to scan the whole thing. But I guess its pro as that you only have to scan once.

gchehabayesa
Автор

Thanks for the video!! It was very helpful!

juandefelix
Автор

Thank you, very nice example and explanation

haowenxu
Автор

What I've understood is that an index is used to find specific records of data quickly. The index is a separate, independent data structure that you can look through regarding a specific value, such as the company number in your example. The index structure for all the company numbers appears to be ordered. This way, someone can go through the values in order so they can quickly find the specific company number they are looking for. Once they've found the number, the index will point to the specific record in the database that it is referring to. The index structure is also nice because you can easily realize when you've exhausted your search for the company number you're looking for because if you stumble upon a different value, that means your search is over.

baatar
Автор

Create index not give that much fast...in my table i use more
AS is it slow the execution time ? if this is the pblm give any suggesstion

AgriAasan
Автор

x1.5 speed is a must for this one. Good video though! thanks man.

benripka