Last active
March 6, 2022 19:29
-
-
Save dincosman/4c4add24a8c3b66a135ac8b1052d6a68 to your computer and use it in GitHub Desktop.
The query to detect required mdrt_# tables
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
| SQL> SELECT SM.* | |
| FROM ALL_TABLES T, ALL_SDO_INDEX_METADATA SM | |
| WHERE T.TABLE_NAME LIKE 'MDRT%' AND T.TABLE_NAME = SM.SDO_INDEX_TABLE | |
| ORDER BY SDO_INDEX_OWNER; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment