I'm using in memory in Oracle12c, but i have doubt.
if i create this table:
CREATE TABLE default_tab (
id NUMBER
);
i don't specify INMEMORY, my tables is in memory (row storage)?
I was looking about in memory and when you specify INMEMORY, are you using inmemory+column store, is it?
I just create two tables in memory:
1. Column Storage
2. Row Storage
it's possible? and how? examples? i just compare benefits in both models.
Thank you.