Which feature of database is used for having data for EC Engine for different users in same table?
-
Static Table
-
Partition Table
-
In-Memory Cache Table
-
Hash Tables
B
Correct answer
Explanation
Partition tables allow a single logical table to be divided into physical segments that can be stored separately. This feature is commonly used in multi-tenant applications where different users' data needs to be isolated while maintaining a single table structure. Static tables store data without segmentation, in-memory cache tables optimize read performance, and hash tables use a different indexing mechanism altogether.