Created
June 25, 2019 07:33
-
-
Save vivainio/01dc2399e829abc3ebfba4837378cf9c 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 * from | |
( | |
select ALL_TAB_COLUMNS.COLUMN_NAME as COLUMN_NAME, ALL_TAB_COLUMNS.TABLE_NAME as TABLE_NAME, ALL_TAB_COLUMNS.DATA_TYPE as DATA_TYPE, JOINED_TABLE_NAME.TABLE_NAME as TABLE_NAME_TABLE_NAME | |
from ALL_TAB_COLUMNS | |
LEFT OUTER join ALL_TABLES JOINED_TABLE_NAME on ALL_TAB_COLUMNS.TABLE_NAME=JOINED_TABLE_NAME.TABLE_NAME | |
) rootq | |
order by 1 ASC | |
offset 5000 rows fetch next 2000 rows only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment