Script to run other scripts in sqldeveloper

oracle, oracle-sqldeveloper

Solution

The SQL*Plus synthax works (with `run script`):

@script arg1 arg2 ... argn

or

@"/path/to/directory/script" arg1 arg2 ... argn

Problem

I have a number of scripts used to build a database. These need to be executed in a certain order. Is it possible to create a script to run other scripts in SQL Developer (1.5.3)? I know I can do this with sqlplus, but I was hoping there's a similar ability I just don't know about.

Original source