cancel
Showing results for 
Search instead for 
Did you mean: 

Why do you create a row store instead of a column store table?

parthkosarkar1
Explorer
0 Kudos

1. You create a new table definition using the ABAP Dictionary and maintain the database-specific technical settings. Why do you create a row store instead of a column store table?

A.To limit the unpacking and reconstruction of rows

B.To allow creation of a full-text index

C.To limit the need of indexes

D.To limit the data footprint

what would be the answer of this and why can any one help me with this ?

View Entire Topic
jhodel18
Active Contributor

The answer is A, because a row store table all the columns for the row hence you don't need to unpack and reconstruct the columns of the rows. The other choices are describing a column store table.

parthkosarkar1
Explorer
0 Kudos

Thanks jhodel 🙂

clear with my point 🙂