Shell Scripts and Exports I

Though we are fast moving to a cloud-focused world, I still thought we’d look at an old school solution. I was recently doing some work in a Linux environment which had multiple Essbase cubes and I had to do something simple, set up backup exports for these cubes.

To do this, all we need is a shell script and a MaxL script. The shell script might call a simple MaxL script like this:

…and so on, for each of the databases that we need to back up. But if we have a large number of cubes, it becomes a bit clunky and more prone to error. And in my case, we did have a lot of cubes. So how do we make it a bit more seamless for the administrator?

This is where working in a Linux environment is great. The scripting tools that you have in a Unix-flavored environment are more superior than their counterparts in Windows (just my opinion).

For this example, I’ve created an application and a database.

27_1_App

We also need a  simple text file…let’s call it our “definition” file. I’ve typed in the name of the application I would like to back up and the name of the database. Remember, Linux is case-sensitive, so make sure you have the correct case.

27_2_Def1

Note: make sure to hit the enter key after the database name (the script needs the carriage return to understand that the end of the file has been reached).

I’ve placed it in a “Definitions” directory on my server. The entire directory structure looks like this:

27_3_ls

Yes, I know, I’ve got the wrong case for “MaxL”. Other than that, the purpose of each directory should be self-explanatory.

The MaxL script that we will use, is also pretty simple (never mind the encryption keys). You might want to add labels, disconnects, error trapping etc.

The positional parameters $1-$5 will be passed through from our script. Speaking of which, I also have a shell script in place. The script should read through the definitions in the file and cycle through each database and create exports. The snippet below is what allows us to do this in an elegant manner.

To simplify the code:

  • The “while” loop reads through each line in the definition file.
  • It understands that “,” is the delimiter being used and it splits the commas-separated values into 2 variables $APP and $DB.
  • The MaxL shell is then invoked. MaxL takes the positional parameters $2 and $3 to be the application name and the database name. It then proceeds to create exports.
  • Until it reaches the end of the file (the carriage return from earlier).

When you run the script, you should see the export in the export directory.

27_4_Exp1

If you need to add other databases to your list, all you need to do is add them to your definitions file. Like so:

27_9_Def3

No updates are needed to the shell script or the MaxL script. It should generate exports for the second database as well.

27_10_Exp3

The script, in its entirety looks like this:

So there you have it, a quick and easy way to variable-ize your automation scripts. I’ll add a follow up post over the next couple of weeks, which will take this scenario one step further.

EDIT: Part 2 can be found here.

Avatar

About Vijay Kurian

Known as the Clem Fandango of EPM consulting, Vijay Kurian has been developing enterprise solutions for companies for the last 12 years (increment years if reading post-2015). Having worked with Essbase, Planning, DRM and other assorted technologies during that time, he’s made the frankly, average decision, to write about them. He is, surprisingly, an Oracle ACE Associate. He hopes to contribute frequently to US Weekly, People and Sensible Chuckle magazines on improving reporting solutions, creating master data management systems and zzz…

Leave a Reply

Your email address will not be published. Required fields are marked *