Created
May 9, 2013 22:21
-
-
Save chris-martin/5551060 to your computer and use it in GitHub Desktop.
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
select count(*) as numtimes, sql.sql_text | |
from v$open_cursor c, v$sql sql | |
where c.sql_id=sql.sql_id and c.user_name = 'username' group by sql.sql_text; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment