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
WITH TableList AS | |
(SELECT object_id, | |
OWNER, | |
object_name | |
FROM dba_objects | |
WHERE object_type='TABLE' | |
AND object_name = UPPER(:TNAME) ) , | |
HistTableInfo AS | |
(SELECT TableList.OWNER, | |
OBJECT_NAME |
OlderNewer