Query:
select partition_name
from all_tab_partitions
where high_value < sysdate-7;
Error:
[Error] Execution (9: 51): ORA-00997: illegal use of LONG datatype
I have already tried to_date
and trunc
but that didn't work.
Query:
select partition_name
from all_tab_partitions
where high_value < sysdate-7;
Error:
[Error] Execution (9: 51): ORA-00997: illegal use of LONG datatype
I have already tried to_date
and trunc
but that didn't work.