如果要在自动作业里建新步骤时请用 SQL Server analysis service 命令:
<Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Object>
<DatabaseID>test</DatabaseID>
</Object>
<File>F:\backups\test.abf</File>
<AllowOverwrite>true</AllowOverwrite>
<ApplyCompression>true</ApplyCompression>
</Backup>
蓝色字的部分可以替换成你想备份的数据库名和物理文件名.
还原时使用的SQL Server analysis service 命令:
<Restore xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<File>F:\backups\test.abf</File>
<DatabaseName>new_test</DatabaseName>
</Restore>