‎2007 Jun 06 10:08 AM
Which of the following is not a true statement in regard to a hashed internal table type?
A: Its key must always be UNIQUE.
B: May only be accessed by its key.
C: Response time for accessing a row depends on the number of entries in the table.
😧 Declared using internal table type HASHED TABLE.
‎2007 Jun 06 10:09 AM
‎2007 Jun 06 10:22 AM
Hi,
Ans : A.
Hashed tables have no linear index. You can only access a hashed table using its key. The
response time is independent of the number of table entries, and is constant, since the system
access the table entries using a hash algorithm. The key of a hashed table must be unique.
When you define the table, you must specify the key as UNIQUE.
Regards,
Bhaskar