Created
February 28, 2020 00:42
-
-
Save ecormaksin/0ed6c03b86e752228e59f720353082e7 to your computer and use it in GitHub Desktop.
This file contains 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 | |
* | |
--'CREATE OR REPLACE SYNONYM ' || OWNER || '.' || SYNONYM_NAME || ' FOR ' || TABLE_OWNER || '.' || TABLE_NAME || ';' as create_or_replace_synonym | |
FROM ALL_SYNONYMS | |
WHERE | |
OWNER = '<スキーマ名>' | |
ORDER BY | |
SYNONYM_NAME | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment