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: 

Internal table for huge data

Former Member
0 Kudos

HI,

I have to populate internal table with huge number of data.

What type of internal is suitable for this?

Regards,

Ram

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

I think it would be better if you use Hashed Tables. It's faster and good for large amount of records since it uses key fields in searching.

5 REPLIES 5

former_member181962
Active Contributor
0 Kudos

Hi ram,

What is the amount of data that you have?

Regards,

ravi Kanth

0 Kudos

Hi Ravi,

thanks for your reply.

I have around in 8000 records in the table.

Can I go for Sorted or Hashed table?

0 Kudos

I remeber I had around 120,000 records when I was a code for material master Migration.. so I guess ordinary tables should be fine

0 Kudos

Hi ram,

As long as you do not have any complex read functionalities, or nested loops, it should be fine to use the normal internal table.

Regards,

Ravi

Former Member
0 Kudos

Hi,

I think it would be better if you use Hashed Tables. It's faster and good for large amount of records since it uses key fields in searching.