Language definition and execution utilities for Oracle PL/SQL files.
It is based on the bundle http://code.google.com/p/oracle-textmate-bundle/
- Download and extract package. Rename folder from Oracle-master to OracleSQL and place in C:\Users\...\AppData\Roaming\Sublime Text 2\Packages\
 - Install keymaps for the commands (see Example.sublime-keymap for my preferred keys)
 
To execute your PL/SQL source on your schema with ST2 Build command, you have to create a .sublime-build in your ST2 Users folder file containing something like:
{
    "target": "oracle_exec",
    "selector": "source.plsql.oracle",
    "variants":
    [
        {
            "name": "SCHEMA 1",
            "dsn": "USERNAME/PASSWORD@SCHEMANAME1"
        },
        {
            "name": "SCHEMA 2",
            "dsn": "USERNAME/PASSWORD@SCHEMANAME2"
        }
    ]
}