Loading one partition in AWM tries to aggregate all partitions

I believe I'm seeing a difference in behavior between maintenance of a cube with a compressed composite vs. a cube with all dimensions sparse but not compressed.
With the compressed composite cube, I execute cube maintenance (AWM 10.2.0.2), select 'Aggregate the cube for only the incoming data values', and click Finish. According to XML_LOAD_LOG, the records are loaded, and the aggregation occurs in only the partition(s) in which the data was loaded.
With a fully-sparse cube (but NOT using a compressed composite), I follow all of the same steps, and use the same fact table. According to XML_LOAD_LOG, the records are loaded in the same amount of time as before, but the aggregation starts to loop over every partition (I'm partitioned along the Period-level of a Day-Wk-Pd-Qtr-Year time dimension). The log shows an entry for every period, not just the single period in the fact table, and it's taking about 90 seconds per period. For 48 periods, that adds over an hour of processing time unnecessarily.
I tried it twice, thinking perhaps I clicked the wrong radio button, but that's not the case. I'm seeing very different (and detrimental) behavior.
Has anyone else seen this?

Addendum: The cube maintenance process also behaves badly when requesting the use of more than 1 processor. I have two cubes that I want to maintain at the same time. The server has 4 processors. I submit the job to the Oracle Job Queue and specify the use of 2 processors.
The load log shows 48 3-line entries like these:
Attached AW TEST1_SALESAW in MULTI Mode
Started load of measures: Sales, Cost, Units from Cube LY4.CUBE. PD07 04 Partition
Finished load of measures: Sales, Cost, Units from Cube LY4.CUBE. PD07 04 Partition. Processed 0 records.
There is only one fiscal period in the fact table. But the multi-threaded process dutifully rolls through all 48 fiscal periods, and in doing so adds a significant amount of time to the process.
NOTE: This is only an issue when using multiple processors. If I request only 1 processor, the "looping through all partitions" behavior does not occur.

Similar Messages

  • External HD crashed by Disk Utility and all partitions gone

    I had a 320GB Seagate external hard drive with 3 NTFS partitions.
    They are 200GiB, 40GiB, 38.1GiB
    I tried to format the middle partition into an Mac Partition and failed. After that, all partitions are gone and when I plug the HD into a PC, the disk manager recognize the whole space of disk as free.
    the Log of the Disk Utility is as follows
    2009-06-17 21:38:50 +0800: Preparing to erase : “PERSONAl”
    2009-06-17 21:38:50 +0800: Partition Scheme: Master Boot Record
    2009-06-17 21:38:50 +0800: 1 volume will be erased
    2009-06-17 21:38:50 +0800: Name : “PERSONAl”
    2009-06-17 21:38:50 +0800: Size : 38.1 GB
    2009-06-17 21:38:50 +0800: Filesystem : Mac OS Extended (Journaled)
    2009-06-17 21:38:53 +0800: Error with volume erase Invalid argument
    2009-06-17 21:38:53 +0800: Erase complete.
    Then a new "disk2" appears in the Disk Utility and can't be ejected easily. There's also something like picasaUpload stuff bumping up during the short formatting.
    I tried to recover it using DiskTest 6.11 but it appears to take 14 hr to scan the whole disk and will not necessarily fix the problem.
    I have Anyone have suggestion on how to recover the partition? The 200GiB partition is really important for me.

    NTFS partitions can not be readily altered to begin with, and when there are multiple such partitions on a drive you should not attempt to alter only one. Since Disk Utility basically can't manage an NTFS partition, when you tried to alter the 'middle partition' (which in most cases is really a 'sub partition' or secondary partition to the 'main' or primary partition) you destroyed the whole of the volume's data structure. Unless you use a data recovery service or use data recovery software yourself, your data is gone. You should not attempt to alter NTFS formatted drives from Disk Utility.

  • I have a partition on my IMac disk and Windows 7 loaded on one partition.  I tried to open and W7 will not open and cannot repair itself.  Is there a diagnostic/disk repair from Apple that I can try before reloading W7?

    I have a partition on my IMac disk and Windows 7 loaded on one partition.  I tried to open and W7 will not open and cannot repair itself.  Is there a diagnostic/disk repair from Apple that I can try before reloading W7?

    Csound1 What Ive been trying to explain is that I have been running bootcamp, I open the app where the first screen is the introduction, i hit continue, the first time I select "download the latest windows support software fromm Apple" then I return and instead select "Install Windows 7." Then hit continue. The third screen is where I "Create a Partition for Windows" I set Windows to 80 gigs then hit INSTALL. As stated before Bootcamp cannot find the install drivers saying "The installer disc could not be found." My windows software is on a USB drive not a disc, I tried using a virtual disc reader to make it appear that the windows software was running on a disc, still no luck. What I would like to know is how to install windows on bootcamp.

  • Udiskie is only loading one external partition at once

    I tryed to set up udiskie according to the tutorial in the wiki. I created /etc/polkit-1/localauthority/50-local.d/10-udiskie.pkla and added
    udiskie &
    to my .xinitrc. And it works "a little bit" meaning that it recognizes a CD and one partition of my multipartion external hard drive. Now if I run udiskie & again manually in a console emulator it recognizes all the other partitions as well. I have full r/w acces to all of the paritions as desired. Any ideas? It would be really cool to have all partitions recognized on startup for cron backup jobs.
    Last edited by joachimr (2013-02-22 17:18:39)

    okay. I have rethought how I want to do this but I am still having a problem:
    I have a main swf that loads 2 external swfs.
    I click on button to see content of external swf #1 and see stuff. I do something that causes external swf to show other stuff (i.e. not at beginning state)
    In the main swf I click on button to see content of external swf #2. External swf #1 content is made invisible and I see content of external swf stuff.
    NOW, if I click on button to take me back to see external swf #1, I see it's content in current state. I want to force it to start over again at frame #1 which will reset content.
    However, no matter what I try, I can't seem to control which frame to go to in external swf using gotoAndplay.
    Here is code in frame #1 of main swf to load external swfs:
    //load academic movie
    var swfLoader1:Loader = new Loader();
    container1.addChild(swfLoader1);
    var url1:URLRequest = new URLRequest("academic.swf");
    swfLoader1.load(url1);
    //load wisdom movie
    var swfLoader3:Loader = new Loader();
    container3.addChild(swfLoader3);
    var url3:URLRequest = new URLRequest("wisdom.swf");
    swfLoader3.load(url3);
    Here is code in frame 2 of main swf that checks button to see where to go in external swf:
    //academic button clicked
    function academicClick(event:MouseEvent){
       container3.alpha = 0;
       container3.visible = false;
       container1.visible = true;
       container1.gotoAndPlay(1); //this is where I am trying to force it to start at frame 1
       container1.alpha = 1;
    I don't want to reload the external movie to force it to start over.
    Any help would be much appreciated.

  • Tried to open an app and my iPad gen one froze. It only shows the apple on black screen and will show the operating wheel sometimes and while plugged in it will beep every few minutes. Will not load one show anything on screen but the small white apple.

    Tried to open an app and my iPad gen one froze. It only shows the apple on black screen and will show the operating wheel sometimes and while plugged in it will beep every few minutes. Will not load one show anything on screen but the small white apple.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Disk Utility - Partition map needs repair because a data partition needs loader space.

    I just finished setting up both my OSX and Windows installs from scratch after fitting an SSD, which in-turn was right before my logic board died and Apple replaced it, now it looks like I have some sort of hard drive issue brewing.
    This was my plan for the SSD, and how it currently displays in Disk Utility although that wasn't the case earlier:
    And in Terminal:
    My intention was to have two boot partitions for each OS, 'Macintosh HD' and 'Win 7 Pro' and a third shared data partition 'Projects' on the SSD, which I made in Drive Genius after installing Boot Camp. I don't want Macintosh HD accessible from Windows because I'll be using Paragon HFS+ or MacDrive to give write access and don't want OSs stomping on other OSs turf, hence needing three partitions. Everything looked fine until I just checked Disk Management under windows and realised it couldn't see the Projects volume. Even though it's fine in OS X, it was just marked black/unallocated space.
    So I booted back into OSX, all my files look fine so I ran Disk Utility and the Partition tab looked really odd - unfortunately I didn't get a screenshot. All volumes reported their size correctly but visually, Macintosh HD took up most of the drive. I could see 'Windows 7 Pro' under this, but the Partition Layout section had a scrollbar, which if I scrolled down showed 'Projects' squished into a tiny gap at the bottom. I ran a Verify, which reported no problems, and at some time since the Partition Layout has reverted to how it should look (as in the screenshot above), with 'Projects' book-ended by "Macintosh HD' and 'Windows 7 Pro'.
    Now when I run a Verify on Macintosh HD or Projects volumes, it says there's no problem, but if I run one on the drive, I get this message:
    Volume Macintosh HD on disk0s2 has 0 bytes of trailing loader space and it needs 134217728 bytes
    Problems were found with the partition map which might prevent booting
    Error: Partition map needs repair because a data partition needs loader space.
    I've only managed to find one other mention of this error here, but the fix is not relevant to me because I don't have Sophos installed. I've tried Single User/Safe Mode but it just boots into normal mode, so I can't do a fsck -fy.
    ** /dev/rdisk0s2 (NO WRITE)
    Can't open /dev/rdisk0s2: Permission denied
    That value in bytes is exactly 128mb, so I suspect the problem lies with one of the invisible partitions that show up in iPartition and Disk Management under Windows, but not in Disk Utility. I have backups and I suspect the root of the problem is partitioning in iPartition after installing Boot Camp, but I've never had issues with this approach in the past so I'm wary of just giving up and reinstalling Windows again will be massive hassle because I no longer have a SuperDrive and last time it refused to install from USB.
    Anyone have any idea what's going on? It seems like the sort of issue Disk Utility should just handle, at least in Recovery mode, but it's not playing ball. It also doesn't seem like a massive problem since my files all look fine and performance is OK, so I'm reluctant to do anything major.
    I'll update with a shot of the drive in Disk Management from Windows in a few minutes, in case that sheds light on anything. Thanks!

    Similar issue here. I manually partitioned my hard disk for triple boot (using Gparted on Linux), then everything was just fine until I ran bootcamp, to do something as simple as create a boot USB.
    I get the same error as a result and have to work my way into booting, by resorting first to a Linux live USB, then restarting from the live USB, to finally reach my rEFInd boot manager, or whichever boot manager should be initialized at startup.
    I suppose that the cause in my case is that some operation "scratched" the protective MBR. See this:
    http://www.mactech.com/articles/mactech/Vol.23/23.03/APMtoGPT/index.html
    I am hoping to fix it using an external Yosemite installation media: see this guide -
    http://www.macworld.com/article/2367748/how-to-make-a-bootable-os-x-10-10-yosemi te-install-drive.html
    And as a last resort to reinstall.
    I'll admit I am negatively surprised. I need this computer for professional reasons, and for the sake of "preserving the integrity of OSX", measures defined by Apple instead tend to make partitions far easier to damage. And this problem seems to affect a number of users.
    As for what I have to go through to fix it: a 5GB download, during which I have to register my credit card to the Apple Store. "Pay first, get your free software next."
    IF Disk Utility can fix it, from the external media, then fair enough. The hassle is unpleasant but it files as "a choice".
    Otherwise you can file it safely under software design calamity.

  • Hello, I have mistakenly deleted all partitions on my mac while trying to install windows on my macbook pro, how do i reinstall the mac os back

    Hello, I have mistakenly deleted all partitions on my mac while trying to install windows on my macbook pro, how do i reinstall the mac os back. I just wanted to have them both, please help. thank you in advance

    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    1. Select Disk Utility from the main menu and click on the Continue button.
    2. After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet
                if possible because it is three times faster than wireless.

  • Which is better?? INDEXING or AGGREGATES or PARTITIONING??

    Hello BW Experts,
    If I need to decide one out of three i.e., INDEXING or AGGREGATES or PARTITIONING for better performance.. ??
    whcih one should i go for?? and why??
    Plz throw some light on this!!
    Thanks & Regards,
    Sapster.

    Hi,
      For query performance and dataloading performance we need all the three.. So we cannot say this one is better than other as per my knowledge..
    Partition:
    By using partitioning you can split up the whole dataset for an InfoCube into several, smaller, physically independent and redundancy-free units. Due to this separation, performance is increased when reporting, or also when deleting data from the InfoCube.
    Aggregates:
    An aggregate is a materialized, aggregated view of the data in an InfoCube. In an aggregate, the dataset of an InfoCube is saved redundantly and persistently in a consolidated form on the database.
    Aggregates allow quick access to InfoCube data during reporting. Similar to database indexes, they serve to improve performance.
    Index :
    Indexes are created in the fact table for each dimension allow you to easily find and select the data. When initially loading data into the InfoCube, you should not create the indexes at the same time as constructing the InfoCube, rather only afterwards.
    The indexes displayed are the secondary indexes of the F and E fact tables for the InfoCube. The primary indexes and those defined by the user are not displayed. The aggregates area deals with the corresponding indexes of the fact table for all aggregates of an InfoCube.
    Have a look at the below document..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e7deb490-0201-0010-f882-ef40f8c9bb5c
    Regards,
    Siva.

  • Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

    Hi there,
    I use visual studio community 2013 to develop app for office. When I create app project using template and directly run it, it shows me this error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
    Can anyone help? Thanks in advance.

    Hi holm0104,
    Did you add custom code into the project? Can you reproduce the issue in a new project without custom code?
    If not, did you have issue when you create a normal web application?
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Loading One Game Level At a Time

    HI,
    I have seen in some games where instead of loading the whole game at the beginning of the game, they load one level,  with the preloader on the screen, then when that level is over, another level is loaded, with the preloader on the screen, etc. I've been trying to find a tutorial or some information on how to do this online but couldn't find anything. I have a game that takes a long time to load when loading it all at the beginning of the game, so I'd like to load it level by level. Can anyone tell me how to do this, or where I could find info. on how to do this? Thanks a lot...

    Getting all into one SWF is the opposite of what you're trying to do.
    If you have everything in one SWF then it loads the entire thing when the game is loaded.
    If you want it to load one level at a time using seperate SWF's it will only load the main game at the start and other levels when requested.

  • Coded UI -Unit Test Adapter threw exception: Unable to load one or more of the requested types

    I am working on silver light bases share point application using visual studio 2012 with C#
    While debugging  coded ui tests with ui maps  i am getting this error.
    I have taken the solution developed by team member containing test methods and trying to debug/run the test methods which contain ui maps I am getting 
    Unit Test Adapter threw exception: Unable to load one or more of the requested types.Retrieve the loader exceptions property for more information.
    When i exclude the tests that depend on ui maps and debug/run remaining test methods I am not getting this error and able to run/debug test methods successfully
    But when I include the test methods related to ui maps and tried to debug i am getting this error.
    Please help me in this.

    Thanks for Fouad's help.
    Hi usha.talasila,
    >>Unit Test Adapter threw exception: Unable to load one or more of the requested types.Retrieve the loader exceptions property for more information.
    Generally this error would be related to the references. Like Fouad's suggestion, you would check whether there are specific references in your test project, and then right click the reference->property, and then set the Copy Local =true.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Office App Devlopment: Unable to load one or more of the requested types.

    I'm receiving the following error with the default C# Office App for Word, Excel, Powerpoint, Project Task Pane
    Error Code
    Description
    File
    Line
    Col
    Project
     1
    Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
    C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\SharePointTools\Microsoft.VisualStudio.SharePoint.targets
    438
    5
    AppName
    I'm using
    Microsoft Visual Studio Community 2013
    Version 12.0.31101.00 Update 4
    Microsoft .NET Framework
    Version 4.5.51641
    Installed Version: Professional
    LightSwitch for Visual Studio 2013   06177-004-0444002-02129
    Microsoft LightSwitch for Visual Studio 2013
    Team Explorer for Visual Studio 2013   06177-004-0444002-02129
    Microsoft Team Explorer for Visual Studio 2013
    Visual Basic 2013   06177-004-0444002-02129
    Microsoft Visual Basic 2013
    Visual C# 2013   06177-004-0444002-02129
    Microsoft Visual C# 2013
    Visual C++ 2013   06177-004-0444002-02129
    Microsoft Visual C++ 2013
    Visual F# 2013   06177-004-0444002-02129
    Microsoft Visual F# 2013
    Visual Studio 2013 Code Analysis Spell Checker   06177-004-0444002-02129
    Microsoft® Visual Studio® 2013 Code Analysis Spell Checker
    Portions of International CorrectSpell™ spelling correction system © 1993 by Lernout & Hauspie Speech Products N.V. All rights reserved.
    The American Heritage® Dictionary of the English Language, Third Edition Copyright © 1992 Houghton Mifflin Company. Electronic version licensed from Lernout & Hauspie Speech Products N.V. All rights reserved.
    Windows Phone SDK 8.0 - ENU   06177-004-0444002-02129
    Windows Phone SDK 8.0 - ENU
    Application Insights Tools for Visual Studio Package   1.0
    Application Insights Tools for Visual Studio
    ASP.NET and Web Tools   12.4.51016.0
    Microsoft Web Developer Tools contains the following components:
    Support for creating and opening ASP.NET web projects
    Browser Link: A communication channel between Visual Studio and browsers
    Editor extensions for HTML, CSS, and JavaScript
    Page Inspector: Inspection tool for ASP.NET web projects
    Scaffolding: A framework for building and running code generators
    Server Explorer extensions for Microsoft Azure Websites
    Web publishing: Extensions for publishing ASP.NET web projects to hosting providers, on-premises servers, or Microsoft Azure
    ASP.NET Web Frameworks and Tools 2012.2   4.1.21001.0
    For additional information, visit http://go.microsoft.com/fwlink/?LinkID=309563
    ASP.NET Web Frameworks and Tools 2013   5.2.21010.0
    For additional information, visit http://www.asp.net/
    Common Azure Tools   1.3
    Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.
    Microsoft Azure Mobile Services Tools   1.3
    Microsoft Azure Mobile Services Tools
    NuGet Package Manager   2.8.50926.663
    NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/.
    Office Developer Tools for Visual Studio 2013 ENU   12.0.31105
    Microsoft Office Developer Tools for Visual Studio 2013 ENU
    PowerShell Tools   1.3
    Provides file classification services using PowerShell
    PreEmptive Analytics Visualizer   1.2
    Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product.
    SQL Server Data Tools   12.0.41012.0
    Microsoft SQL Server Data Tools
    Windows Phone 8.1 SDK Integration   1.0
    This package integrates the tools for the Windows Phone 8.1 SDK into the menus and controls of Visual Studio.
    From looking at the build it looks like the web part is building correctly but the application isn't passing validation, I have no idea why since it is the default app, I've made Office Apps on previous machines without a problem.
    Any help would be much appreciated and also let me know if I can give more info!

    Hi mngfinney,
    >> From looking at the build it looks like the web part is building correctly but the application isn't passing validation, I have no idea why since it is the default app, I've made Office Apps on previous machines without a problem.
    I’m trying to reproduce your issue but failed.
    Here is my steps:
    #1 Install Microsoft Visual Studio Community 2013
    #2 Install Microsoft Office Developer Tools for Visual Studio 2013
    #3 Create a new Apps for Office project and rebuild
    According your error message, the failed step is ValidatePackage, I suspect it is an environment issue, but I cannot identify the root cause basing on the information you post.
    Have you tried to re-install the Visual Studio and Microsoft Office Developer Tools for Visual Studio 2013 or test it on another machine with Microsoft Visual Studio Community 2013?
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SGEN: error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

    Hi,
    I appollogize if this post is off topic. I have problem wiht publish WebApp MVC.
    I have website (MVC) with one Web reference. Build and run in VS working. But when I tried to publish to disk I get error:
    SGEN: error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
    I have VS2013 Profesional with all updates and Windows 8.1.
    If I remove web reference then publishing working. Where can be a problem? Thanks.

    @Marek Bober,
    Thanks for sharing the solution back to here.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to load one script (Iphone revision issue)

    Hi,
    I'm unable to load one of my scripts through any browser or the desktop app, although I still can through the Iphone app. I believe it stopped working correctly after I made a comment on my Iphone. I was logged in on my comp and tried to make a comment on my phone, it told me I couldn't. I came back maybe five mins later and tried again and this time it seemed to work. I'm guessing this caused a revision issue but I can't open the script to manage revisions. Adobe Story becomes non responsive as it tries to 'open editor' and I have to close it (I don't have to shut it down using task manager). Using Windows 7 64bit and am a creative cloud subscriber.
    Thanks, really need access to this script!
    Jack

    Thanks, it works! Relief!
    Yeah, I had it open in the iphone app and the browser. Then made a comment on the Iphone - the app told me I couldn't. I tried it again on the iphone a bit later (thinking the browser version may have locked) and no error message came up this time. However, later on I could no longer open the script in the browser version - or the desktop app. I could still access it on the iphone app and the next day I thought if I made more comments on the iphone it might fix it, by making the iphone app version obviously the newer version, but alas it didn't so I came on here and asked for help

  • Firefox freezes or lock's , it dose load one page before it locks

    firefox will load one tab , then freezes or locks up . i have read the help , and treis one's that where close!! , but ? no luck!!!

    This is how my problem began on my Vista system (for details, see: https://support.mozilla.com/en-US/questions/852169). Then it started hanging when I tried to open PDFs. Then when I clicked on oh, just about anything. None of the known fixes that applied to the issues I was having caused them to cease. Eventually, Firefox just refuses to open at all...am still wondering what the heck happened???

Maybe you are looking for