1 闪回查询其他schema下表
grant select,flashback on schema.table_name to username;
这种授权可用于 select ..................... as of timestamp to_timestamp()查询
2 闪回操作
grant execute on dbms_flashback to username
这种授权不用于上面的select 查询,但是可以用于以下闪回查询(sqlplus 中用授权的username来执行执行):execute sys.DBMS_FLASHBACK.ENABLE_AT_TIME(SYSDATE-10/1440 ) ----闪回10分钟前 再执行 select * from table_name来查询数据