10.2 SqlServer recovery
Launch a recovery wizard and give the recovery job a name:
Select local recovery or different machine recovery , select the target instance to be restored, and expand the content to be restored:
Note For SQL Server cross-machine recovery, the target cross-machine must also be instance configured first.
There is a risk of data loss when restoring the original machine!!
You can use the following command to check and change the database compatibility level:
Use DBCC to check the database.
Click [Next] to continue:
Restore to the specified path: If left blank here, the path will be restored to the original backup environment by default.
For example, if the original data file path is: C:\ Program Files\ Microsoft SQL Server\ MSSQL10_50. MSSQLSERVER\ MSSQL\ DATA, then the recovery will also be restored to this path.
Note that if it is a local recovery, then there is no problem, and often this path exists; if it is a different machine recovery, then it is not necessarily the case.
Therefore, for cross-machine recovery, it is recommended to specify the path here.
Restore to a new database name: This option is only available when a library is selected for recovery.
Although less commonly used, recovery jobs do support pre- and post-script .
Click [Submit] to save the recovery job.
Click [View Recovery Job List] to go to [Job] - [Recovery Job] - [Running] to view the jobs being restored.
Last updated