This article discusses the behavior of the BCP utility when extracting data from SQL Server tables to files and more specifically to CSV files.
Example: Description
Imagine that you have the below table:
As you can see, records 2 and 3 contain null values.
Then you export the table contents to CSV using BPC:
bcp "SELECT [code],[description],[price] FROM [TestDB1].[dbo].[product]" queryout "c:\tmptestExtract.csv" -c -C 1253 -t ; -S ".SQL2K14" -T
Example: Output 1
As you can see on the above screenshot, the output seems correct. The records’ NULL values have been replaced with empty strings.
Now consider that the original table, instead of NULL values has empty strings:
Let’s try again to export the new table contents to CSV using BPC:
bcp "SELECT [code],[description],[price] FROM [TestDB1].[dbo].[product]" queryout "c:tmptestExtract.csv" -c -C 1253 -t ; -S ".SQL2K14" -T
Example: Output 2
As you can see, the empty strings have been replaced by NULLs which correspond to the hexadecimal character x00.
Remarks and Conclusion
From the MSDN Library article on BCP, we read the following:
- out copies from the database table or view to a file. If you specify an existing file, the file is overwritten. When extracting data, note that the bcp utility represents an empty string as a null and a null string as an empty string.
Now, if you are going to feed the CSV file to another application for parsing and processing it, if the application does not explicitly handle possible occurrences of the NULL character then most probably an error will be occurred.
Enroll to our course on Udemy “AI Essentials: A Beginner’s Guide to Artificial Intelligence” and dive deep into AI’s foundations, core concepts, and real-world applications. Discover the significance of data in AI, the role of algorithms in decision making, and the power of neural networks and deep learning.
Featured Online Courses:
- AI Essentials: A Beginner’s Guide to Artificial Intelligence
- SQL Server 2022: What’s New – New and Enhanced Features
- Working with Python on Windows and SQL Server Databases
- Introduction to Azure Database for MySQL
- Boost SQL Server Database Performance with In-Memory OLTP
- Introduction to Azure SQL Database for Beginners
- Essential SQL Server Administration Tips
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Development Tips for SQL Developers
- Introduction to Computer Programming for Beginners
- .NET Programming for Beginners – Windows Forms with C#
- SQL Server 2019: What’s New – New and Enhanced Features
- Entity Framework: Getting Started – Complete Beginners Guide
- Data Management for Beginners – Main Principles
- A Guide on How to Start and Monetize a Successful Blog
Read Also:
- Updating SQL Server Tables Without Causing Blocking
- The set identity_insert Command in SQL Server
- The IDENTITY_CACHE Option in SQL Server
- The Import Flat File Wizard in SSMS v17.3 and later
- How to Suppress the “N Row(s) Affected” Output Message in SQL Server
Subscribe to our newsletter and stay up to date!
Subscribe to our YouTube channel (SQLNetHub TV)
Easily generate snippets with Snippets Generator!
Secure your databases using DBA Security Advisor!
Generate dynamic T-SQL with Dynamic SQL Generator!
Check our latest software releases!
Check our eBooks!
Rate this article:
Reference: SQLNetHub (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou, a distinguished Senior Database and Software Architect, brings over 20 years of expertise to the IT industry. A Certified Database, Cloud, and AI professional, he earned the Microsoft Data Platform MVP title for nine consecutive years (2009-2018). As the founder of SQLNetHub and GnoelixiAI Hub, Artemakis is dedicated to sharing his knowledge and democratizing education on various fields such as: Databases, Cloud, AI, and Software Development. His commitment to simplicity and knowledge sharing defines his impactful presence in the tech community.