Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fatih-keles/6fdb17fb9901532c549ded278b5751f2 to your computer and use it in GitHub Desktop.
Save fatih-keles/6fdb17fb9901532c549ded278b5751f2 to your computer and use it in GitHub Desktop.
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
insert into DEMO_TABLE (t_data) values ('test data 99');
update DEMO_TABLE
set t_data = 'test data X'
where t_id <= 3;
commit;
select * from flashback_transaction_query
where 1=1
and logon_user = 'ADMIN'
and table_name = 'DEMO_TABLE';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment