Created
May 14, 2020 09:59
-
-
Save wingkwong/363f4034e023479f524ed5817cda70e0 to your computer and use it in GitHub Desktop.
Fast Generation of CSV from Oracle Database
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
set markup csv on | |
set feedback off | |
set termout off | |
spool 'EXPORTED_RESULT.csv'; | |
SELECT * FROM FOO_TABLE; | |
spool off; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment