Created
April 9, 2018 19:47
-
-
Save davidhooey/76b238157ea03966e891c4fb640b77e1 to your computer and use it in GitHub Desktop.
List values used for bind variables from single SQL_ID.
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 | |
snap_id, | |
sql_id, | |
name, | |
position, | |
datatype_string, | |
to_char(last_captured,'YYYY-MM-DD HH24:MI:SS') last_captured, | |
value_string | |
from | |
dba_hist_sqlbind | |
where | |
sql_id = 'SQL_ID' | |
and | |
value_string is not null | |
order by | |
snap_id, | |
last_captured, | |
position; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment