Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 » SQL Anywhere Server - SQL Usage » Data import and export » SQL script files

 

Running a SQL script file using the Interactive SQL READ statement

You can also run a SQL script file without loading it into the SQL Statements pane with the Interactive SQL READ statement.

Prérequis

The privileges required depend on the statements being executed.

 Task
  • In the SQL Statements pane, execute a statement like the following example:

    READ 'C:\\LocalTemp\\filename.sql';

    In this statement, C:\LocalTemp\filename.sql is the path, name, and extension of the file. Single quotation marks (as shown) are required only if the path contains spaces. If you use single quotation marks then the backslash characters are escaped by doubling them to prevent translation of escape sequences such as '\n' or '\x'.

Résultat

The SQL script file is run.

 See also