Error adding External DPM in Azure Backup Server

Félix J Torres Tavárez 20 Reputation points
2024-07-30T17:03:17.9266667+00:00

I have a new Azure Backup Server MABS v4. When I try to add my old Azure backup server I got an error: Adding External DPM : myoldserver failed:

Error 298: Recovery failed for NO_PARAM NO_PARAM on NO_PARAM.

Recommended action: Recover to an alternate location or try recovering from another recovery point.

Azure Backup
Azure Backup
An Azure backup service that provides built-in management at scale.
1,286 questions
{count} votes

Accepted answer
  1. Amardeep Saini 1,255 Reputation points Microsoft Employee
    2024-08-05T10:09:08.1333333+00:00

    @Félix J Torres Tavárez - If you are referring to Staging location for online restore which you needs to update from 'S:\Recover\ffd392ff-39ce-4c5d-bcf2-e6d8f8ff24c8'.

    There are different ways to update the Staging Location. I am giving you the way to update the path using SQL query for DPM DB.

     

    Open SSMS and run the following SQL Query against MAB Server DB:

     

    select * from tbl_DLS_GlobalSetting where PropertyName='CloudRecoveryStagingArea'

    • It will retrieve the actual path, it might be S:\Recover\ffd392ff-39ce-4c5d-bcf2-e6d8f8ff24c8 in your case

    update Tbl_dls_globalsetting set PropertyValue='C:\onlinerestore1' where propertyName='CloudRecoveryStagingArea'

    • It will update to the new path

    Make sure to keep the staging location on a NTFS volume and not on REFS volume as restore will fail on REFS volume.

    If the suggestions were helpful, click “Accept Answer” and Up-Vote it.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.