INput
INput filename
This command enables the user to execute a number of commands from a script file rather than manually typing them all into isql
at the prompt.The script may contain any mix of DDL and/or DDL commands, along with isql
commands to redirect output, change options, etc.
SQL> shell; $ cat test.sql drop table fred; commit; $ exit; SQL> show table fred; A INTEGER Nullable B INTEGER Not Null SQL> input test.sql; SQL> show table fred; There is no table FRED in this database