February 14, 2007 at 5:45 am
Question: How does one backup more than one Analysis Service Databases ?
An example that I saw for one Database is using
a Sql Server Analysis Services command like this one for Database OLAP:
<Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Object>
<DatabaseID>OLAP</DatabaseID>
</Object>
<File>OLAP.abf</File>
<AllowOverwrite>true</AllowOverwrite>
</Backup>
February 14, 2007 at 8:28 am
You should be able to batch the backups using the Batch element - see below for an e.g. Just note that I have used the AllowOverwrite element and set it to true, you may not want to do this in a production environment (ie you'll prob want to create new BU's each time).
<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine" Transaction="false">
<Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<AllowOverwrite>true</AllowOverwrite>
<Object>
<DatabaseID>MyDB1</DatabaseID>
</Object>
<File>MyDB1.abf</File>
</Backup>
<Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<AllowOverwrite>true</AllowOverwrite>
<Object>
<DatabaseID>MyDB2</DatabaseID>
</Object>
<File>MyDb2.abf</File>
</Backup>
</Batch>
Cheers,
Steve.
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply