Created
October 6, 2016 17:14
-
-
Save dotmaik1/f3a3d3ace0db2e2c90089db6499c160e to your computer and use it in GitHub Desktop.
table transaction report Instant DBA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set lines 200 | |
| SELECT TABLE_OWNER, | |
| TABLE_NAME, | |
| INSERTS, | |
| UPDATES, | |
| DELETES, | |
| TO_CHAR(TIMESTAMP,'DD-MON-YY HH24:MI:SS') TIMESTAMP, | |
| TRUNCATED, | |
| DROP_SEGMENTS | |
| FROM ALL_TAB_MODIFICATIONS | |
| order by INSERTS desc, | |
| UPDATES desc, | |
| DELETES desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment