0% found this document useful (0 votes)
241 views1 page

To Write A MaxL Script

The document provides information on writing MaxL scripts to backup and restore Essbase data. It explains that MaxL scripts use login and export commands to backup data to a file and import commands to restore from a file. It also provides additional tips that users do not need to disconnect for backups, applications can be put in backup mode by editing properties, and the Life Cycle Management tool can backup all artifacts automatically with utility batches.

Uploaded by

R Sreenu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
241 views1 page

To Write A MaxL Script

The document provides information on writing MaxL scripts to backup and restore Essbase data. It explains that MaxL scripts use login and export commands to backup data to a file and import commands to restore from a file. It also provides additional tips that users do not need to disconnect for backups, applications can be put in backup mode by editing properties, and the Life Cycle Management tool can backup all artifacts automatically with utility batches.

Uploaded by

R Sreenu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

To write a MaxL script, you can connect to the EAS console, and in the top menu you select

"File > New


> Script > MaxL Script"

MaxL Script to backup data:

login 'User' 'Password' on 'EssbaseServer';
export database 'Application'.'Database' all data to data_file 'd://BackupFile.txt';
logout;


MaxL Script to restore a backup:

login 'User' 'Password' on 'EssbaseServer';
import database 'Application'.'Database' data from local data_file 'd://BackupFile.txt' on error write to
'd://errorFile.txt';
logout;


1) To learn MaxL, have a look to that documentation:
http://docs.oracle.com/cd/E10530_01/doc/epm.931/html_esb_techref/techref.htm

2) To backup Essbase, you don't have to disconnect all the user.

3) To put an Essbase application in the backup mode, in the EAS console, you have to do a right click on
the application, you select the option "Edit Properties". Then in the general tab, uncheck the option "Allow
connects".

Finally, if you want to backup all the artifacts, you can use the Life Cycle Management tool (LCM). Have a
look to that blog:
http://ranzal.wordpress.com/2010/03/24/using-oracles-hyperion%C2%AE-life-cycle-management/

Then, you can create a batch to backup automatically the artifacts using the "utility.bat". Have a look to
that blog:
https://blogs.oracle.com/HyperionPlanning/entry/lifecycle_management_utility_lets_execute

You might also like