hello,
i have a table in oracle 11.2 without date column.
the table size is about 350Gb, it contains blob data.
the table has no primary key, no foreign key. only one unique index.
all columns are update by application, there is no sequence.
is there any way to sort rows by time, because i want to delete older data.
SQL> describe owner.table_name
Name Type Nullable Default Comments
-------- ------------ -------- ------- --------
CLMN1 VARCHAR2(9) '000'
CLMN2 VARCHAR2(6) ' '
CLMN3 VARCHAR2(96) ' '
CLMN4 NUMBER(10) 0
CLMN5 VARCHAR2(30) ' '
CLMN6 NUMBER(5) 0
CLMN7 BLOB Y
BR Flag