Scenario data seems to be deleted unknowingly.

Hello,
Last week I had to make "Loacation" dimension in database-A to be identical to database-B. I deleted all the children of "Location" dimension in database-A and then copy/pasted the children from database-B.
I restructured and rebuilt the cube completely. But after a few days, I realized that database-A lost some crucial scenario data that was uploaded manually by business users a while ago.
As I am new, I am wondering, did my action ( delete chidren and copy/paste from a different cube) cause those scenarios to be deleted completely? I appreciate if you can guide me in correcting the issue.
I appreciate your reply.
Thanks!!

You made a backup, that was smart, you might do okay after all, lol.
So Cameron put it out there what needs to be done. Your best bet is to add the members back in the new cube and then export the data you need from the back up and load it into the new database. You can use data export calc script or if you want to do it quick, the way I would do it is to first, make another copy of your backup, just in case, call it backup2. then with backup1 I would open the outline and delete all the scenario members except the ones I needed. Save the outline, effectively deleting everything except what you need. Do a straight export from Essbase and load into the other cube.
Everyone hates that drop in their stomach when they realize they deleted something they weren't supposed to. We've all done it, the key is the backup, always remember to do the backup.

Similar Messages

  • TS2756 How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )

    How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )
    i know its not a problem whit my carrier o data plan or sharing preferences on the ipone because when i use it un my laptop it works perfectly through
    the usb and even works on the Imac through wifi and bluethood tethering but NOT through usb!!.
    the problem is that trying to make it work i deleted the "profile" usb iphone on the network prefereces panel. Now i only have 3 options: ethernet / wifi / bluetooth
    but not the usb iPhone i used to have.
    And when i try to add a new one i dont get a USB option.
    can some one help me please??
    this is how it looks (after the bluetooth PAN i used to have USB iPhone option)

    The question would be more appropriate in the Mac forums as it is not really related to the iPhone.

  • How-To "Refresh a table of data after inserting or deleting"

    I'd like to say a word on the how-to article "How to refresh a table of data after inserting or deleting a row using ADF".
    (http://www.oracle.com/technology/products/jdev/howtos/1013/updtable/index.html?_template=/ocom/technology/content/print)
    I spent a lot of time on it because I needed help in implementing simple CRUD functionality on a table, using JSF-ADF-TopLink technologies.
    While the the article does provide correct steps, it is in one important place not specific enough, so the reader may easily get stuck. In section "Refresh the data table", point 1: when you double click on the removeEntity() button, in Structure window, then you do not get the required dialog. You get CommandButton Properties dialog.
    You must click on the removeEntity() button in Editor's Design view. But even there you may get the CommandButton Properties dialog, not managed beans dialog.
    You may resolve that by going to JSF configuration file, faces-config.xml, and switch to Overview view. This will show you the managed beans that you have.
    Then, you may already have a backing bean for the page. You can use that and avoid creating a new managed bean.
    I could understand what the operations mean only after very careful reading of "Creating More Complex Pages", section "Overriding Declarative Methods" in JDeveloper Help (or in ADF Developer's Guide PDF document).
    In general: I believe that "ADF bindings" need more conceptual explanation, maybe in form of an article. Grammatical form "bindings" may create a false understanding that "bindings" are just references. But they are not -- ADF bindings are active objects that handle traffic between UI components and Data Controls. It seems that "bindings" even communicate among themselves. Maybe it would be more understandable to differentiate strictly between "binding objects" (or "binders"?), binding object definitions and binding object references.
    It would be very helpful to have a diagram showing grahically what specific binder objects are created in a small apllication (2-3 pages using 1-2 tables), with whom they communicate and what type of data is passed on.
    Priit

    Hi
    Thanks for your infos.
    Yes exactly I use almost the same code you have post here.
    Could You answer to my next questions?
    First - >what do you mean by saying that "it's not good idea using refreshing in IE?" Of course I use refreshing in backing_bean for my button "remove" that removes row, commit changes to database and refresh table, almost the same as You said in your post:
    Code in backing_bean is and comments on difference to Your code is below:
    public commandButton2_action1(){
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding =
    bindings.getOperationBinding("removeEntity");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    //above remove entity, but I dont now if it do commit to database? So i do it below
    OperationBinding commit1 = bindings.getOperationBinding("Commit");
    commit1.execute();
    //and at the end I refresh my table, "findAllRezerwacja1 - it is an id of the methodAction, not the iterator -> is it ok? or should I change to Iterator id?
    OperationBinding requery = bindings.getOperationBinding("findAllRezerwacja1");
    requery.execute();
    return null;
    Page Definition code for this:
    <methodAction id="findAllRezerwacja1"
    InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" MethodName="findAllRezerwacja"
    RequiresUpdateModel="true" Action="999"
    ReturnName="SessionEJBLocal.methodResults.SessionEJBLocal_dataProvider_findAllRezerwacja_result"/>
    <table id="findAllRezerwacja2" IterBinding="findAllRezerwacja1Iter">
    <AttrNames>
    <Item Value="dataDo"/>
    <Item Value="dataOd"/>
    <Item Value="idRezerwacja"/>
    <Item Value="liczbaUczestnikow"/>
    <Item Value="prowadzacy"/>
    <Item Value="uwagi"/>
    </AttrNames>
    </table>
    <methodAction id="removeEntity" InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" MethodName="removeEntity"
    RequiresUpdateModel="true" Action="999">
    <NamedData NDName="entity"
    NDValue="${bindings.findAllRezerwacja2.currentRow.dataProvider}"
    NDType="java.lang.Object"/>
    </methodAction>
    <action id="Commit" IterBinding="findAllRezerwacja1Iter"
    InstanceName="SessionEJBLocal.dataProvider"
    DataControl="SessionEJBLocal" RequiresUpdateModel="true"
    Action="2"/>
    </bindings>
    //and rest of code for Iterator etc
    My second question is, why when you use refresh button in IE (I know is not recommended as You said, but sometimes user do it, so I want prevent situations that I will describe here) so when I press refresh button in IE exactly after removing one row by clicking my button, refreshing by pressing IE button is doing the same --> is deleting next row. How to stop deleting row, when for example user would press IE refresh button after pressing remove button for table. If I change selection in table after deleting row, and press refresh button in IE, instead of deleting row, I got error message: JBO-29000: JBO-35007: and
    JBO-35007. So where Im doing wrong. Maybe I should do sth with postback ? Could You help me? Thanks in advance
    Last one question: what is the difference between using delete and removeEntity from operations node? Im now reading carefully ADF Dev Guide, so I hope I can find infos there? But if You know, please answer to this question.
    Thanks

  • Upgraded to Elements 11 from 9.  Form windows 7 to MacOS.  Events and dates seem to have been lost

    After importing catalog, events and dates seem to have been lost.  People tags imported OK.  Thoughts?

    Same issue.  I have multiple ATV2 and ATV3 - none could access home sharing after updating to 11.1.
    I've learned my lesson from previous iTunes updates, so I always have a backup of my library.  So I uninstalled 11.1 and deleted every iTunes folder I could find on my drive (important because I didn't do this the first time, and home sharing did not work).  Then I restored my library from backup (iTunes folder), and installed iTunes 11.0.5.  Home sharing works, with:
    ATV3 with updates
    ATV2 with updates
    ATV3 without updates
    ATV2 without updates (not tested yet)
    Yea, so something is wrong with iTunes 11.1 with home sharing.  Hopefully Apple will address.  If not, hopefully they will support 11.1 for a very long time.

  • Lost saved scenarios (data)

    Lost saved scenarios (data) every time I uploaded a newly regenerated SWF file. I am using Xcelsius 2008 with SP2.
    After a few hours of investigation, I learned that Local Scenario creates a new .SOL file in the SharedObjects every time with a newly generated SWF. In turn causing Flash Player to drop previous SOL file along with the saved scenario.
    Does anyone know how to fixed this issue or has a workaround for it?
    Thanks

    Thank you for your reply, Anil. This functionality doesn't seem right.  Do you any other way to save the "scenario" data either to a database or file on local drive?
    Thanks.

  • HT4910 I seem to have deleted all my films on my iPad and can't find them on my pc or iCloud. How do I get them back

    Whilst updating my iPad I seem to have deleted my downloaded films from iTunes. They have also gone form my PC and nowhere to be found. How do I locate and download them again?

    Downloading past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list, or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.

  • How to make a video in Labview that sync with scenario data?

    Hi guys,
    I am doing a program that shows the scenario data of a satellite at different positions. (For eg, at the position nearer to sun, the temperature data is higher.....)
    To make the front panel more interesting, I am thinking to add in a video of a satellite orbiting the Earth. The video has to sync with the data I am showing.
    The orbital time of my satellite is 90 minutes = 5400 seconds. If I am going to use the picture ring control method, I have to import 5820 frames of pictures into the picture ring control. My understanding is that each time the user can only import one image (correct me if I am wrong). That would mean I have to import the pictures for 5400 times. 
    Is there any other way to do this? I do not want to waste my time on importing so many images.
    Vanessa
    Solved!
    Go to Solution.

    Okay there are many ways to do this, and I'm not certain which would be less work.
    One option would be to have a picture ring, with 5820 individual images that you then pick which one to display as an index.  If you were to do this I'd recommend some LabVIEW scripting to create the control, importing the images programatically.  I think memory wise storing these images in this control would be very difficult for LabVIEW, but it could be done.
    What I think would be a better option, is to use a single 2D Picture control, and then load a new image from disk (where I hope these images are stored).  You then just load the right image for the right time.  Look under the Graphics and Sound >> Graphics Format to see how to open a file from disk.  This path will change for each image.
    EDIT:  Here is an old link that is still relavent http://digital.ni.com/public.nsf/allkb/328AF568F15B36328625696200511EF0
    DOUBLE EDIT:  Really?  Scripting doesn't allow importing pictures?  Well there is likely a work around but that sucks go vote for it here.
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Easy-Picture-Ring-filling/idi-p/3072297
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • HT5527 I HAVE OLD PHONES BACKED UP.  how do i find the data and recover or delete dups and junk

    I HAVE OLD iPHONES BACKED UP.  how do i find the data and recover or delete dups and junk

    You can't see the data inside the backup, and you can't restore just part of the data if that's what you're asking. To see the data you have to restore the entire backup.

  • I am trying to delete one entry in forms data by highlighting and deleting it but it is not working. Thanks.

    I am trying to delete one entry in forms data by highlighting and deleting it but it is not working. Thank

    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

  • Hi why are my photos after downloading twice ,once in photo library and once in a file with the date why cant i delete a file its an iphone 4s please help

    why are my photos after downloadon twice one as photo library the other as a file with date how can i delete one file same pics

    Generally I would not use Facebook for sharing any photos, it compresses the photos substantially, and when you have shadows and dark colours you get visible "bands" where there should be subtle gradients, ie at sunsets and sunrises.
    It sounds like you are using two methods to upload to Facebook:
    1. Sharing from within Aperture, which basically syncs Facebook with your Aperture album, so any changes made at either end gets synced, hence the deletions from Albums, although the original file should still be in your library, just removed rom the album. It is like a playlist in iTunes.
    2. Exporting pics and uploading to Facebook from the browser.
    I am not sure how method 1 gets compressed, but I know that uploading hi-res jpegs to Facebook using method 2 results in poor quality images.
    I wouldn't even bother comparing option 1 or 2, and they will both be poor images once you view them on Facebook, as opposed to viewing uploaded images on proper image sharing / hosting sites.
    Your problem is not with Aperture, it is using Facebook for showing your work.
    If you export pics form Aperture at high res jpegs or TIFFs your images will be fine.
    If you insist to use Facebook as your way to share your work, then your workflow should be this:
    1. Right click images you want to share.
    2. Select Export version.
    3. Export as 100% size and ensure the export settings are set at 100% quality.
    4. Upload this pic into Facebook.
    This will get you the best image size and resolution on Facebook.
    See how you go.

  • My email seems to get deleted after i read it

    My emails seems to get deleted after I read them

    I found no settings on the iPhone which could make this happen.
    Did you sign in to www.icloud.com and check if you have accidently activated Rules (or Forwarding)?

  • "Media Cache Files" is a huge folder - is it necessary data or temporary data that I could delete?

    My folder "Media Cache Files" (found in: profiles > appdata > roaming > adobe > common > media cache files) is currently over 200 GB big and I was wondering whether all of this data is necessary for my projects (or for anything else?) or whether it is temporary data that I can delete without causing any problems for my saved projects or the programme itself? Does anybody know? Thanks in advance!!!

    Mylenium, Thanks for your immediate reply! This helps me a lot! ... and my laptop will be oh so happy to have less GB.

  • Updated ipod to iOS5 and ALL saved data for games was deleted...

    Updated ipod to iOS5 and ALL saved data for games was deleted, basiclly got to start all games again from start. More annoyed about in-app purchases 
    Angry birds including the Mighty Eagle which bought, nowI have to buy it again if i want it making me spend more money, and Pinball HD whichI had Slayer another in-app purchase but got to buy it again.
    Angry bird seasons, Doctor Who Parking Mania, Cut the rope and much more, every game i checked so far except for 2 games i got works thru from game Center
    I did update iPod before updated iOS so saved data should be on ipod, Videos music all on ipod except for camera roll they all been deleted as well thanks to apple.
    is there any way of recovering it from itunes back onto ipod so theres no loss, If i cant then what?
    ipod was 4.3.3 before the update the previous version

    Go to iTunes>Preferences>Devices and look at the date of the backup.  Does the date f the backup correspond to whene the saved games would be on the iOd?  If so, restore the iPod from backup.  Make sure that the apps are in the iTunes library so they will be synced t the iPOd as part of the restore from backup
    Make sure thew auto-syncing is turned off . Otherwise, when yu connct the iPod to the computer the old backup will be deleted and replaced with the new ne that doe not contain the data. To turn off, check the box in iTunes>Prefernences>Devices that says "Prevent iPods....syncing".

  • Hello, I got a new computer with the old harddisk. Can't play my itunes music because not authorised. Apple ID is very old e-mail adress that doesn't exist anymore. When chose for secret question brth date seems wrong. Can't reach anyone!!!

    Hello, I got a new computer with the old harddisk. Can't play my itunes music because not authorised. Apple ID is very old e-mail adress that doesn't exist anymore and I forgot the password (5 years old??). When chose for secret question birth date seems wrong. Tried everything. I need to make a new apple-id but cannot connect the music that I bought under my old name to my new name. Can't reach anyone!!! Automatic FAQ system is of no help. What to do?

    That doesn't help me. For itunes it brings me to the express lane which doesn't help because my case is not in it. It's all standard procedure things. I understand those but my situation is different. The combination of a passport forgotten and an non-existing email adress (and birth dates that are not correct or not accepted). What I need is my password emailed to another email adress than the original one because that no longer exists.

  • I seem to have deleted Passbook off my iPhone. How can I get it back? I can't see it listed in the appstore anywhere.

    I seem to have deleted Passbook off my iPhone. How can I get it back? I can't see it listed in the appstore anywhere.

    It is not possible to delete any of the bundled apps. You may have moved it to another home screen or inadvertently dropped it into a folder. If you search for the app or reset the home screen layout - Settings/General/Reset - that should bring it back to the default location. There also may be a setting to turn Passbook off in the General/Restrictions, but not having an iPhone with iOS 6 I'm not sure.
    Regards.

Maybe you are looking for

  • Issue in IDOC-XI-IDOC scenario

    Hi, We are facing a strange issue in an IDOC-XI-IDOC scenario. We are using a SAX parser to parse the code here. The error we are getting in 'sxmb_moni' is <SAP:Code area="MAPPING">EXCEPTION_DURING_EXECUTE</SAP:Code>   <SAP:P1>com/abc/def/dev/sapxi/c

  • Anonymous vs session-based static content

    I am running the 7.0 Portal and I am running into a problem where all my static content is being served from within a session context, or not anonymously. This is causing MAJOR performance hits. Eventually, when this app hits production, all static c

  • Multiple payroll areas (PY-IN)

    Hi all, Org structure is            PerArea.....PerSubArea....PayrollArea              (single)      (multiple)          (single for all PerSubArea) Actually, I want run payroll for each PerSubArea independently. How would I re-configured for the sam

  • Browser animation's lag in Windows 7.

    I am using two browsers (IE11 & Chrome), animation's in both of them starting to lag after a while (tabs opening/closes in 2 frames, scrolling lag and any website layout becomes laggy). I can temporarily fix it by minimizing/maximizing them, but afte

  • Photoshop elements 12 purchased but stating it was a trial membership

    I recently purchased this photoshop element 12 and adobe premiere.  Yesterday it stopped working stating my "trial period" had expired.   How do I get it working again.