SQL Workbench Plus Wiki
SQL Workbench Plus - extension of SQLWorkbench
Status: Pre-Alpha
Brought to you by:
framay
SqlCommand WbExecute let you execute Javascript code or file with built-in Javascript engine Nashorn. It is also possible to execute a SQL file or code depending on the connected database system.
-- Executing file check_db.js WbExecute file=check_db.js; -- Executing code only for Oracle database, omitting for other database systems WbExecute -lang=sql -isDBMS=oracle -code=alter table T_SCHEDULER modify PROD_DATE_STR not null;