I have a table that has been created with a NOT INMEMORY column:
CREATE TABLE myTable (
foo VARCHAR2(20 BYTE) NOT NULL,
bar VARCHAR2(20 BYTE) NOT NULL,
baz VARCHAR2(2000 BYTE) NOT NULL,
);
ALTER TABLE myTable INMEMORY;
ALTER TABLE myTable NO INMEMORY ("baz") ;
What I need to do is identify the NO INMEMORY column by querying the static data dictionary views, but it appears all_tables
, all_tab_columns
and similar don't carry this information, and I can't find mention of one in the documentation. Is there a view which does?
You can use the
ALL_TABLES
andV$IM_COLUMN_LEVEL
views to get the information. The information was found on Oracle-Base.