Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How do Indexes work?

Former Member
0 Kudos
133

Hi All,

I was curious about exactly how do indexes work? Is the data in the table stored in the index format somewhere for quick retrieval?

Regards,

Karthik

1 ACCEPTED SOLUTION

Former Member
0 Kudos
106

Actally , its works on concept of Bookmark.That is fields on which indexes r created help in searching that records fastly.

8 REPLIES 8

Former Member
0 Kudos
106

When we create an index with 2 fields , it is assumed that there exists a table with those 2 fields only ignoring the rest of the fields in the main table which makes the selct statement faster..

0 Kudos
106

Hey Chandra,

Thanks for the quick response. Is there anyway I can know where can I see that assumed table which is created?

Karthik

former_member235056
Active Contributor
0 Kudos
106

Hi,

Indexes are used alongwith the where condition in select statement to speed up the data fetches and at the same time reducing load on database by shorting out the no. of records as per requirements and prevents unnecessary records to come in picture.

Pls reward points.

Regards,

Ameet

Former Member
0 Kudos
106

Hi,

An insex is copy of one or more columns sorted in ascending order.

let, select f1 f2 from t1 where f1 = 'A' and f2 = 'B'. ( f1, f2 belongs to index)

Now when this statement is executed,system will find the record from index where f1 = A and f2 = B and get the corresponding row number and go to the corresponding row to the database.

As a result searching will be fast.

Reward points if helpful.

Regards.

Srikanta Gope

0 Kudos
106

Well,

I think I know all the funda which you all are so patiently trying to explain. I just wanted to know whether I can see this sorted data of few fields of a table anywhere in SAP.

Regards,

Karthik

0 Kudos
106

Hi Karthik,,

The created index is itself acts as a table..but not sure if it is stored anywhere with the sorted data...

0 Kudos
106

Hi Chandra,

Do you have any documentation on how secondary indexes work?

Regards,

Karthik

Former Member
0 Kudos
107

Actally , its works on concept of Bookmark.That is fields on which indexes r created help in searching that records fastly.