Continuing a BTEQ Command - Basic Teradata Query

Basic Teradata Query Reference

Product
Basic Teradata Query
Release Number
16.00
Published
November 2016
Language
English (United States)
Last Update
2018-04-25
dita:mapPath
hyz1479325149183.ditamap
dita:ditavalPath
Audience_PDF_include.ditaval
dita:id
B035-2414
lifecycle
previous
Product Category
Teradata Tools and Utilities

Continue a BTEQ command from one line to the next by including a dash character 
(-) as the last character of the line to be continued (space characters can follow the dash character). For example, the following command generates a single heading:

.SET HEADING 'This is an -
example of a continued -
heading'
This is an example of a continued heading

The continuation character cannot be used in conjunction with an ANSI-style comment statement.

The continuation character can also be used to continue a quoted string embedded in a Teradata SQL request. space characters can follow the continuation character.

For example, the following SQL request:

SELECT 'aaa -
bbb';

would be treated by BTEQ as:

SELECT 'aaa bbb';