SET CSVHEADING

From Lianjapedia
Revision as of 07:31, 29 August 2013 by Yvonne.milne (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Purpose

Enable or disable the inclusion of field name headings in COPY TO ... TYPE CSV exports

Syntax

SET CSVHEADING ON | OFF | (<expL>)

See Also

APPEND FROM, COPY, COPY FILE, COPY STRUCTURE, COPY STRUCTURE EXTENDED, DECRYPT, ENCRYPT, SET FILTER, SET XMLFORMAT

Description

The SET CSVHEADING set command works in conjunction with the COPY TO ... TYPE CSV command. If SET CSVHEADING is ON (default), the first line of the csv text file created will be the field names. If SET CSVHEADING is OFF, the field names will be omitted.

Example

open database southwind
use products
set csvheading off
copy to exportproducts type CSV delimited with '|'
type exportproducts.csv