Skip to content
Advertisement

SQL Server Management Studio 2012 – Export all tables of database as csv

I have a database in SQL Server with a lot of tables and wish to export all tables in csv format. From a very similar question asked previously – Export from SQL Server 2012 to .CSV through Management Studio

Right click on your database in management studio and choose Tasks -> Export Data…

Follow a wizard, and in destination part choose ‘Flat File Destination’. Type your file name and choose your options.

What I want is the capability to export all tables at once. The SQL Server Import and Export Wizard only permits one table at a time. This is pretty cumbersome, if you have a very big database. I think a simpler solution might involve writing a query, but not sure.

Advertisement

Answer

The export wizard allows only one at a time. I used the powershell script to export all my tables into csv. Please try this if it helps you.

Thanks

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement