Reporting of DW from recently data that deleted

Hi 
Please help me about Dw and reporting concept in scom.
I recently deleted my MP from scom , do you know that how to access to old data Through DW?
if data not be available in DW , then How do work DW?
for example my old mp about active session in oracle with dbinstance.primary is class name and discovered ORA81 , ORA82 as my objects, this Mp work in enviroment about 1 years, now i deleted this mp and rename my mp and class and import to environment. do
i access to data in reporting or DW to my old mp? 
Thanks

Hi There,
Use this below SQL Query and run it in the WarehouseDB to see the existing grooming settings:
select ds.datasetDefaultName AS 'Dataset Name', sda.AggregationTypeId AS 'Agg Type 0=raw, 20=Hourly, 30=Daily', sda.MaxDataAgeDays AS 'Retention Time in Days' 
from dataset ds, StandardDatasetAggregation sda 
WHERE ds.datasetid = sda.datasetid 
ORDER by ds.datasetDefaultName
Example, Mine is 120 days.
So you decide your grooming period and use the below SQL Queries and run it so your grooming setting changes. Just change the Value 120 & 30 & 60 from my query to your Day number which is required.
These were used to groom my warehouse database
-- Alert Data:
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 120 
WHERE GroomStoredProcedureName = 'AlertGroom'
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 120 
WHERE GroomStoredProcedureName = 'AemGroom' and AggregationTypeId = '30'
--Event Data: 
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 30 
WHERE GroomStoredProcedureName = 'EventGroom'
--Microsoft.Exchange.2010.Reports.Dataset.Availability
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 120 
WHERE GroomStoredProcedureName = 'Exchange2010.AvailabilityGroom'
--Microsoft.Exchange.2010.Reports.Dataset.TenantMapping 
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 120 
WHERE GroomStoredProcedureName = 'Exchange2010.TenantMappingGroom' and AggregationTypeId = '30'
--Performance Data: 
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 60 
WHERE GroomStoredProcedureName = 'PerformanceGroom' and AggregationTypeId = '30'
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 60 
WHERE GroomStoredProcedureName = 'PerformanceGroom' and AggregationTypeId = '20'
--State Data: 
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 120 
WHERE GroomStoredProcedureName = 'StateGroom' and AggregationTypeId = '20'
USE OperationsManagerDW 
UPDATE StandardDatasetAggregation 
SET MaxDataAgeDays = 120 
WHERE GroomStoredProcedureName = 'StateGroom' and AggregationTypeId = '30'
Post running the above commands use the below query again to verify if the grooming is successful or not.
select ds.datasetDefaultName AS 'Dataset Name', sda.AggregationTypeId AS 'Agg Type 0=raw, 20=Hourly, 30=Daily', sda.MaxDataAgeDays AS 'Retention Time in Days' 
from dataset ds, StandardDatasetAggregation sda 
WHERE ds.datasetid = sda.datasetid 
ORDER by ds.datasetDefaultName
Test this in a LAB First and query it accordingly and Backup the Warehouse DB as well before performing in production.
Test this is LAB First before trying it in production, As well as backup your Warehouse DB and try it.
Gautam.75801

Similar Messages

  • How can i get my data from an application that deleted from my iphone

    how can i get my data from an application that deleted from my iphone????

    Which application?
    With many applications, when deleting the app the app's data is deleted with it.

  • Is there a way to create a reminder from a date that appears in an email?

    Is there a way to create a reminder from a date that appears in an email that was sent to me? I know that when a date is entered into an email I can create an event on my calendar for it, but is there a way I can have it be a reminder instead?
    Thank you

    Here is a method for extracting a still from iMovie 09.
    Are you working in iMovie and realize that certain frames in the movie would be perfect as photographs? Here is how to extract them...
    *To get a still frame from an Event*, right-click on the frame and select "Add Still Frame to Project". The still will be added to the end of the current project. Right click on the still frame in the project and select "Reveal in Finder". You will see a jpeg file that is highlighted. Drag this jpeg file in the finder to the iPhoto icon on your dock.
    *If you want a still from a project*, rather than an event, the process is similar, except you right-click on the frame and select "Add Freeze Frame", and it adds the freeze frame at the end of the clip rather than at the end of the project. Right-click/reveal in Finder, drag JPEG to iPhoto icon in dock.
    *If you are not using iPhoto*, and just want to save to your desktop, click Reveal in Finder as above, then COPY, then PASTE to desktop.
    Hint: If you do not want to clutter up your iMovie Project with stills at the end that you would have to go back and delete, then create a separate iMovie Project just for your stills, and follow the instructions for capturing stills from an Event.
    Note: If you do not have a right mouse button, then control-click will work instead of right-click.

  • Audit Trail Report Ignores Parameters From/To Date on EBS 12.0.6

    Hi All,
    One of our customers is not able to filter the data in "Audit Trail Report" based on date parameters.
    Is there any patch for this..
    EBS Version is 12.0.6
    I have found a note but it is related to 11i.
    Audit Trail Report Ignores Parameters Transacted By, From/To Date (Doc ID 364304.1)
    Any help is greatly appreciated..
    Best Regards
    gt1942

    I don't see any patch available for 12.0.x and this issue should be fixed in this release.
    Please log a SR for this issue.
    Thanks,
    Hussein

  • How can I change the appearance of html report file generated from Teststand to that I change the orientation of the data in the tables?

    For instance, I'd like to have the measurement results, limits, and status all on one line in a table.
    I am running Teststand 2.0 on Windows 2000.

    Hello Joel_IEI,
    You can modify each report entry as it is being generated by doing the following steps:
    1) In the TestStand Sequence Editor's Report Options, change the Report Generator to "Sequence".
    2) In your sequence file, override the ModifyReportEntry callback. In this callback, you can modify or even replace ENTIRELY the default report information TestStand plans to append to the report. You can use Statement steps to modify the contents of Parameters.ReportEntry (the TestStand variable that you will use to do this), or replace the contents entirely!
    You can look at the code example Adding Extra Results to a Report Using the Modi
    fyReportEntry Callback Sequence for more information.
    David Mc.
    National Instruments

  • Pivot Report in Excel from Oracle data base

    I need to bring data in Excel from Oracle table.
    The connectivity was established without any problem.
    When trying to transform the newly created query into
    a pivot table a am not able to see the data inside the
    "Data area" of pivot table as it is in the data base
    tables, instead Excel transforms the data in Sum, Average,
    etc...
    I believe it is an Excel issue but I am not sure.
    Any sugestions would be appreciated.
    Thanks,
    Larry Moise

    Thank u but already i do have apache POI
    hoew to make a conversion of coulmn data to excel

  • Why does Photoshop produce images that are from source data Photoshop can't read?

    I am getting this message "This image was generated from source data that Photoshop cannot read.  That data will be discarded."  When I open the image the data that has been discarded consists of the layers that were created in Photoshop.  I don't understand why Photoshop can't read data created in Photoshop.

    Thank you for the info.  I only have one version of Photoshop on my computer.  The one I created the images with won't open them.  However, I did have a version of Lightroom on my computer that I removed today.  It was newer than my version of Photoshop.  I am hoping that without Lightroom on my computer I will not have any more problems. (cross all my fingers)  The images that are corrupted are missing data.  The Metadata is missing and the layers are missing from the files. If the metadata is missing they won't open at all and if the layers are missing they will open up flattened, some of them are corrupted with data and color switched every which way in the image.

  • How can I retrive a video from the iCloud that's no longer on my phone?

    I don't think I deleted the videos but they are no longer on my device. How can I retrive thse???

    Yes, to restore an iCloud backup you have to start by completely erasing your phone so you would need to save any recent data that is not contained in the backup before doing so.  You could, for example, import any recent photos/videos to your computer as explained here: http://support.apple.com/kb/HT4083.
    To restore an iCloud backup, go to Settings>General>Reset, tap Erase All Content and Settings, then go through the setup screens on the phone and when given the option, choose Restore from iCloud Backup and follow the prompts.  Be sure the phone is connected to wifi and your charger while it is restoring the backup.

  • Crystal report reverts back to saved data after drill down

    Hi,
        I've created a crystal report and published it to BOE. Whenever I open the report and refresh it, it fetches recent data without any problem. But when I drill down in the report, it shows the saved data instead of showing the recent data in the drill down. If I come back to original report from that drill down again it reverts back to saved data. Again I've to refresh the report to view the recent data.
    Any idea how can I fix this?
    Regards,
    Sanjay

    Hi Sanjay,
    Please do post this question in the BusinessObjects Enterprise thread BI Platform
    The peoplt there would be the best people to answer your query.
    Hope this helps.
    Regards,
    Jay.

  • Crystal Reports 13 VS2010 Report does not display new data

    The project is written in VS2010 connecting to an Access 2007 DB.  It is running on a local network.  All reports work fine from the standpoint that data is displayed on the reports HOWEVER, if a data table is updated the newley entered records do not show up on the report yet when I examine the database the records have been added to the table.
    I hit refresh and the new records still do not appear.  I've closed out the session and re-started the software and the records do not appear.  It's almost as if the DB is 'frozen'.  Suggestions?

    Hey Ludek,
    Problem with that sample is it hits the MDB directly and not the ODBC DSN. The Jet engine is being deprecated by MS so the solution is to use ODBC or OLE DB to any version of Access.
    I've posted this multiple times but here it is again:
    Try using the replace connection method to update the location of the DSN:
    private void ReplaceConnection_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    rptClientDoc.DatabaseController.LogonEx("dwcb12003", "xtreme", "sb", "pw");
    //Create the logon propertybag for the connection we wish to use
    CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag logonDetails = new CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag();
    logonDetails.Add("Auto Translate", -1);
    logonDetails.Add("Connect Timeout", 15);
    logonDetails.Add("Data Source", "dwcb12003");
    logonDetails.Add("General Timeout", 0);
    logonDetails.Add("Initial Catalog", "Orders");
    logonDetails.Add("Integrated Security", "True");
    logonDetails.Add("Locale Identifier", 1033);
    logonDetails.Add("OLE DB Services", -5);
    logonDetails.Add("Provider", "SQLOLEDB");
    logonDetails.Add("Use Encryption for Data", 0);
    logonDetails.Add("Owner", "dbo"); // schema
    //Create the QE (query engine) propertybag with the provider details and logon property bag.
    CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag QE_Details = new CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag();
    QE_Details.Add("Database DLL", "crdb_ado.dll");
    QE_Details.Add("QE_DatabaseName", "Orders");
    QE_Details.Add("QE_DatabaseType", "OLE DB (ADO)");
    QE_Details.Add("QE_LogonProperties", logonDetails);
    QE_Details.Add("QE_ServerDescription", "dwcb12003");
    QE_Details.Add("QE_SQLDB", "True");
    QE_Details.Add("SSO Enabled", "False");
    QE_Details.Add("Owner", "dbo");
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo newConnInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo oldConnInfo;
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfos oldConnInfos;
    oldConnInfos = rcd.DatabaseController.GetConnectionInfos(null);
    for (int I = 0; I < oldConnInfos.Count; I++)
    oldConnInfo = oldConnInfos;
    newConnInfo.Attributes = QE_Details;
    newConnInfo.Kind = CrystalDecisions.ReportAppServer.DataDefModel.CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    rcd.DatabaseController.ReplaceConnection(oldConnInfo, newConnInfo, null, CrystalDecisions.ReportAppServer.DataDefModel.CrDBOptionsEnum.crDBOptionDoNotVerifyDB);
    See if that works for you. You'll have to change the info to ODBC from OLE DB. You can get the info from an app also, Ludek has a link to it, it will generate code to use RAS to set log on info...
    Don

  • Fixed report period based on current date

    I want to create a report containing records over a fixed period without using a date parameter. As a example I would like the report to continually draw on data that is no more than say ten years from the current date.
    E.g. Current date (xx/xx/2008) to (Current date - 10 years) or xx/xx/1998 then next year the formula would automatically adjust to current date (xx/xx/2009) to (Current date - 10 years) or xx/xx/1999.
    I am only a novice when it comes to designing reports so please bear that in mind.

    Hi,
    Create a RecordSelectionFormula and subtract 10 years from the current date with the DateAdd formula.
    E.g.
    //DateAdd (intervalType, nIntervals, startDateTime)
    {Table.Date} > DateAdd ("yyyy", -10, CurrentDate)
    The DateAdd function has more interval types, so you can subtract months, days, hours as well. Check the CR help file and search for DateAdd for details.
    Cheers,
    Fritz

  • Create Tree from Preordered data

    Here is a quick summary of what I'm trying to do:
    I have a file with formatted like this
    Does it have legs?
    Dog
    Fish
    and the resulting tree for it should look like this
         Does it have legs?
         Dog        Fishand I'm trying to write a function that takes in a Scanner object that should already be tied to the data file and create a tree from this data that is already listed in Preorder fashion. I know tha recurison is probably the best way to go about this but everything that I have written hasn't worked. Also, I cant really figure out a way to use recursion when the function is taking in a Scanner I dont know how it would work.
    Any help would be greatly appreciated.
    Here is what I have now:
         public BinaryTree<String> readTree(Scanner data)
              BinaryTree<String> temp = new BinaryTree<String>();
              temp.attachLeft(data.next());
              temp.attachRight(data.next());
              return temp;
         }I know this function wont go through the whoel file, but I've tried many loops but I cant figure out how to get it to work so I'm convinced that I need to figure out how to make it recursive
    (yes I know that everything that can be done through recursion can be done with a loop)

    @OP:
    Here's how you could do it:
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.util.Scanner;
    import java.util.Stack;
    class Main {  
        public static void main(String[] args) throws FileNotFoundException {
            Scanner file = new Scanner(new File("data.txt"));
            BinTree tree = new BinTree(file);
            System.out.println(tree);
    class BinTree  {
        private BinNode root;
        public BinTree(Scanner file) {
            // create the root (first line in the file)
            root = new BinNode(file.nextLine());
            // create a stack
            Stack<BinNode> stack = new Stack<BinNode>();
            // push the root on the stack: we need it to add nodes to the left and right of it
            stack.push(root);
            // call the insert method to build the tree
            insert(stack, file);
        private void insert(Stack<BinNode> stack, Scanner file) {
            IF 'file' has no more lines left
                stop this method
            END IF
            BinNode 'next' <- the next line in 'file'
            IF the left node of the last node on the 'stack' equals null
                the left child of last node of the stack <- 'next' (but leave the stack in tact)
            ESLE
                the right child of last node of the stack <- 'next' (remove the last node of the stack)
            END IF
            IF 'next' is a question
                push 'next' on the stack
            END IF
            recursively call the insert(...) method here
    class BinNode {
        String data;
        BinNode right, left;
        public BinNode(String data) { this.data = data; }
        public String toString() { return this.data; }
    }

  • Building XML from relational data

    I need to create XML documents from relational data that conforms to an XML schema document. We need to store and query the XML documents we create.
    Therefore, we have decided to store the XML using the object model rather than as a CLOB
    i.e. register the schema with the XML DB which in turn creates the tables and object types that represent the schema.
    What is the best way build the XML document from the relational data ??
    Can I pass the relational data to the default constructors of the object types created by the schema registration ?? (and then create an XML document from the top level object instance using SYS_XMLGEN)
    Or should I build the xml from strings using XMLELEMENT,XMLFOREST built-in's when retrieving the data from the relational tables ?? OR use the XMLDOM package to build the document ??
    Would appreciate any advice on the best approach.

    There are basically two ways to join your document fragments with SQLX:
    1/. With xmlForest
    e.g. SELECT XMLELEMENT ( "Emp",XMLForest(e.employee_id, e.lname, e.salary)) AS "result"
    FROM employees e WHERE employee_id > 1500 ;
    result
    <Emp>
    < employee_id >1769</ employee_id >
    < lname >Smith</ lname >
    < salary >200000</ salary >
    </Emp>
    2/. With nested invocations of xmlElement
    e.g. SELECT XMLELEMENT("Emp", XMLELEMENT("name", e.fname ||' '|| e.lname),
    XMLELEMENT ( "hiredate", e.hire)) AS "result"
    FROM employees e WHERE employee_id > 200 ;
    result
    <Emp>
    <name>John Smith</name>
    <hiredate>2000-05-24</hiredate>
    </Emp>
    <Emp>
    <name>Mary Martin</name>
    <hiredate>1996-02-01</hiredate>
    </Emp>

  • My old iphone backup date of 1/15/12 on itunes seems out of date.  I just synced it before I am going to initiate my new iphone 5 from the Mac that I just synced with.  Will it pull the recently synced info or the 1/15/12 data?

    My old iphone backup date of 1/15/12 on itunes seems out of date.  I just synced it before I am going to initiate my new iphone 5 from the Mac that I just synced with.  Will it pull the recently synced info or the 1/15/12 data?

    Let me see if I've gotten this right! You want to remove an account from BOTH machines? Do this for your new machine first, then for the other.
    Click the Apple logo on the top left of the screen, System Preferences, Users and Groups (under Systems), unlock the lock in the window if its locked (you need to know the password), select the user that you wish to remove, and click the - sign next to the + sign for Login options. A window will pop up with some options. Select Delete this user and securely, and click 'Delete user'.
    After this, do an update from the App Store.
    Thats all there is to it.
    For the other machine repeat the process except for one thing. Before you delete the user in this case YOU, you will have to give Administrator priviledges to your son bu checking the box 'Allow user to administer this computer'.
    Do NOT do anything from Finder ... if you dont know how to fix the consequences of the problems caused.
    There is no need to unauthorize your iTunes account on your new machine. Do it on the old machine though.

  • How to find out when data was deleted from table in oracle and Who deleted that

    HI Experts,
    Help me for below query:
    how to find out when data was deleted from table in oracle and Who deleted that ?
    I did that to fidn out some data from dba_tab_modifications, but I m not sure that what timestamp shows, wether it shows for update,insert or delete time ?
    SQL> select TABLE_OWNER,TABLE_NAME,INSERTS,UPDATES,DELETES,TIMESTAMP,DROP_SEGMENTS,TRUNCATED from dba_tab_modifications where TABLE_NAME='F9001';
    TABLE_OWNER                    TABLE_NAME                        INSERTS    UPDATES    DELETES     TIMESTAMP         DROP_SEGMENTS TRU
    PRODCTL                        F9001                                                     1683         46       2171            11-12-13 18:23:39             0                   NO
    Audit is enable in my enviroment?
    customer is facing the issue and data missing in the table and I told him that yes there is a delete at 11-12-13 18:23:39 in table after seeing the DELETS column and timestamp in dba_tab_modifications, but not sure I am right or not
    SQL> show parameter audit
    NAME                                 TYPE        VALUE
    audit_file_dest                      string      /oracle/admin/pbowe/adump
    audit_sys_operations                 boolean     TRUE
    audit_syslog_level                   string
    audit_trail                          string      DB, EXTENDED
    please help
    Thanks
    Sam

    LOGMiner --> Using LogMiner to Analyze Redo Log Files
    AUDIT --> Configuring and Administering Auditing

Maybe you are looking for

  • Text box in page setup for P6 V8 is not working

    I tried to make my own footer & header  for the layout of my report for the software P6 V8 but it is not functioning in the field of Text/Box only. Even editing on this field is not working. I tried to reinstall the software, but nothing happen What

  • Multiple forms in one region???

    Hello guys, I have created application with couple of pages, but now I have one critical issue with one page. In this page I have created multiple forms in one region by customize templated, that is working very much fine, but I unable to insert/upda

  • Pdf creation problem in Excel and Word

    I have Windows 7 Pro and Office 2010.  Up until a month ago, when I created a pdf in Excel or word, it would automatically open up so I can review.  I then downloaded the trial version of Acrobat® XI Pro.  When the trial version ended, I uninstalled

  • Best option for wireless Mac Pro early 2009

    I didn't but the airport card when I bought my Pro, but find myself needing a wireless connection. What is the best option? I see many USB adapters cheap, but have heard that reliability has been an issue with many of them. I've heard of issues with

  • Planning layout limitation

    Hi All, I know there is a limitation that you can only display 9999 records in a layout at a time. But does anyone know work around if you want to display/edit more records than that. thanx in advance Message was edited by: