‎2007 Aug 30 10:14 AM
can any one elobrate the differences among them with simple examples.
why hashed table serch is faster...what happens if list is not sorted...explain the scenarios best suitable ..when we go for what kinda tables...
‎2007 Aug 30 10:17 AM
Hi,
have a look at the below links...
http://www.sap-img.com/abap/what-are-different-types-of-internal-tables-and-their-usage.htm
Reward points if u find useful..
Regards,
Nagaraj
‎2007 Aug 30 10:19 AM
<a href="http://www.sap-img.com/abap/what-are-different-types-of-internal-tables-and-their-usage.htm">refer this link for details</a>
<a href="http://www.geekinterview.com/question_details/1498">also refer this</a>
<a href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm">also this- SAP Help</a>
regards,
srinivas
‎2007 Aug 30 10:42 AM
hi,
Standard table : it uses linear search so it will take long time if it needs to sort bulk amount of records.....therefore standard tables are used if they have less number of records.
Sorted Tables : it is used when huge number of data needs to be sorted..if we use sorted tables .that will improve performance.
Hashtables : it uses Hashed algorithms. So the search is very fast if we use hashed tables.
Reward with points if helpful.