﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Administration / SQL Server 7,2000  / BCP produces garbled output / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sat, 18 May 2013 03:50:13 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: BCP produces garbled output</title><link>http://www.sqlservercentral.com/Forums/Topic1409578-5-1.aspx</link><description>Update: I am now using Isnull for all data of type numeric and money.  I'm still getting garbled output, which begins when I add to my select list a particular field of type char (which is NULL in my table).However, if I comment out a bunch of fields early in the select list and retain that particular field of type char, the output looks fine!  :w00t:So apparently BCP does have a maximum length per line issue.  Does anyone have an idea how to tell BCP to accept a real wide line of output?thanks,</description><pubDate>Mon, 21 Jan 2013 09:48:21 GMT</pubDate><dc:creator>cafescott</dc:creator></item><item><title>RE: BCP produces garbled output</title><link>http://www.sqlservercentral.com/Forums/Topic1409578-5-1.aspx</link><description>The fields where BCP begins to fail are numeric, with null values.  I have found if I change the view to use "IsNull", that BCP works fine with it.  In other words, select Field1, Field2...., IsNull(Field20, 0.0) as Field20, ...I don't know why BCP doesn't like null values in numeric fields.  However, it seems that I have a work-around to this matter.</description><pubDate>Mon, 21 Jan 2013 08:46:01 GMT</pubDate><dc:creator>cafescott</dc:creator></item><item><title>RE: BCP produces garbled output</title><link>http://www.sqlservercentral.com/Forums/Topic1409578-5-1.aspx</link><description>Update: I can add additional, non-null fields after the point where the data is garbled.  This indicates that it isn't a field number limit problem.  BCP just doesn't seem to like a group of four null fields that show up fine (i.e., as "NULL") in SSMS.</description><pubDate>Mon, 21 Jan 2013 08:35:23 GMT</pubDate><dc:creator>cafescott</dc:creator></item><item><title>BCP produces garbled output</title><link>http://www.sqlservercentral.com/Forums/Topic1409578-5-1.aspx</link><description>Hello,I have created a stored procedure that produces output for specific tables in our database.  The output for one of the files is garbled.  I have to have it fixed.The strategy I'm employing is to first create a view that contains a select statement that chooses all the fields in the table; i.e., select field1, field2, field3, etc.  Then my routine calls BCP by selecting from the view.  My command resembles this:bcp "select * from Database.OurSchema.BCP_View" queryout "c:\temp\bcp\MyTable.CSV"  -SSQLServerName -t"|" -r"" -T -c Note: the "r" parameter is actually: -r Quote Backslash n QuoteI have been painstakingly adding one field at a time to the view until the output becomes garbled.  When it does, I skip that field and try to add the one following.  The same result occurs; the output is garbled.This suggests that there is a limit to the number of fields BCP can be used for.  Add one more to the limit and you get junk.This table has a lot of null data.  However, It is fine with null data up until it reaches the point where the data becomes garbled.  Also, there is no unusual characters in string fields of this table at all.I've been searching for an option to fix this matter without success.  Does anyone have an idea how to use BCP to produce non-garbled output for a table with many fields?thanks,</description><pubDate>Mon, 21 Jan 2013 08:20:41 GMT</pubDate><dc:creator>cafescott</dc:creator></item></channel></rss>