Last active
March 19, 2017 20:45
Batch script to run sqlplus from VS Code for Windows
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
rem Setup sqlplus environment for Unicode | |
rem Run this before running scripts that contain multibyte characters | |
rem See http://www.sqlsnippets.com/en/topic-13434.html for details | |
set NLS_LANG=.AL32UTF8 | |
chcp 65001 | |
rem show raw error messages from sqlplus | |
rem echo exit | echo show errors | sqlplus %1 %2 | |
rem get errors that can be parsed with problemMatcher | |
echo exit | echo @_show_errors.sql | sqlplus %1 %2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment