Cube's size report

Hi all,
Because of performance issue I want to collapse some cubes in my BW system.
I want to know if there is any report that can show me a list of all cubes and size/usage of these cubes.
Thanks in advanced.
Miki,
SAP Basis

As other have mentioned, DB02, will provide database storage allocations for each table and index, you'll just need to wild card the InfoCube Name to get the E and F fact tables, D dimension tables, ans all the associated indices.  You would have to get the aggregates as a separate piece.
Maybe you don't care about storage, but are looking for row counts.  If that is the case RSRV has a test you can run- Under All Elementary Tests / Database is a test called Database Information about InfoProvider Tables.  It provides the following:
Database information about InfoProvider 0BWTC_C02 tables
0BWTC_C02 is a BasisInfoCube
Cube 0BWTC_C02 has 6 dimensions; 2 dimensions are line item dimensions
Table /BI0/D0BWTC_C021 has 55184 entries. Size corresponds to 48% of the InfoCube
Table /BI0/D0BWTC_C024 has 160580 entries. Size corresponds to 140% of the InfoCube
Table /BI0/D0BWTC_C02P has 58 entries. Size corresponds to 0% of the InfoCube
Table /BI0/D0BWTC_C02T has 963 entries. Size corresponds to 1% of the InfoCube
Table /BI0/E0BWTC_C02 has 102791 entries. Size corresponds to 89% of the InfoCube
Table /BI0/F0BWTC_C02 has 12275 entries. Size corresponds to 11% of the InfoCube
Keep in mind this info is based on the database statistics, so if they are stale for some reason, your row counts will be off.
As for usage, the BW Statistics business content queries can identify that, although for what you are looking for it might be easier to use ST03N in Expert Mode.  It provides access to the last couple of months of the same data, summarized at InfoProvider and Query levels.
Also your DBA should be able to get you this info from DBA_TABLES (Oracle environment)
TABLE_NAME        NUM_ROWS    BLOCKS
/BI0/ABBP_CON00   8864658     379455
/BI0/ABBP_CON40   17630       832
/BI0/ABBP_CON50   0           1
/BI0/ABBP_DS100   2947678     152065
/BI0/ABBP_DS140   1723        76
/BI0/ABBP_DS150   0           1
/BI0/ABBP_INV00   3040014     141501
/BI0/ABBP_INV40   5400        280
/BI0/ABBP_INV50   0           1
Where blocksize is site specific, although typically 8K.

Similar Messages

  • Number of records in Cube and in report

    Hi,
    Is it possible to have less number of records visible in InfoCube and in reporting report has to show all the records?i.e., if cube contains 100000 records while using InfoCube--->manage and checking the data it has to show only 90000 records,while reporting it has to show all the records.If it is possible how?

    If you want all the records to be displayed on the report as in the cube create a report having all chars & keyfigures with no filters.
    Sry, I dont get the 90000 part..."checking the data it has to show only 90000 records" -- checking where & how ?
    <b>**Added</b> will be the num of records in the cube.

  • CLibInit size in "Generate Size Report"

    I've got a handful of projects that use the Box2D Alchemy Port and noticed for each of them the size of cmodule.Box2D.CLibInit in the "Size Report" from Flash is different. The size seems to increase with the size of the project, but why would CLibInit be different sizes if it is exactly the same library / SWC?

    Hi Kong,
    Try with following example:
    REPORT ZFONT NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 65.
    NEW-PAGE PRINT ON.
    PRINT-CONTROL FUNCTION 'SF000'.
    WRITE: / 'This is CPI 20'.
    PRINT-CONTROL FUNCTION 'SF020'.
    WRITE: / 'This is CPI 6'.
    PRINT-CONTROL FUNCTION 'SF008'.
    WRITE: / 'This is CPI 12'.
    PRINT-CONTROL FONT 1 LPI 6.
    WRITE: / 'font 1 lpi 6'.
    PRINT-CONTROL FONT 2 LPI 6.
    WRITE: / 'font 2 lpi 6'.
    PRINT-CONTROL FONT 3 LPI 6.
    WRITE: / 'font 3 lpi 6'.
    End of print-control
    NEW-PAGE PRINT OFF.
    End of Program
    thnks
    Anurodh

  • Tablespace size report for SQL and oracle servers

     
       Hi All
      is it possible to get tablespace size for all sql and oracle server in the form of report in SCOM.
      Regards
      Madhavi

    Oracle: Table size report of Oracle is depend on the MP which yu imported into SCOM
    SQL :
    1) Create a group which contains folowing dynamic rule
    2) Reporting workspace --> Microsoft Gneric Report --> Performace Detail
    3) in the parameter area, create a new series, add group which create in step 1) and select the rule: MSSQL XXX: Collect Database Allocated Size(MB)
    4) Run the report
    5) In the report, click actions and select "Performance details for every object"
    Roger

  • File size reported reported differently

    Can someone help me explain why this file size is reported differently depending whether you list file or folder properties:
    This is an Azure Basic_A1 VM. Drive E: is standard VHD attached to the VM (Page Block Storage).
    This is an active/open file that is currently being written to, and is growing in size.
    How is it that file size is reported as 8 GB if you query the folder, and 24 GB if you query the file?
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

    I ran this script for the last 8 or so hours out of this 19 hour upload:
    $Folder = "e:\Backups\Sam Client\To Azure Page Block Repository"
    $Log = "c:\Sandbox\Upload4.csv"
    Write-Output '"FileQuery","FolderQuery","Time"' | Out-File $Log
    Do {
    $a = (dir "$Folder\To Azure Page Block Repository2014-09-23T051450.vbk").length/1GB
    $b = (dir $Folder)[1].length/1GB
    cls
    Write-Host "File size reported from file list: $('{0:N2}' -f $a) GB" -ForegroundColor Green
    Write-Host "File size reported from folder list: $('{0:N2}' -f $b) GB" -ForegroundColor Yellow
    dir $Folder | FT -AutoSize
    Write-Output """$a"",""$b"",""$(Get-Date -Format 'hh:mm:ss tt')""" | Out-File $Log -Append
    Start-Sleep -Seconds 10
    } while ($a -ne $b)
    That collected over 3,000 sampling points that are 10 seconds apart. I then graphed that data:
    The vertical axis is file size in GB, the horizontal axis is time (not directly - it's sampling points)
    And you can see file size as reported by folder query lags behind file size as reported by file query. The amount of lag was upwards of 90GB at its highest point. And it took anywhere from roughly 5 minutes to 3 hours for 1 indicator to catch up with the
    other. 
    The question is why these two sets of numbers are different? Is there caching going on somewhere? Is one indicator accounting for all file blocks while the other is accounting for committed blocks only? Can someone from Microsoft shed some light on this?
    This is important to know to be able to plan disk space requirements when attempting to use Azure as backup target with large data sets regardless of the software used.
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • How to get OLAP cube objects size info?

    Hi,
    I am new at OLAP cube.
    I want to know OLAP Cube objects size information like VIEW.
    is any query to get size of Cube objects?
    Please help me out on this.
    Thank you,
    Nitin

    Nitin,
    This will give you some idea.
    *(1). Size of the whole AW:*
    select dbal.owner||'.'||substr(dbal.table_name,4) awname,
    to_char(round(sum(dbas.bytes)/1024/1024, 1), '999,999.9') as mb, dbas.tablespace_name, logging
    from   dba_lobs dbal, dba_segments dbas
    where  dbal.column_name = 'AWLOB' and dbal.segment_name = dbas.segment_name
    group by dbal.owner, dbal.table_name, dbas.tablespace_name, logging
    order by sum(dbas.bytes) desc
    *(2). Size of internal objects:*
    Each cube has an associated _STORED variable and a 'PXX' partition.
    _PRTCOMP is cube's partition's composite dimension.
    _AGGMAP  is the aggregation map that is used during aggregation of data.
    Replace table AW$BNSOLAP with the name of your AW table.
    select partname,
    round(sum(dbms_lob.getlength(awlob))/1024,0) KB
    from bawolap.aw$bnsolap
    where extnum = 0
    group by partname
    order by kb desc
    +;+

  • SCSM 2012 - all business services reporting - which cube can I report from

    I want to report on all business services, does anyone know which cube i can report on business services from? any other advise relating to this appreciated.

    Hello,
    Same question here, have you find a response to your question ?
    I'm very interested...
    Regards.

  • No Image Size menu or Message Size report in New Message window

    Greetings all,
    New iMac user (OS X 10.5.8, Mail 3.6). In scanning Mac Help & the Apple Support forums, I note numerous references for Mail 3.6 to an Image Size Menu button at bottom right of Compose window, and a Message Size window at the bottom left. Have never seen these items. Are they hidden? If so, what is the reveal? Appreciate any assistance. Thank you.
    Gallery Info

    To All,
    After sending in my question, I went back to Mail Help & noticed that images could be attached by dragging from Photo Browser or Desktop or Finder, or by clicking on the 'Paperclip' icon. We had only ever used the 'Paperclip'. Dragged an image from the Photo Browser and both Message Size report & Image Size menu button appeared. Then went back and tried Desktop, Finder & 'Paperclip'. Now, the two items appear, whichever method is used. Doesn't work on all .jpg images, but is sufficient for the need.
    Guaranteed that if original question wasn't submitted, never would have found out how it works. Many thanks to Apple Discussions.
    Gallery Info

  • Is there any options to disable a cube to do reporting

    hi all,
    There is an option in ods which enables that particular ods is not available for bex reporting. Is there any option for cube too to disable that particular cube for bex reporting. if so pls let me know the procedure.
    thanxs in advance
    hari

    HI
    0infoprov is an infoobject which gives the values of all your infoproviders which are there in your multiprovider..
    You can drag and drop this info object into filter condition and right click on this objectd>restrict>you can drag and drop your required infoproviders
    Hope it helps
    Thanks
    Teja

  • Internal Email Recipients by Size report

    Hi,
    Is IronPort had "Internal Email Recipients/Senders by Size" report ?
    I see this information in Mail Flow Central reports, but not in IronPort reports....

    Hi,
    Thanks for the answer.
    I am looking for "Internal Email Senders/Recipients by Size" part of MFC Volume Report by User. See example below
    or page 64 of MFC 1.4 User Guide
    Is any way exist to add this information to IronPort reports ?
    Internal Email Recipients by Size
    Envelope Recipient Messages % Virus Positive % Spam Positive Total Message Size
    Virus Spam Positive Suspect Spam Total
    anatsh@*.*.* 0 0 0 44 0.0% 0.0% 77.06 (MB)
    iditm@*.*.* 0 4 0 13 0.0% 30.8% 34.98 (MB)
    tehilak@*.*.* 0 3 0 60 0.0% 5.0% 28.47 (MB)

  • [svn:fx-trunk] 14462: Quick fix to ensure total byte counts are accurate for -size-report.

    Revision: 14462
    Revision: 14462
    Author:   [email protected]
    Date:     2010-02-26 14:11:20 -0800 (Fri, 26 Feb 2010)
    Log Message:
    Quick fix to ensure total byte counts are accurate for -size-report.
    QE notes: None
    Doc notes: None
    Bugs: SDK-25600
    Reviewer: Paul
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25600
    Modified Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SizeReport.java

    If this is textual input (as in a CSV file), you wouldn't use a DataInputStream or DataOutputStream. Use FileReader and FileWriter objects instead.
    Actually, unless this is a homework assignment that tells you to write it yourself, you should just use a library that can parse and format CSV files and just use that.
    My battle plan is to count the number of rows and commas. I would then use these counts in my subsequent loops. Why? What is the purpose of those counts?
    Personally, I'd suggest that you start by writing a method that does the changes you need on a single line of input. (The changes you describe sound like they can all happen on a per-line basis.) Write lots of unit tests to try out various inputs and that you get the correct outputs, given the changes you say you need on a given line.
    When you're done with that and have it working perfectly, then you can write the code to read a file, loop through it, call the method that fixes a single line, and then output that line.

  • Generating size report for Flex project

    How do I do this? I would like to see a breakdown of asset
    and code sizes like the one shown in Flash when "generate size
    report" is selected...thanks!

    Not that I would recommend this in most case's but if the
    PDF's do not need to be dynamic you could use something like PDF995
    and send your page to it as a formatted print job. I had a client
    that wanted printouts from Filemaker in PDF so they could Email
    them to a list. Had to be automated so we just set up a print
    script in filemaker to print to a PDF converter. Don't think it was
    actually PDF995 and I do not remember what it was but I mention
    PDF995 because I use it at home. You just need something where the
    API allows you to specify the location to save too and the name of
    the file as part of the printjob. Send the files to a standard
    location on your server and trap the name of the file in a
    database. Bingo. Easy PDF's.
    Of course the alternate option is to auto generate your chart
    as a web viewable formatted for print version. As it changes notify
    your users with an email link of where to view it and then let them
    print their own PDF using PDF995 or other such utilities if they
    want to.
    And then get back to the Game of Half-Life2 Death Match going
    on in the server room.

  • Simultaneous data activation in cube - request for reporting available

    Hi,
    I'm on BW 3.5.
    I am loading several million records to a cube, processing is to PSA first and subsequently to data target.
    I have broken the load up into 4 separate loads to prevent caches from filling up and causing huge performance issues.
    When I load all the data in a single load, it takes 10 hours to load.  When I break it up into 4 loads it takes 3 hours.
    My problem is that during the loading from PSA to data target, the first data load becomes green and ready for reporting before the last one has finished loading, and so the users get inaccurate report results if they happen to run a report before the last request activates.
    Is it possible to get all 4 requests to activate simultaneously?
    I have tried adding an aggregate to the cube, no good.
    I have tried loading the 4 loads to the PSA in sequential order in the process chain, and then loading from PSA to data target simultaneously (side by side), no good.
    Does anyone have a solution?
    Many thanks,
    Paul White

    Hi ....
    Have you done the Roll up ?
    Since aggregates are there on that cube....until and unless you do the roll up that request will not be available for Reporting...
    Regards,
    Debjani....

  • Cube with different reports data

    Hi
    We have 3 different Reports based on a Multi which has only one Infocube.
    We have new design policy that any New different report that needs to be created should be based only on this Multi and all data should be loaded only into this only infocube on which this Multi is based.
    So for the existing 3 reports,we have three different database views in source database.Fullload will be done from source every weekend(previous week's request will be deleted every week) of snapshot data into three different DSOs from these three different datasources.(Its new policy that every report should have its own DSO ).All these 3 DSOs should be connected to only one cube on which our reporting Multiprovider is based.So from these 3 DSOs,data will be loaded into cube in fullload every weekend(previous week's request will be deleted)
    Now my question is:
    1.when all the data is going to cube from three different views and DSOs(with different keyfigures but some same characteristics in 3 DSOs),how can our 3 different reports pick data that is relevant for it when all data is pooled together in one big cube?Doesnot aggregation happens?
    (When a report is run,does OLAP processor goes into cube and picks only those keyfigures and characteristics in cube thats relevant for that report and by that way,avoids other data??)
    2.I need to create one new report.For this I need to create one new view and one new DSO.So,data will be loaded from view to DSO and this DSO will be connected to existing cube(new dataflow until cube from source view).But our cube doesnot contain one keyfigure.It contains all other characteristics and keyfigures from DSO.
           a)How can I add this new keyfigure from new DSO to cube without disturbing existing data in cube.I donot need to load historical data for this new keyfigure and new report.
          b)I am going to transport this from development.So what care do I need to take while transporting changes to Production cube which contains lots of data and many reports running on it?
    Thanks.

    *1.when all the data is going to cube from three different views and DSOs(with different keyfigures but some same characteristics in 3 DSOs),how can our 3 different reports pick data that is relevant for it when all data is pooled together in one big cube?Doesnot aggregation happens?
    (When a report is run,does OLAP processor goes into cube and picks only those keyfigures and characteristics in cube thats relevant for that report and by that way,avoids other data??)*
    It will depend on what Key Figures you are displaying in your report. If a KF is coming from only 2 DSOs, data from those 2 DSOs will be displayed.  And you are right in saying that OLAP processor will pick only releavnt KFs and Characteristics but it will not filter based on characteristic value e.g. if a characteristis is coming only from DSO 1 and not from DSO2, but KF is coming from both, so for the data in DSO 2 that characteristic will be displayed as #. If you want to filter data, you can put filters in the report.
    Another good option can be to store the DSO name as a characeteristic in your cube, it might be helpful if you want to make a reprot based on data from a particular DSO, then you can put the filter based on DSO name.
    *2.I need to create one new report.For this I need to create one new view and one new DSO.So,data will be loaded from view to DSO and this DSO will be connected to existing cube(new dataflow until cube from source view).But our cube doesnot contain one keyfigure.It contains all other characteristics and keyfigures from DSO.
    a)How can I add this new keyfigure from new DSO to cube without disturbing existing data in cube.I donot need to load historical data for this new keyfigure and new report.
    b)I am going to transport this from development.So what care do I need to take while transporting changes to Production cube which contains lots of data and many reports running on it?*
    You are adding a new KF which is coming only from new DSO, so you do not need to worry about a lot of things, you can move your changes to procudtion and load data from this new DSO. Data which is already there in the cube will not be impacted.
    Regards,
    Gaurav

  • Report using GL Hierarchy directly from a cube in crystal reports

    Hi,
    I am trying to build a crystal report showing GL account hierarchy ( a P n L report). When I am trying to source this field from the BW cube directly its not showing up on the report preview at all. 
    I built something similar with hierarchy using a Bex query which worked fine. I am curious what it is that could possibly be missing here.
    Let me know if you need more information from me to explain the issue.
    Thanks in advance.
    Regards
    Varun

    Hi,
    when you use the BW query you should have the hierarchy in Crystal Reports.
    When you connect to the cube directly you should see all the hierarchies from the cube.
    take a look here:
    /people/ingo.hilgefort/blog/2008/02/27/businessobjects-and-sap-part-3
    Ingo

Maybe you are looking for

  • 0FI_AR_4 Arithmetic overflow while extracting delta

    Hi All, While extracting 0FI_AR_4 delta from R/3 only data packages 2-4 were recieved in BW. Data package 1 is missing and the load was terminated with an error: "Arithmetic overflow error converting numeric to data type numeric.#3621 The statement h

  • QuickTime/Flash problem with Firefox - Redux

    I know people are having problems getting Flash content to play on the latest version of Firefox (7) for Macs. I know it has something to do with QuickTime interceding on behalf of Flash Player and screwing with Firefox's mind. Following instructions

  • MBeanServer location in JNDI tree

    Hello, I'm testing methods that use a MBeanServer from JConsole and MBean browser in EM console. I launch the JConsole using this parameters: jconsole -J-Djava.class.path=/home/user/wlfullclient-10.3.5.0.jar:/usr/java/jdk1.6.0_30/lib/jconsole.jar -J-

  • Using string in if sentance?

    I've had some problems with checking a string in an if sentance. String var = "text"; if (var == "text") { blablabla This doesn't work if var is set to String. How can I solve it, switch doesn't work either. It doesn't fail to compile, and the variab

  • Error adding new business partners

    Hi all, When we try to add new business partners, we get the system error message stating "Accounts receivable/payable is missing [Business Partner - Accounts Receivable/Payable]  [Message 3502-14].   This is a bit of a worry as it does note happen i