Question

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.

Was it helpful?

Solution

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

OTHER TIPS

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.

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

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top