What are the Disadvantages of Management Data Warehouse (data collection) ?

Hi All,
We are plan to implement Management Data Warehouse in production servers .
could you please explain the Disadvantages of Management Data Warehouse (data collection) .
Thanks in advance,
Tirumala 
 

>We are plan to implement Management Data Warehouse in production servers
It appears you are referring to production server performance.
BOL: "You can install the management data warehouse on the same instance of SQL Server that runs the data collector. However, if server resources or performance is an issue on the server being monitored, you can install the management data warehouse
on a different computer."
Management Data Warehouse
Kalman Toth Database & OLAP Architect
SQL Server 2014 Database Design
New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

Similar Messages

  • What are the uses of diffrent concepts in data warehousing

    What are the uses of diffrent concepts in data warehousing? Why?
    naveen

    Hi,
    Your statement is correct. To be crisp, the portal offers a single point of access to SAP and non-SAP information sources, enterprise applications, information repositories, databases and services in and outside your organization—all integrated into a single user experience. It provides you the tools to manage this knowledge, to analyze and interrelate it, and to share and collaborate on the basis of it.
    With its role-based content, and personalization features, the portal enables users—from employees and customers to partners and suppliers—to focus exclusively on data relevant to daily decision-making processes
    To read more visit,
    http://help.sap.com/saphelp_nw04/helpdata/en/a9/76bd3b57743b09e10000000a11402f/frameset.htm
    Regards
    Srinivasan T

  • What are the  TCu2019s in CATS to transfer data.

    Hi Experts,
    What are the  TCu2019s in CATS to transfer data. Pls replyimmediately.
    Swastik

    CAT2  -  Time Sheet (Initial Screen)
    CAT3 - Time Sheet (Initial Screen)
    CAT4 u2013 Time Sheet:Approve Time
    CAT5 u2013 Transfer to Project System
    CAT6 u2013 Transfer Time Data to HR Time Management
    CAT7 u2013 Transfer to Controlling
    CAT8 u2013 Tme Shet Documents & Follow on Documents
    CAT9 u2013 Transfer to Plant Maintenance

  • What are the disadvantages of generic delta extraction

    Hi all,
    what are the disadvantages of generic delta extraction.
    how function module generic extraction works.
    Thanks,
    Madhu.

    hi madhu,
    Pls refer ths,To learn more about Generic Extraction pls read BW350 book.
    Gereric Extraction can be done in 3 ways.
    If you go to transaction RSO2 in R/3 side, provide tech name for data source and click create.
    you will get the 3 options.
    1)From a DB Table
    2)From a DB View
    3)From Functional module/ Infoset Query
    in first option you can directly give a standard or custom build talbe name. in second option you can select the necessary fields from more than one talbe(eiter standard or custom). In third option you will create a function module or Query to extract data. When creating function modules you can use standard function modules as a template e.g. RSAX_BIW_GET_DATA_SIMPLE.
    see weblog : /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    If you want to enable delta for generic extractor you choose the option delta and provide necessary settings.
    Generic extraction is when your extraction is not satisfied by either BC or LIS/LO. It can be using a view / query/table/FM
    Here the changed records can be isentified by :
    1. Based on the date of creation or last change ( Delta based on 0Calday)
    2. Based on the record number ( Numeric Pointer )
    3. Based on time of change ( Timestamp)
    real time examples would be
    1. Master Record creation like customer ID creation
    2. Timesheets in SAP PS
    3. Invoive details / Sales Order Details.
    Pls check this web logs for clear Idea.
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    Have a look at these threads too.
    Tables
    Transfer Structure
    The steps for creating extractor using Function Module.
    1. Create new Function group (if you have already not done so) in Se80
    2. Copy Function module "RSAX_BIW_GET_DATA_SIMPLE" with suitable name.
    3. Change the code that populate data.
    Following table may give you the guideline for parameters.
    Parameter Description
    I_REQUNR (import) BW provides this request identifier. It is a system-generated identifier in the form REQU_XXXXXX. BW uses this same identifier in all function module calls that relate to a single load.
    I_DSOURCE (import) The name of the generic extractor
    I_MAXSIZE (import) The maximum number of records that BW expects to be in each data packet
    I_INITFLAG (import) A Boolean flag that indicates if this is the initialization (first) call to the function module
    I_READ_ONLY (import) A test flag not needed in most extraction scenarios
    I_T_SELECT (table) This table holds any selections from the BW InfoPackage. The function module should examine these selections and only return data that matches the selections.
    I_T_FIELD (table) This table holds the fields that BW requests
    E_T_DATA (table) The function module fills this table with data records. These records then return to BW as data packets. This table has the same structure as the extract structure defined in the generic DataSource.
    NO_MORE_DATA (exception) The function module raises this exception when no more data is available
    ERROR_PASSED_TO_MESS_HANDLER (exception) The function module raises this exception if an error occurred during the extraction. It alerts BW to check for error logs.
    Change following code to put the selection fields
    Select ranges
    RANGES: L_R_CARRID FOR SFLIGHT-CARRID,
    L_R_CONNID FOR SFLIGHT-CONNID.
    Change following to populate data
    OPEN CURSOR WITH HOLD S_CURSOR FOR
    SELECT (S_S_IF-T_FIELDS) FROM SFLIGHT
    WHERE CARRID IN L_R_CARRID AND
    CONNID IN L_R_CONNID.
    ENDIF. "First data package ?
    Fetch records into interface table.
    named E_T_'Name of extract structure'.
    FETCH NEXT CURSOR S_CURSOR
    APPENDING CORRESPONDING FIELDS
    OF TABLE E_T_DATA
    PACKAGE SIZE S_S_IF-MAXSIZE.
    Some more links:
    Re: functionmodule
    Re: FM for G. extractor
    with hopes
    Raja Singh

  • What are the Disadvantages of LSMW.

    What are the Disadvantages of LSMW?. Why BDC come into picture, even though there is LSMW. What is the main Difference between LSMW, BDC, BAPI ?.

    hi,
    <b>What are the Disadvantages of LSMW?.</b>
    I believe the problem on LSMW is the method to be used to load the data: if there are std methods (like BI or BAPI) there' no particular problem, but if there aren't you should register it, but sometimes these regitrations are not good and so you have to create an your own program.
    So if there are std methods or it needs a simple BDC obtainable by registration I prefer to use LSMW.
    <b>What is the main Difference between LSMW, BDC, BAPI ?.</b>
    LSMW creates a project to download the data in the system, several steps have to be implemented and it needs to have only few abap knowledge to implement them (the system'll generate all programs): only a good developer can create a bdc program.
    A project can be created directly in every enviroment, bdc has to be created in development system and transport from dev to prod.
    Every user can create a LSMW project, only developer can create a BDC program.
    LSMW is me to more flexible and adaptable than BDC if some modifications have to be added after creating it.
    <b><i>BAPI</i></b>
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module
    ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access.
    Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects.
    You create business objects and those are then registered in your BOR (Business Object Repository)
    which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA.
    In this case u only specify the business object and its method from external system
    in BAPI there is no direct system call. while RFC are direct system call.
    Some BAPIs provide basic functions and can be used for most SAP business object types.
    These BAPIs should be implemented the same for all business object types.
    Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs.
    Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    rgds
    anver

  • What are the two different rules for organizational data determination

    What are the two different rules for organizational data determination???

    Hi
    1) Rule type Responsibilities
    want to determine organizational data for individual responsibilities
    have not created an organizational model but want to create one
    have a lot of organizational units and must only assign a few attributes
    2) Rule type Organizational Model
    You would use rule resolution using organizational model if you
    have created an organizational model or have distributed a plan to SAP CRM and also want to use this for determining organizational data
    assign a lot of attributes to the organizational units and these are to be evaluated
    Regards
    Manohar

  • What are the prerequisite for getting MTTR / MTBR data.

    Dear SAP Experts,
    I want to know what are the prerequisite for getting MTTR / MTBR data.
    Regards
    ERP Tech

    Pre-requisites are:
    Maintain Start date in Equipment / Functional location master
    Maintain the Malfunction Start date & time, Malfunction End Date & time in Notification
    Maintain the Breakdown tick mark in notification
    Maintain update group (stats) in Notification type configuration (IMG - Plant Maintenance & Customer Service - Maintenance & Service Processing - Maintenance & Service Notifications - Notification types - Define Notification types)

  • What are the disadvantages of secondary index

    Hi all,
    Can anybody tell me what are the disadvantages of creating secondary index?
    Also tell me what are the precautions should be taken to create a secondary index?

    Hi Vinil,
    You can search on SCN with the same subject... you will get lots of threads discussed on it...
    Still for your reference...
    secondary indices use disk space, not memory space. They are only in memory when they are used. Disk space is roughly width times number of records, can be GBs.
    Main disadvantages are:
    + indexes are updated when table is changed, i.e. the additional index makes other operations slower. You must check the importance of your application, if it is much lower than the standard usage than you can not create a secondary index.
    + Secondary indices can confuse the database optimzer, especially if you use field which appear also in other indices. DB calculates usefulness of different indices by some assumptions (check other sources for details), if two indices are similar, than the assumptions can lead to wrong decisions. Your new index can be used for other statements, even when it is not optimal there. Result your index causes problems somewhere else!
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • What are the steps to restore all deleted data and settings by remote wipe? Thanks.

    What are the steps to restore all deleted data and settings by Remote wipe?

    Go to me.com, logon and go to the FindMyiPhone. If it does not appear then there is not much you can do.
    Next step would be to appleid.apple.com and change your password to cut off access to your iDisk.

  • What are the disadvantages of implementing APO- Demand Planning without improvements or cleaning up the MRP. in other words is DP implementation dependant on MRP process. Gurus please advise

    HI All. What are the disadvantages of implementing APO- Demand Planning without improvements or cleaning up the MRP. in other words is DP implementation dependant on MRP process. Gurus please advise

    Hi Amol,
    DP is the demand planning machine, here you estimate your forecast (future sales).
    The MRP is a supply planning machine, here you use estimate the replenishment.
    Both machines in a technical perspective are independent one each other. Now in a business perspective they are not: The problem that you will have if you don´t clean your MRP elements is not a problem in DP itself. I mean, you can have a very success implementation in DP, your forecast accuracy will be very good.. and you will get a very good forecast, but when the MRP run and estimate the replenishment, the effort that you made in DP will not be translated in good results and your planning situation will be still not good.
    Kind Regards,
    Mariano

  • What are the disadvantages in reuse_alv_fieldcatalog_merge

    hi
    what are the disadvantages in reuse_alv_fieldcatalog_merge.
    by using this can we create any number of field headings? is there no limit? explain in detail?

    1. reuse_alv_fieldcatalog_merge have many lititations such as you can not change the sequences of tha column. Suppose in table the fields are f1,f2,f3,f4 and f5. But in display i want the sequesce say f3,f4,f2,f1,f5. Using the fm reuse_alv_fieldcatalog_merge is not possible. But you can do it by manually process by passing the sequence in col_pos field of the fieldcatalog.
    2. Similarly you can give the column length as you wish by 'outputlen' paramater of fieldcatalog.
    3.  you can give the column heading of your own by seltext_m, seltext_l, seltext_s paramater of fieldcatalog. 
    4. You can make a field hotspot by hotspot parameter of fieldcatalog.
    5. you can emphasize a field by emphasize parameter of fieldcatalog.
    6. You can display the sum of a field by do_sum parameters of fieldcatalog.
    there are many more functionality which you can not get by FM  reuse_alv_fieldcatalog_merge.
    What you can do is that use both the FM to filled the functionality of the fieldcatalog  what you get autometically from the reuse_alv_fieldcatalog_merge and for the rest of the functinality you can add the functionality by manually append the fieldcalatog. It is call semi autometic fieldcatalog built.

  • What are the disadvantages of cloning in oracle apps?

    what are the disadvantages of cloning in oracle apps?

    928714 wrote:
    what are the disadvantages of cloning in oracle apps?This is a non-sense question.
    Please go through old threads before posting questions. Also, if you keep spamming the forum you will be banned and your account will be deleted.
    Thanks,
    Hussein

  • What are the general errors will come in data uploading

    Hi Friends,
    What are the general errors will come in data uploading
    Thanks in Advance

    Paul
    It all depends on how we configure the system. Errors may be different for different scenerios like
    User ALEROMOTE Loacked for master data's
    Data Sourcs has to be replicated
    Activation Failures
    Error occures in data Selection Etc.
    Do you have any specific error so that we can work on that.
    Thanks
    Sat

  • What are the disadvantages and advantages of type coercion??

    What are the disadvantages and advantages of type coercion?
    anyone? thanks.

    What is the relevance of your question about type coercion within the scope of "Advanced [Java] Language Topics"?

  • What are the disadvantages using VC ?

    hi,
    As adeveloper what are the disadvantages that we face if we go with VC instead of webdynpro.can future enhancements possible ,if we develop our application in VC.please help me out.
    thanks
    kishore
    Edited by: kishore shikore on Feb 19, 2008 8:21 AM

    Hi Kishore,
    There so many advantages by useing for our applications.
    VC FEATURES:
    1.No need to wright any code for our applications developement ,it is a freestyle development tool.
    2. You can creat UI Elemnts very easy.
    3.Develpoment of Complex application in Portal Platform are very difficult this can be avoid by VC.
    4.lOOK feel can be changed by the End user i.e Color ,sizeof the iviews.
    Like these there so many are there
    Just go for Help.sap.com it will give about VC.
    REGARDS,
    GOVINDU

Maybe you are looking for

  • HP Pavilion dv6700 CTO Notebook PC and I hook to HDMI cable and connect to tv and get no sound

    i have a HP Pavilion dv6700 CTO Entertainment Notebook PC and I hook to HDMI cable and connect to tv and get no sound when attached to tv.  I attach the cable get the video but no sound.  I check sound and do not see anything other than the altec lan

  • Final Cut Express HD won't recognize .mov / quicktime files.

    I have a MacBook Pro 13-inch with FCE3 installed. I'm using OSX 10.6.6. My camera doesn't put video out through a firewire, only usb, meaning FCE can't recognize it (to the best of my knowledge). So, to get around that, I uploaded the video through i

  • JSF, encoding,  do not working search with non english words!

    All my pages UTF-8, Database charset set UTF-8, My search with russian words does not working, How can I improve it?

  • Automatically (?) selecting text in textField

    All, I have a Core-Data/Document based application with a UI consisting of a table, +/- buttons and a textField. Everything is wired up so when new objects are created, their names are selected in the table and appear in the textField. Is there any w

  • Mass role import

    Hi guys, i have a problem with mass role import. When i want to do a mass role import the system warns me with the following error: Failed processing; role not imported and the log does not help. Thanks in advance!!! Kind regards!!! Isaac