In oracle DB we can mark a table to allow archiving using this SQL
create table table1 (col1 number, col2 char(200)) row archival;
and we can archive/de-archive columns using the SQL
update table1 set ora_archive_state=0 where col2='test2';
update table1 set ora_archive_state=1 where col2='test2';
But before i do all of that , is there any way that i can check if the table is already marked for archiving or not ?
You can check for the existence of the hidden column, eg
or if you want to go geeky its the 48th bit on the PROPERTY column in SYS.TAB$