Maurice
Maurice

Reputation: 13

export complete database from Microsft Azure to .CSV or .TXT or .XLS or .XML etc

I would like to download my complete database that is stored on a microsft azure cloud system but I do not know how to do it. Could any one please help me out?

Upvotes: 1

Views: 2350

Answers (1)

Alex Belotserkovskiy
Alex Belotserkovskiy

Reputation: 4062

Try to use SQL Server Management Studio Data Export capability.

1) Download SSMS

2) Connect to your database (you may find the connection string on the DB dashboard)

3) Right click on your database in SSMS and choose Tasks -> Export Data

4) Complete the wizard. In destination part you may choose "Flat File Destination".

That should get you the data in the, for example, CSV format.

Upvotes: 2

Related Questions