I'm trying to export data from SQL Server to flat files.
The data includes a bit column 0/1 and I need it as is but it get exported as Boolean TRUE/FALSE which is causing ETL bulk insert to fail.
I tried changing the data mapping to single byte integer, float, numeric, string, text hoping to get a simple 0/1 but nothing worked.
Any pointers on how to solve this are appreciated (other than replacing text within the resulted file).