INSERT vs. INCLUDE (INSERT command)
INSERT
is
a newer, more powerful and flexible alternative to INCLUDE
. Files included with INCLUDE
must always adhere to batch syntax
rules, and command processing stops when the first error in an included
file is encountered. You can effectively duplicate the INCLUDE
behavior with SYNTAX=BATCH
and ERROR=STOP
on the INSERT
command.