I have a huge table with 60 + columns in Sybase ASE, i want to bcp out 12 columns. I was checking syntax on manuals but could not find a way to mention column names.
I would also like to put some logic while retriving data, like:
convt = case when A.isConvertible='0' then 'N' else 'Y' end
Primarily I am looking for something like queryout available in SQL Server bcp.
I can not create objects on Sybase side. It's a source for me I can only do SELECT on it.
