Help with... Aggregate Rollup too slow!!!

Hi, I installed the BW Admin Cockpit and I am having problems with an Aggregate Rollup on InfoCube 0TCT_C22 DTP Statistics.  The Initial Fill was 1.5million records and I have yet to get the Aggregate to Fill after 13+hours.  Any ideas why this would take sooo long?  Would deleteing the agg indexes help with this or do I even have to consider this?
Thanks for any ideas!

Thanks for the quick response.   There seem to be no logs since nothing has completed and I have ended the long running jobs.  I will take your point and Compress the InfoCube.   Could you help with your suggestions a little more?
1. Build Aggregate in Parallel.
    There is only one large initial request so I don't think this is possible?
2. SIDS in Parallel
    How do you specify this for an aggregate using RSBATCH?
3. What might be a valid range of Block Size to start with that might work?  1, 100, 10000, 1000000?
Thanks again!

Similar Messages

  • Help! macBook is too slow, haven't updated in months, rehilete always appears? What should I do?

    HELP! My MacBookPro is too slow, rehilete always appears, haven't Updated in months, is that the problem? What should I do?

    MaryKarmen wrote:
    HELP! My MacBookPro is too slow, rehilete always appears, haven't Updated in months, is that the problem? What should I do?
    Can you explain what  "rehilete always appears" means?

  • Report with Multiple queries too slow in BI Publisher 11g

    Hi, I have a report in 11g where i need to create multiple queries to show them in report. I tried to combine everything in one query, but i found that the query is too huge and hard to understand and maintain. I created 3 data sets and linked them together. In SQL dev, the main query is returning about 315 records and first detail query returns less than 100 records and second detail query is returning one record which is BLOB. Each query returns data within a couple of seconds from SQL Developer. The entire report from BI Publisher should be just 21 page PDF output. Did anyone face performance issues while running reports with multiple queries in 11g? I ran reports that have single query which returned 10K pages PDF and never had an issue while everthing is in one query. This is the first time Iam attempting to create multiple queries. Can someone help me understand what i might be doing wrong or missing here. Thank you.

    Isn't there a way for you to do this via a Package/Procedure versus having multiple queries?
    Per the BI Publisher guide,
    Following are recommended guidelines for building data models:
    Reduce the number of data sets or queries in your data model as much as possible. In general, the fewer data sets and queries you have, the faster your data model will run. While multiquery data models are often easier to understand, single-query data models tend to execute more quickly. It is important to understand that in parent-child queries, for every parent, the child query is executed.
    You should only use multiquery data models in the following scenarios:
    To perform functions that the query type, such as a SQL query, does not support directly.
    To support complex views (for example, distributed queries or GROUP BY queries).
    To simulate a view when you do not have or want to use a view.
    Thanks,
    Bipuser

  • HELP with Kernel Task PLEASE slow MB air

    Hello all,
    I am new to MAC and have been using my 4GB air for 6 months now with no issues, all good.
    Im not sure why but my memory reader thing i downloaded is always red and low and see a kernel task running? i have noticed slow systems recently which is not good.
    Would anyone be so kind as to help a newbee fix this? i have ran a few reports from the activity monitor (spin dump and diagnostics) but have no clue what now
    Any help please?
    Thanks
    Andrew
    Date/Time:             2015-01-05 17:48:42.905 +0000
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        E4295DDC-8FCA-022A-D2D4-6F031324EB05
    Sleep/Wake UUID:       587B64D6-3E1A-4BF5-9FF3-790932FF1B44
    Time Awake Since Boot: 14000 seconds
    Time Since Wake:       5800 seconds
    Crashed Thread:        2
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000100ce6888

    Serious? Man , i have only just got it back! its had a new logic board fitted and also a new led display board and its only 5 months old!
    I really don't want to take this back if its something simple, but if you guys think something is not right then i will.
    issues are intermit freezing when just surfing the net ( hard reset needed )
    And also now these intermit kernel panics for no reason, again just surfing the net. ( hard reset needed )
    Apple are lucky i have a sense of humour!

  • Help with Aggregate on Interactive Report

    I have a field that is a number but I need to convert to show as a percentage (i.e. 17.4%) in the interactive report. At the same time I need to be able to do an Aggregate on this field so I know it needs to stay a numeric and I can't convert in the SQL. Is there a way to use the number format mask on the column to add the percentage or another way that will allow me to still perform aggregates?
    Version: Application Express 3.2.1.00.12
    Thanks for your help.
    Chris

    Anyone have any suggestions?
    Thanks.

  • Help with aggregate function max query

    I have a large database which stores daily oil life, odo readings from thousands of vehicles being tested but only once a month.
    I am trying to grab data from one month where only the EOL_READ = 0 and put all of those values into the previous month's query where EOL_READ = anything.
    Here is the original query which grabs everything
    (select distinct vdh.STID, vdh.CASE_SAK,
    max(to_number(decode(COMMAND_ID,'EOL_READ',COMMAND_RESULT,-100000))) EOL_READ,
    max(to_number(decode(COMMAND_ID,'ODO_READ',COMMAND_RESULT,-100000))) ODO_READ,
    max(to_number(decode(COMMAND_ID,'OIL_LIFE_PREDICTION',COMMAND_RESULT,-100000))) OIL_LIFE_PREDICTION
    from veh_diag_history vdh, c2pt_data_history cdh
    where vdh.veh_diag_history_sak = cdh.veh_diag_history_sak
    and cdh.COMMAND_ID in ('EOL_READ','ODO_READ','OIL_LIFE_PREDICTION')
    and vdh.LOGICAL_TRIGGER_SAK = 3
    and cdh.CREATED_TIMESTAMP =vdh.CREATED_TIMESTAMP
    and cdh.CREATED_TIMESTAMP >= to_date('03/01/2007 12:00:00 AM','mm/dd/yyyy HH:MI:SS AM')
    and cdh.CREATED_TIMESTAMP < to_date('04/01/2007 12:00:00 AM','mm/dd/yyyy HH:MI:SS AM')
    group by vdh.STID, vdh.case_sak
    having count(distinct command_id) = 3
    order by OIL_LIFE_PREDICTION)
    which gives 5 columns:
    STID, CASE_SAK, EOL_READ, ODO_READ, and OIL_LIFE_PREDICTION
    and gives me about 80000 rows returned for the above query
    I only want one reading per month, but sometimes I get two.
    STID is the unique identifier for a vehicle.
    I tried this query:
    I tried this query which nests one request within the other and SQL times out every time:
    select distinct vdh.STID, vdh.CASE_SAK,
    max(to_number(decode(COMMAND_ID,'EOL_READ',COMMAND_RESULT,-100000))) EOL_READ,
    max(to_number(decode(COMMAND_ID,'ODO_READ',COMMAND_RESULT,-100000))) ODO_READ,
    max(to_number(decode(COMMAND_ID,'OIL_LIFE_PREDICTION',COMMAND_RESULT,-100000))) OIL_LIFE_PREDICTION
    from veh_diag_history vdh, c2pt_data_history cdh
    where vdh.veh_diag_history_sak = cdh.veh_diag_history_sak
    and cdh.COMMAND_ID in ('EOL_READ','ODO_READ','OIL_LIFE_PREDICTION')
    and vdh.LOGICAL_TRIGGER_SAK = 3
    and cdh.CREATED_TIMESTAMP =vdh.CREATED_TIMESTAMP
    and cdh.CREATED_TIMESTAMP >= to_date('02/01/2007 12:00:00 AM','mm/dd/yyyy HH:MI:SS AM')
    and cdh.CREATED_TIMESTAMP < to_date('03/01/2007 12:00:00 AM','mm/dd/yyyy HH:MI:SS AM')
    group by vdh.STID, vdh.case_sak
    having count(distinct command_id) = 3
    and vdh.stid in (select distinct vdh.STID, vdh.CASE_SAK,
    max(to_number(decode(COMMAND_ID,'EOL_READ',COMMAND_RESULT,-100000))) EOL_READ,
    max(to_number(decode(COMMAND_ID,'ODO_READ',COMMAND_RESULT,-100000))) ODO_READ,
    max(to_number(decode(COMMAND_ID,'OIL_LIFE_PREDICTION',COMMAND_RESULT,-100000))) OIL_LIFE_PREDICTION
    from veh_diag_history vdh, c2pt_data_history cdh
    where vdh.veh_diag_history_sak = cdh.veh_diag_history_sak
    and cdh.COMMAND_ID in ('EOL_READ','ODO_READ','OIL_LIFE_PREDICTION')
    and vdh.LOGICAL_TRIGGER_SAK = 3
    and cdh.CREATED_TIMESTAMP =vdh.CREATED_TIMESTAMP
    and cdh.CREATED_TIMESTAMP >= to_date('03/01/2007 12:00:00 AM','mm/dd/yyyy HH:MI:SS AM')
    and cdh.CREATED_TIMESTAMP < to_date('04/01/2007 12:00:00 AM','mm/dd/yyyy HH:MI:SS AM')
    group by vdh.STID, vdh.case_sak
    having count(distinct command_id) = 3
    and (max(to_number(decode(COMMAND_ID,'EOL_READ',COMMAND_RESULT,-100000)))) = 0)
    order by OIL_LIFE_PREDICTION
    so in summary I am trying to select values from the previous month only from those stids where this month's value for EOL_READ = 0
    Any ideas.....please help.

    You can use row_number() within each stid and each month to determine the first read of each month. Then you can use lag() to get the previous month's reading of the current month's reading is zero.
    with all_data as (
    select stid,
           case_sak,
           eol_read,
           timestamp,
           row_number() over (partition by stid, trunc(timestamp,'mm') order by timestamp) AS rn
      from veh_diag_history
    select stid,
           case_sak,
           case
             when eol_read = 0
               then lag(eol_read) over (partition by stid order by timestamp)
             else eol_read
           end as eol_read
      from all_data
    where rn = 1;

  • Help with internet loading really slow

    can anyone help me please my phone is a n95 8 gb and the net is so slow loading if it does at all sometimes even on my home broadband connection its slow any idears on how to speed it up please

    It's definitely Mac OS X then. To see exactly which version you are running, click the Apple Menu  then click; About This Mac. The version number will be displayed there. Should be 10.5.x
    Please click My Settings on the right side of this window and update your profile.
    Which internet provider is this? Are you using Safari/Firefox ??? More details please.

  • After my iPad 3 update to iOS 7.0. I have problem with keyboard . Too slow to type one word , it takes 10 second by type one word. If anyone know how to solve it , please kindly let me know. Thanks !

    Please help me with this problem , thanks !

    Try this now, reset all settings. You will have to enter all device settings again, but you will not lose any data. After you reset all settings, reboot the iPad again.
    Settings>General>Reset>Reset all settings.

  • Is this first back up with Time Machine too slow?

    I'm running my first backup onto a new Western Digital Essential 1 terrabyte via a USB connection.
    It started at 2AM. It's now 9AM and the progress bar reads:
    "16.5 Gigs of 118 Gigs"
    That's a little better than two gigs an hour.
    This seems very slow to me and I'd like to know if that impression is correct. At that rate it seems like the back up will take more than two days.
    Is this "normal?"
    The technical stuff from System Profiler is:
    OS: 10.5.8
    Model Name: Power Mac G4
    Model Identifier: PowerMac3,6
    Processor Name: PowerPC G4 (3.3)
    Processor Speed: 1.25 GHz
    Number Of CPUs: 1
    L2 Cache (per CPU): 256 KB
    L3 Cache (per CPU): 1 MB
    Memory: 2 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.4.8f2
    My Book 1110:
    Capacity: 930.86 GB
    Removable Media: Yes
    Detachable Drive: Yes
    BSD Name: disk4
    Product ID: 0x1110
    Vendor ID: 0x1058 (Western Digital Technologies, Inc.)
    Version: 20.03
    Serial Number: 574341563541373730353233
    Speed: Up to 12 Mb/sec
    Manufacturer: Western Digital

    vanderleun wrote:
    I'm running my first backup onto a new Western Digital Essential 1 terrabyte via a USB connection.
    It started at 2AM. It's now 9AM and the progress bar reads:
    "16.5 Gigs of 118 Gigs"
    That's a little better than two gigs an hour.
    This seems very slow to me and I'd like to know if that impression is correct.
    Yes, that's ridiculous. While Time Machine backups are slower than just copying things, and especially slower at the beginning, you should get roughly 40 - 60 GB/hour, on average.
    First, make sure the drive is set up properly, per #C1 in Time Machine - Troubleshooting (or use the link in *User Tips* at the top of this forum).
    If so, try the things in the green box of #D2 there. Most of them can be done without cancelling the backup.

  • Having trouble with The streaming too slow, my other devices have perfect connection and the airport App shows my wifi connections are fine, Wheaton could bebthe problema?

    Having trouble with The speed of my streaming wifi and internet connectionn work fine, ir seems The problem starter when i upares my airport bases, any support would be appriciated

    Welcome to the Apple Community.
    What exactly are you trying to stream when you have thes problems.

  • HT3529 My iPhone with sprint is too slow

    When I try to sand a picture or video won't sand till 3day after

    First upgrade your phone. Your ios is outdated.

  • "Disk Too Slow..." problem solved...for me

    Lately my Macbook and Logic have been driving me nuts with the "Disk Too Slow" error message. But I notice it was happening on one particular song. I'll cut right to the chase....delete unused tracks. After doing this the song played thru without a peep. And has been doing so ever sense. The cpu meter shows little or no activity. I am happy and all is right in the universe. Just thought I'd pass it along. Your milage may vary.

    Yep.....it all makes sense now. The song was created on my i5 iMac. Empty tracks not a problem there. I got wise when freezing the tracks didn't help. So I temporary deleted all my audio regions except those on ONE track. Still got the error message. So I froze that track and STILL got the message. ***? So I reloaded the song and deleted all unused tracks and, well, the rest is history. For what it's worth, 4 of those tracks were audio instrument and 8 were rewire tracks. I suspect the rewire tracks were the actual hogs, but I don't care at this point. Just happy to get some work done on the laptop. Your tip makes perfect sense as well.

  • Error Message: Disk too slow or System Overload

    hey guys
    during playback i keep receiving an error message reading: Disk too slow or System Overload. I was wondering if anyone knew the cause of this?
    Thanks for any info

    I am sorry to hear that you are having those problems. I found this thread in the discussion board about a user having the same issues with the "Disk too slow or System Overload" error message.
    Read the thread and this may actually help you to understand what is going on:
    http://discussions.apple.com/thread.jspa?threadID=1456048
    Also, make sure you download this update that may removed several issues with your computer and any Final Cut Studio software.
    http://support.apple.com/downloads/ProKit45
    Hope this information helps,
    Vicente Tulliano

  • Disk too slow and system overload error

    I like many other users am having problems with the "disk too slow or system overload error (-10010)." It only seems to occur during playback attempts, seeing as I recorded with no problems yesterday, and only began happening today (granted, I have not tried recording anything since this started happening). I have tried changing the buffer size (still occurs at all levels), and, as per noted in a similar post, ensuring that my computer does not at any time put drives to sleep. All my sessions are stored on an external Toshiba Canvio Connect 2.0 TB drive connected directly to my computer via USB.
    My setup (I know that this is going to draw a lot of criticism) is a macbook air with 2 gb 1067 MHz DDR3 ram and a 1.4 GHz intel core 2 duo processor, running OS X 10.9.3. While I am fully aware (I promise) that these are well below the recommended numbers, I have been using this configuration since June without any problems whatsoever.

    Clancy,
    No problem!
    I also added it to the Useful links and resources for Logic Pro X  page in the tips sections....
    Cheers..
    Nigel

  • HT2510 having issues with Garage Band stating disc too slow...i have stopped ALL other apps, restarted and still having same issue....Please help!

    i have not been able to replay older Garage Band productions I have done. I got one to play and then when I edited and saved said did i want to save to newer version. I said ok...But getting repeated error that disc too slow and then starts playing in timeline but no audio then says Garage Band not responding.
    Please advise...

    Just some thoughts: You have an older Mac, so that could be part of the problem. You may have processes running in the background, or perhaps your disk is too full. Look in the Apple Knowlege Base for things like Startup Items, Launch Daemons, etc and see if you have any that you can get rid of. Also check your HD available space. If it's too full, your files are probably fragmented and spread all over the disk, which might make it respond too slowly.

Maybe you are looking for

  • Error while calling a bpel service from OSB

    Hi I try to call a BPEL service from OSB 10.3 and use these bpel url's ormi://<hostname>:<rmi port>/<domain name>/<process name> opmn://<hostname>:<opmn port>/<oc4j instance name>/<domain name>/<process name> and I create a static service account wit

  • F110 run-payment block

    Dear experts, Could any body tell me what is the use of "A-Blocked for payment" option in payment block in Edit payment proposal in F110. Once it is selected system will update block indicator in Document line item level? or will it skip in the curre

  • 10.9 Mavericks bug in Amperage Reading in ioreg

    $ ioreg -l -w0 |grep Amperage     | |           "LegacyBatteryInfo" = {"Amperage"=18446744073709550900,"Flags"=4,"Capacity"=6429,"Current"=1330,"Volt age"=7423,"Cycle Count"=28}     | |           "InstantAmperage" = 64797     | |           "Amperage"

  • Vendor consignment return has no delivery shown in VL10B

    Hi Friends, Here is my issue, Created a vendor consignment return PO 45-xx(Me21n, item Cat. K, tigged return indicator, configure error msg ME640 to W) Then I go to  VL10B, can not find my return  45-xx My question is how to configue to enable return

  • Is Frame by Frame Seek possible in Flex 4?

    Hi, I am working on a Flex player and I want to move frame by frame but the seek() function moves only in seconds.Is it possible using any other function? Plz reply. I am kind of stuck. The functionality I want is available in VLC media player. You c