When there is a discussion about exporting data from SQL Server to CSV file, we immediately look for the Integration Services. But, you can achieve the same result from the Management Studio with ease. In this article, we will show you multiple approaches to export data from SQL to CSV with a practical example.
For the first Export Data From SQL to CSV example, we are going to use the below-shown records.

Export Data From SQL to CSV Approach 1
In this example, we are going to export Employees table present in the SQL tutorial database to CSV file (that we will create) in the local hard drive. For this, please select all the columns, either clicking the top left corner or selecting Select All option from the context menu.

After selecting all the columns, please go to the top left corner, and right-clicking there will open the context menu. Please select the Save Result As.. from it.

That will open a Save Dialog Box to save the file in your local hard drive. From the below screenshot you can see that, we are saving the file in D drive

Let’s navigate to the file system address that we provided and check for the file name EmployeeData.

Double click on csv file to check the result

Export Data From SQL to CSV Approach 2
Within the Object Explorer, right-click on the database will open the context menu. Please select the Tasks and then Export Data.. option from it to Export Data From SQL to CSV.

Once you select the option, It will open Import and Export Data Wizard. The first page is welcome page, and you can avoid this page by clicking the Do not show this Starting page again option

Choose a Data Source Page: This window is used to configure the source from where the records is coming. Our source is the SQL Server database, so we selected the Native Client as Data Source.

Next, we are using the Windows authentication to log in to the PRASAD server instance. Please use Server Authentication in real-time.

Choose a Destination: This window is used to configure the destination (to where we want to copy this).

Our target is to save the data into a CSV file. So we are selecting Flat File Destination as our Destination

Please click on the Browse button to choose the CSV file from our local drive

We are creating new CSV in our D drive

Click on the Open button to create a new CSV file.

Next, select the Format that you want to assign.

Specify Table Copy or Query: Here we have two options to Export Data From SQL to CSV
- Copy data from one or more tables or views: This option is to select from existing tables or view (All the columns)
- Write a query to specify file data to transfer options: In real-time, we are going to use this option. Because there will be unnecessary columns in every table. So it is better to avoid them or selecting data with the condition.

This window is used to select the source table from the database. Here we are selecting the Employees table.

You can change the Row and Column delimiters as per your requirements. If you are using a text file as the destination, then you can do many customizations. Click on the preview button to check the incoming data flow

Save and Run Package: This page gives us the option to save the package in either SQL server or File system. For the time being, I am selecting the Run option immediately

Click finish button to complete the Export Data From SQL to CSV Wizard

From the below screenshot, you can observe the status: Success and Message.
