SQL Server Reporting Services Question:
Download Questions PDF

How to schedule SSAS Database backup.

Answer:

SQL Server Management Studio is used for taking backup of SQL Server Analysis Services database. SSAS backup option can not perform the SSAS database backup operation. To perform this task, create SQL Server Agent Job and schedule that job as per custom requirement. The following is the process:

► Right click the job folder of the SQL Agent node in SSMS.
► Select the option New job
► Specify the Job name for identification purpose.
► Go to Steps Page and click the New button.
► Select SQL Server Analysis Services command as the type of job after entering the name of the step and enter the server name.
► Enter the following command.

<Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Object>
<DatabaseID>AdventureWorksDW</DatabaseID>
</Object>
<File>AdventureWorksDW.abf</File>
<AllowOverwrite>true</AllowOverwrite>
<Password>password</Password>
</Backup>

► Click on OK
► Goto the Schedule page for creating schedule as per the requirements.

Download SSRS Interview Questions And Answers PDF

Previous QuestionNext Question
What are the ways to tune Reporting Services?How to Generate an Auto Incremental Number in a SSIS Package?