5

Is it possible to export my database that i created in SQL Server 2008 Express?

I'm asking this because I need my group mate to be able to work on the same one. I know you can generate a script for the database but it give a bunch of errors when we try to run it.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Dynamiite
  • 1,419
  • 5
  • 21
  • 28

4 Answers4

12

You can right click the dbase then Task->Backup
This will generate a .bak file which you can Task->Restore to a new database

You can refer here http://msdn.microsoft.com/en-us//library/ms187048.aspx

c0dem0nkey
  • 616
  • 4
  • 13
5

Yes. You can export your sqlserver database by using these steps.

  1. Right click on your database and hover on Tasks, you got another dropdown, Select Back Up.

  2. You got a pop-up like this. enter image description here

  3. Click on OK button.

  4. Navigate to path on your local PC (C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Backup\your database)

  5. You got your exported database.

Andrew Barber
  • 39,603
  • 20
  • 94
  • 123
FIFO BIZSOL
  • 729
  • 6
  • 6
0

Back it up on disk, give a copy of the file to your friend and tell him to restore a database from that copy.

See this article for more help

Andrey Gordeev
  • 30,606
  • 13
  • 135
  • 162
0

Yes,export database from sql server 2008 express is possible.. create backup file and export it.

NiteshG86
  • 85
  • 1
  • 8