Is there a way to know total transactions for a year in a database?
HiManagement wants to know the number of transactions in a database. Is there a surefire way to know that without doing audit on all transactions?
I found this script online, but don't think it is right.
select 'DATABASE', 'Total transactions in last 24 Hrs',
to_char(max(next_change#) - min(first_change#),'9,999,999,999')
from v$log_history;
to_char(max(next_change#) - min(first_change#),'9,999,999,999')
from v$log_history;
I really appreciate your quick response.
Thanks.
Debasis
0