How to backup filters in Essbase 11.1.2.1

Hi,
I can not find the correct way to backup (and copy to production) the Essbase filters.
The documentation says that filters are still stored in the Essbase.sec file, but copying over the Essbase.sec does not copy over the filters.
Any ideas how to solve this in 11.1.2.1 ?
Is there a difference between ASO and BSO?
I am working with ASO.
Thanks in advance,
Patrick

If you are using Shared Services then one method could be to use LCM
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Improving backup performance for Essbase / Planning

    Hi all
    I am trying to improve out backup performance and limit downtime for our Planning applications. Currently we are running 11.1.1.3 and an instance of 11.1.2.1. We are doing your standard cold backups on the Essbase side (shut down, copy files) then we do a level 0 export out for a logical backup. Downtime is getting a bit restrictive and the business wants a more DR friendly solution.
    Has anyone tried any of these options and if so please let me know how they worked
    1. Use BCV technology to snap off a copy of the essbase databases to limit downtime of a normal copy.
    2. HTBase backup utility, demo looked good, is it proven
    3. Transaction log mode with hot backups.
    Im just trying to weigh the best options and see what is proven out there
    any help would be great

    Hi Mike,
    You can take backup using "Archive database " functionality. While data is being archived , the database is put into read only mode. Only thing is that you wont be able to write data into the cube at that time, but it might increase the time for which you take backup as data archive backs up the wole database with all the dataabse.
    You can also use the replay BSO feature by enabling transaction logging.
    See if this Helps.
    Cheers,
    SS
    Edited by: Saurav Sarkar on 5 Feb, 2013 5:11 AM

  • How to backup VM in HyperV (Windows Server 2008 R2)

    Hello,
    Beginner's question: How to backup my VMs on an external
    USB disk?
    NB: I'm running Windows Server 2008 R2. It's a test machine, don't care with downtime. I want to backup only the VM (VHD files and VM configuration, not the whole server)
    Thanks

    Hello,
    for Hyper-V usage please ask the experts in
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverhyperv
    Also see
    http://technet.microsoft.com/en-us/library/dd405549(v=vs.85).aspx
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • How to backup a macbook pro to icloud

    How to Backup a MacBook Pro to Icloud

    Welcome to Apple Support Communities
    You can't back up a MacBook to iCloud, as there isn't enough storage to make backups of a Mac. Instead, you can use services like CrashPlan, but the best way to back up your Mac is by using Time Machine or a cloning app like Carbon Copy Cloner onto an external drive. Doing this, you can be sure your data is with you everywhere

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • HT5085 Hi there,  i'm new to the iPHONE community and please can someone tell me how to backup my phone to iCLOUD. How do i connect with wi-fi. Must i buy a wi-fi connetion or what.Thank you kind regards

    Hi there,  i'm new to the iPHONE community and please can someone tell me how to backup my phone to iCLOUD. How do i connect with wi-fi. Must i buy a wi-fi connetion or what.Thank you kind regards

    Do you have a wi-fi network in your home ? If you do then you should be able to connect your phone to it via Settings > Wi-Fi on your phone - that should show any networks that are available, and tapping on the network that you want to use (and typing in its password if it's password protected) should connect the phone to it. If you don't have a wi-fi network then yes, you will need wifi router in your home, which is connected to the internet (e.g. via your phone line) to be able to back up your phone to iCloud.
    Connecting to wifi : http://support.apple.com/kb/HT5569 (the screenshots on that page are from iOS 7, but they should be similar on iOS 6)
    iCloud backup and storage overview : http://support.apple.com/kb/PH12519
    You can also backup your phone to your computer's iTunes : http://support.apple.com/kb/HT1766

  • HT1766 Now, I understand how the backup and restore the backup functions. However, if I don't want to transfer the music that I have on iTunes to my phone, how do I avoid it? How do I not transfer the music or take it out of my iPhone if it is already the

    Now, I understand how the backup and restore the backup features function. However, if I don't want to transfer the music that I have on iTunes to my phone, how do I avoid it? How do I not transfer the music or take it out of my iPhone if it is already there? I really do not want any music on my iPhone because I have an iPod for that. Thanks. Hope someone can help.

    When you connect your phone and start iTunes on the left side you will see your phone listed under devices.Click on te icon next to it that looks like a battery. Click on the music button at the top and uncheck the sync music box.

  • How to backup new learned remote-control data for the IR-remote APP???

    Hello @ all,
    does anybody know a way to backup the new learned remote control on XPERIA Z Tablet?
    I found a database under:
    "system/vendor/etc/sony-ir-remote/db"
    But after I've saved new learned remote controls the date and the size of these DB's
    are the same as before. Therefore the IR-remote control APP dosn't save the new data
    in these files.
    Furthermore there isn't a button in the remote-control APP to backup new learned remote controls.
    And I can't choose the remote control APP in the backup function APP from the XPERIA Z Tablet
    to save the data. Also the backup with the Sony PC Companion Software dosn't save the learned
    remote controls. Who develops such a dross mobile software?
    Sorry SONY, but you have the most unpalatable support I've lived to see!
    The first SONY support center refered me to another support center.
    The mobile support center does not answer to my questions per mail.
    Then I call the mobile support center. The answers were shallow and standard.
    The support engineer want to ask the development and call back.
    However, I am still waiting for promised recall.

    I am facing the same problem.
    I have spend a few days to configure and train my Sony tablet to configure for all my remotes such as aircon and lighting. I did a backup using the Sony companion to my PC. When my tablet was faulty and serviced. But the backup did not recover the IR remote settings and codes which I programmed previously. I also tried your backup restore app but it also does not save the configuration.
    It is VERY IMPORTANT for me to backup the settings.
    Please provide the folders and path of where the IR REMOTE settings and personal configuration and codes trained were kept so that I could back them up. Are these path protected area that required rooted access?
    Hope that Sony could update the app to include backup of new trained codes and settings and in the meantime to provide a procedure of how to backup the setting and trained IR codes with or without rooting the device.

  • How to backup an external hard drive plugged into a time capsule using time machine

    How to backup an external hard drive plugged into a time capsule using time machine.
    I want to move my itunes library from the mac HD to an external plugged into the time capsule, but I want to be sure this drive will still be backed up by time machine.  I currentlly see no way to do this.

    There is no way. You can connect the drive to your Mac and remove it from the Time Machine exclusion list. Then it will be backed up, but that will stop when you reconnect it to the TC. While it's connected to the TC, you can copy it manually to another AirPort Disk by following the instructions here (with a slight modification):
    Using AirPort Utility to make a copy of the Time Capsule disk

  • How to backup files from other user logged in as administrator

    RE: How to backup files from other user logged in as administrator AND/OR how to repair drive with "Invalid catalog PEOF"
    Hello,
    My MacBook Pro computer’s hard drive is not booting.
    I booted with the base operating system and ran Disk utilities and I got the following messages:
        Invalid catalog PEOF
        The volume could not be verified completely.
        This disk needs to be repaired.
        Disk utility can’t repair this disk. Backup as many files as possible, reformat the disk,
        and restore your backed-up files.
    The problem is that I have a couple of USERS set up on this computer, and it won’t let me backup the files of the second user.  The folders are locked and I can’t access them, even though I am logged in as the administrator.
    I made a boot disk on my other computer ( a MacPro Early 2008 ) desktop computer with the DiskWarrior 4.4 updater,
    but it won’t boot on my MacBook Pro.
    How can I backup these user files so that I can copy them back once I fix the drive?
    or better yet,  How can I repair the Invalid catalog PEOF on this drive?
    Thank you in advance for your time! 
    Bill
    THIS IS THE COMPUTER
    ================
    17” MacBook Pro 2.8GHZ 4GB Ram (purchased in 2009).
    Model: A1297
    Running Mac OSX 10.9.5

    Try using Disk Utility/Restore to copy the backup to a new location. Please note that this will reformat the destination partition which will erase all data.
    Do a backup. Boot to the Recovery Volume (command - R on a restart or hold down the option/alt key during a restart and select Recovery Volume). Run Disk Utility Verify/Repair and Repair Permissions until you get no errors.  Reformat the drive using Disk Utility/Erase Mac OS Extended (Journaled), then click the Option button and select GUID. Then re-install the OS.
    OS X Recovery
    OS X Recovery (2)
    When you reboot, use Setup Assistant to restore your data.

  • How to backup iphotos onto an external hard drive....

    I have been reading through the questions on here to figure out how to backup and save my iphotos externally and i am hitting numerous brick walls...
    I have tried to use the time machine but my hard drive has photos and documents on it and i do not want to wipe it to install it as my perferd divice to use in time machine.
    I have tried numerous other options and i am having no luck whatsoever.
    Please help!!!!!

    It doesn't even let me do that. I can't copy it at all over at all. I have 1 terabite of memory available on my external hard drive.
    I have also tried to individually export photos and that also comes up with an error. I have had the computer 4 months and kept up to date with all updates so im unsure as to why that is not working.
    That is like "my car won't start - Why not?
    We need information about what is happening, not happening, what has recently changes, error messages
    Saying "it does not work" gives us nothing to help with
    LN

  • How to backup library before an iTunes reinstallation

    I run Vista, and I happened to have the problem of my CD/DVD drive disappearing on me. I googled it, figured out how to fix it by deleting a couple registry items and restarting, and it started working again. Only thing is, right after that every time I open iTunes I now get a message saying iTunes can no longer import CD's because something got changed, please reinstall. I kept ignoring it, and now iTunes won't even open up. So my question is, how can I for back up my iTunes library before uninstalling, so I won't have to manually import every song file. I have multiple copies of some songs and I don't want those back in the library after reinstalling. Also, after that how would I go about reimporting my old library?
    Thank you.

    External drives (for backing up) are less than $100.
    Backup software will run automatically.
    If everything on your computer disappeared right now or you r hard drive died and it would not affect/bother you in the least, you could get by without a backup.
    But since you are here asking how to backup some files...
    I highly suggest you consider it.

  • How to backup MacBook Pro without AirPort Time Capsule or External hard drive

    How to backup MacBook Pro without AirPort Time Capsule or External hard drive

    This is crude but if you need a work around, just plug the USB drive directly into the iMac.. copy the files to it.. then plug it into the TC.
    You also do not need to use the TC as an intermediary between your iMac and MBP.. just turn on sharing in the computer.. so you can directly copy files from one to the other.. Macs have public access directory preconfigured for each user account.
    As far as mounting the TC..
    In finder use Go, Connect to server.. and type.
    AFP://TCname or TCipaddress
    Where TCname is the actual name of the TC.. I strongly recommend you follow SMB network rules.. ie if your TC has a name like
    Fred Blog's Time Capsule 2445566.
    It is too long.. it has spaces and it has non-alphanumeric characters.
    Shorten it to FredTC
    No spaces no characters that are NOT alphanumeric.
    TCIPaddress is simply the standard IP.
    You can also use CIFS://TCname which according to the article forces the connection back to SMB1 rather than SMB2 which as usual is broken.
    But I would definitely use AFP if possible. I cannot understand the decision to move to SMB as standard.

  • I want to know how to backup my library to a fixed backup drive rather than to a CD or DVD. I mostly have audiobooks in the library and my computer is running out of space. There are so many that copying them to a CD or DVD would be a horrendous waste of

    I want to know how to backup my library to a fixed backup drive rather than to a CD or DVD. I mostly have audiobooks in the library and my computer is running out of space. There are so many that copying them to a CD or DVD would be a horrendous waste of time and resources. Can you please help me?

    msscott69 wrote:
    I want to know how to backup my library to a fixed backup drive
    Copy your ENTIRE iTunes FOLDER to an External Drive...
    Full Details Here  >  http://support.apple.com/kb/HT1751
    Also... Have a look at these 2 Videos...
    http://macmost.com/moving-your-itunes-library.html
    http://macmost.com/moving-your-itunes-media-to-an-external-drive.html

  • How to install filters 8BF in photoshop CC

    How to install filters 8BF in photoshop CC?
    I ask because it does not appear in the menu Photoshop, or do not work

    You need the proper CC-compatible versions of your effects and install them. For your own safety CC will ignore most legacy filters to prevent crashes which was a common problem in CS6 when people simply copied over their existing CS5 versions...
    Mylenium

Maybe you are looking for