cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How can one get teh columns headers (names) in sybase IQ extraction

Former Member
0 Kudos
1,512

The following when run with dbisql produces the desired results:

select* from sysobjects;

OUTPUT TO 111 FORMAT ASCII QUOTE ''DELIMITED BY '|'

But if I want to have the column name on the top of the results, what should be done?
View Entire Topic
Gisung
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

Try to test with the following query.

select* from sysobjects;

OUTPUT TO 111 FORMAT ASCII QUOTE ''DELIMITED BY '|' WITH COLUMN NAMES;

Best Regards,
Gi-Sung Jang