문제

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.

도움이 되었습니까?

해결책

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

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top