SAVE
----

A Line-Editor command for writing the SQL Buffer to an operating
system file.

SAV[E] filename [CRE[ATE] | REP[LACE] | APP[END]]

Where:

   filename   The file (including the path) where the buffer
              contents are written.  If no file extension is
              provided, then ".sql" is tacked onto the end of
              the file name.

   CREATE     This is the default setting.  A new file is created
              only if it does not previously exist.

   REPLACE    Overwrites an existing file.

   APPEND     Add the conents of the SQL buffer to the end of
              the specified file.save c:\temp\cra

