Sybase: Isql with the -b OptionThe -b option will supress the column headers from the isql output. bash-2.03$ isql -S myServer -D myDatabase -U myUser -P myPass 1> select "Heading" = "Without -b" 2> go Heading ---------- Without -b (1 row affected) 1> quit bash-2.03$ isql -S myServer -D myDatabase -U myUser -P myPass -b 1> select "Heading" = "With -b" 2> go With -b (1 row affected) 1> quit bash-2.03$
|