Dimemsion tables in memsql

while creating dimension tables in memsql…its better to create them as row stores or column stores?

Start with columnstore. Rowstores are only needed if you need very high selectivity low latency queries when hash joins are slower than nested loop joins

1 Like

Thanks Nikita… appreciate your inputs