• Hi,

    I tried to backup 3 SSAS dbs from the same job step, by creating consecutive XML tags in the same command and if failed. Does anyone know if @command is forced to a single backup command?

    This is what code I've used

    <Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">

    <Object>

    <DatabaseID>SSAS_DB_NAME</DatabaseID>

    </Object>

    <File>\\share_path\\SSAS_DB_NAME.abf</File>

    <AllowOverwrite>true</AllowOverwrite>

    </Backup>

    Question is if I can do like 3 backups from the same command in one job agent step.

    Thanks!