Dear friends,
I did enable flash technology for our production database 18c.
when i executed following sql statement
-- for getting last 15 minute data
select * from aa AS OF TIMESTAMP TO_DATE('12/09/2020 16:15:00','DD/MM/YYYY HH24:MI:SS')
I get error
ORA-01466: unable to read data - table definition has changed
select current_scn from v$database
--
11130364665
but when execute the query
select * from aa AS OF scn (11130364665 - 100000000)
I can get the correct result set.
why ???
Not : select scn_to_timestamp(33330364665 - 100000000) from dual
resulted in wrong date 12.06.2052 19:17:51,000000000
regards
siya