copy a database within SQL Server Express?

前端 未结 13 2619
眼角桃花
眼角桃花 2020-12-07 22:02

I would like to make a copy of a database I have but keep it on the same server as a test database. However, everything I have found is to use the copy database wizard (I am

13条回答
  •  佛祖请我去吃肉
    2020-12-07 22:59

    I think you could try import data to a new database.

    1. Create an empty database in your local sql server
    2. Right click on the new database -> tasks -> import data
    3. In the SQL Server Import and Export Wizard, select product env's servername as data source. And select your new database as the destination data.

提交回复
热议问题