Skip to content

Instantly share code, notes, and snippets.

@felclef
Created November 11, 2011 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felclef/1358607 to your computer and use it in GitHub Desktop.
Save felclef/1358607 to your computer and use it in GitHub Desktop.
Sublime Text Editor - build for using SQL scripts with Oracle SQL*Plus (change the dummy for your conn)
{
"cmd": ["sqlplus", "dummy/dummy@local", "@$file"],
"selector": "source.sql",
"encoding": "cp1252"
}
@danrasmuson
Copy link

This is what I put in....

{
"cmd": ["C:\oraclexe\app\oracle\product\10.2.0\server\BIN\sqlplus.exe", "Zoo Zoo@//localhost:1521/xe", "@$file"],
"selector": "source.sql",
"encoding": "cp1252"
}

and all I get is the sql intro
"""
SQL*Plus: Release 10.2.0.1.0 - Production on Mon Nov 18 13:10:47 2013

Copyright (c) 1982, 2005, Oracle. All rights reserved.
"""

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment