How to backup your database
You can save the database in 2 ways:
- Copy database files, or
- Make an SQL Server backup.
Copy database files
The easier way to preserve your database is to copy the database files to another storage device.
- Using the SSMS tool, detach the database:
Show picture - Copy the .mdf and .ldf files to the other storage.
- Again with the SSMS tool, re-attach the original database.
Show picture - Right-click on Databases → Attach....
Show picture
Right-click on the name of the database to be backed up and then Tasks → Detach...
By default, these files are saved in the PcVue installation subfolder named Databases.
Click the Add button and select the original .mdf file of the database.
Click the OK button.
Your original database files are saved on another storage device and the database is ready for the migration.
SQL Server: Full Backup
A full backup can potentially interfere with regular backup that may be in place on your system.
Contact your database administrator before proceeding.