How to list Target Dependencies

Hi all,
Sorry if this is real noddy question but can anybody tel me how to list all the dependencies for a given target such as a server or database, assumming of course all my services/ systems are setup correctly.
We have a very distributed application base and I am looking for a single source of truth so if a server is being taken down for maintenance , i can easilly get a list of services/systems that will be impacted.
Currently we are running 1og grid control but would happily migrate to 11g or 12c to get the info, if anybody has already written a custom report to do this any guidance on where they started would be much aprreciated.
thanks
steve

This can be done in 12c with the Lifecycle Management Pack - http://www.oracle.com/technetwork/oem/pdf/512065.pdf see slides 28 and 33 specifically...

Similar Messages

  • How to list dependencies of stored procedure in a package in oracle

    hi gurus,
    can any body help me to solve the below issue?
    how to list dependencies of stored procedure in a package in oracle?
    advanced thanks...

    It sounds like you're going to have trouble because you're trying to track dependencies at a more fine-grained level than Oracle does (at least prior to 11g, which I know does finer-grained dependency tracking for columns, so there may be something that would help you there).
    In Oracle, the entity is the package body. The procedure within the package does not have dependencies and does not depend on anything, it is part of the package body, which does have dependencies. You can see what tables are used by the package body via DBA_DEPENDENCIES. But if you're trying to track the dependencies for a particular procedure in a package, you'd either have to manually examine the code or you'd have to write your own PL/SQL parser.
    Justin

  • How to display package dependencies?

    Hi everybody,
    I hope I am not asking a too basic or silly question :(
    I was looking in FAQs but I was unable to answer my question:
    How do you list package dependencies for installed/spooled packages?
    pkginfo, pkgchk seem unable to list what I am looking for.
    Let's assume I just spooled some package, and just before installing it I want to make sure my system satisfies what this package requires as dependencies.
    I know a brute force way to know this is just to do a pkgadd and then it will probably complain for missing dependencies. But I don't want to even get to that point.
    What I am looking for is something similar of what you can find for example in Red Hat when doing:
    $rpm whatrequires|requires
    Thanks a lot in advance,
    Max

    How do you list package dependencies for installed/spooled packages?One way is to check the "/var/sadm/pkg/<pkg_name>/install/depend" file.
    Even if the package is not installed, you can check the "<pkg_name>/install/depend" file to get the list of dependencies

  • How to find Target tables in informatica

    Hi Guys,
    Could you please tell me the How to find target tables in OBIEE from OBIEE Repository
    Please any one reply me.
    Thanks,
    Siva
    Edited by: 912736 on Mar 20, 2012 7:12 PM

    Hi
    Open Repository:
    1- On Presentation Layer: Navigate to Subject Area which you want to trace Target Table.
    2- Right Click on desire Measure /Object
    3- List will appear and select 'Query for Physical Table' or 'Query fro Physical Column'.
    4- Window will appear and it will show you list of relevant Physical Tables.
    5- Select one of table and press Go button.
    Your target Tables are in Data warehouse not infromatica, Informatica is Responsible to Design & run your Workflows and other activities.
    However to trace Target table from Informatica (Workflow);
    If you want to trace Target Table than in Informatica you have 2 options.
    1- Openfirst you need to know Workflow, open workflow right click and in property you will see Query and from query you will know target table.
    2- open workflow from Workflow you will Know Mapping and open mapping than you will know Mapplet and from Mapplet you will know target table.
    Open Client >>PowerCenter and Open Mapllet, you will see Target
    Regards
    Edited by: Sher Ullah Baig on Mar 22, 2012 5:21 PM

  • How can i target a movie of which i set the name based on a variable?

    Hi.
    I have the attached code:
    And i want to target the imgHolder
    ; that i have just created through the while function. I mean I
    attach a movieclip from the library to which I give a name composed
    from "imgHolder"+i where i is the number of the node from the xml.
    After that i want to succesfully target the newly created
    movieclip and get it's _x so i can attach the next movieclip next
    to the previous one. After that i will have a set of function based
    on the "imgHolder"+i movieclip.
    But i need to know how to succesfully target the movieclip.
    Thanks a lot.

    use the attach code option to display code in this forum.
    otherwise, your code is altered and difficult to read.

  • How to list all properties in the default Toolkit

    I would like to know what kinds of properties are stored in the default Toolkit (Toolkit.getDefaultToolkit()). I don't know how to list all of them. Toolkit class has a method getProperty(String key, String defaultValue), but without knowing a list of valid keys, this method is useless.
    Any idea would be appreciated.

    Here is a little utility that I wrote to display all the UIDefaults that are returned from UIManager.getDefaults(). Perhaps this is what you are looking for?
    import javax.swing.*;
    import java.util.*;
    public class DefaultsTable extends JTable {
        public static void main(String args[]) {
            JTable t = new DefaultsTable();
        public DefaultsTable() {
            super();
            setModel(new MyTableModel());
            JFrame jf = new JFrame("UI Defaults");
            jf.addWindowListener(new WindowCloser());
            jf.getContentPane().add(new JScrollPane(this));
            jf.pack();
            jf.show();
        class MyTableModel extends javax.swing.table.AbstractTableModel {
            UIDefaults uid;
            Vector keys;
            public MyTableModel() {
                uid = UIManager.getDefaults();
                keys = new Vector();
                for (Enumeration e=uid.keys() ; e.hasMoreElements(); ) {
                    Object o = e.nextElement();
                    if (o instanceof String) {
                        keys.add(o);
                Collections.sort(keys);
            public int getRowCount() {
                return keys.size();
            public int getColumnCount() {
                return 2;
            public String getColumnName(int column) {
                if (column == 0) {
                    return "KEY";
                } else {
                    return "VALUE";
            public Object getValueAt(int row, int column) {
                Object key = keys.get(row);
                if (column == 0) {
                    return key;
                } else {
                    return uid.get(key);
        class WindowCloser extends java.awt.event.WindowAdapter {
            public void windowClosing(java.awt.event.WindowEvent we) {
                System.exit(0);
    }

  • How to list the abap programs order by updated date in ECD

    Hi experts,
    how to list the abap programs order by updated date in ECD?
    thanks.

    I wrote a custom program for displaying Z* development work into an ALV report. 2500 character limit prevents me from posting, message me your email and I'll send you source code.
    Edited by: Brad Gorlicki on Feb 18, 2010 11:25 PM

  • How to list the active savepoints in a session?

    How to list the active savepoints in a session?

    SR 3-4535479801: How to list the active savepoints in a session?
    Oracle Support - September 19, 2011 7:12:50 AM GMT-07:00 [ODM Answer]
    === ODM Answer ===
    Hello,
    That is the only way and it is also described in:
    How To Find Out The Savepoint For Current Process (Doc ID 108611.1)
    One thing to be aware in lower version is the dump if no savepoints are declared:
    ALTER SESSION SET EVENTS 'IMMEDIATE TRACE NAME SAVEPOINTS LEVEL 1' Raises ORA-03113/ORA-07445[SIGSEGV]/[STRLEN] Errors (Doc ID 342484.1)
    Best regards,
    George
    Oracle Support Database TEAM
    Oracle Support - September 19, 2011 6:36:39 AM GMT-07:00 [ODM Question]
    === ODM Question ===
    How to list the active savepoints in a session?
    Is there another way than the following as referenced in the Oracle forums: Re: How to list the active savepoints in a session? ?
    "alter session set events 'immediate trace name savepoints level 1';"
    A trace file is generated in the user_dump_directory.
    - September 17, 2011 5:12:53 PM GMT-07:00 [Customer Problem Description]
    Problem Description: How to list the active savepoints in a session?
    Is there another way than
    "alter session set events 'immediate trace name savepoints level 1';"
    A trace file is generated in the user_dump_directory.
    Re: How to list the active savepoints in a session?

  • How to list printers on the client machine to print the documents in ADF

    Hi,
    I have a requirement to print multiple documents stored on the server. I am trying to find out how to list the printers or get a default printer on the client machine and print the documents using ADF.
    Thanks
    Sukarna

    I tried that solution. but I am not getting any printer list.
    public void printDocument(ActionEvent actionEvent){
    BindingContainer bindings =
    BindingContext.getCurrent().getCurrentBindingsEntry();
    PrintService[] service = PrintServiceLookup.lookupPrintServices(null, null);
    if (service.length == 0){
    JOptionPane.showMessageDialog(null, "No Printer Selected");
    The printer Service is not returing any data.
    Thanks
    Sukarna
    Edited by: 911653 on Oct 5, 2012 9:01 AM

  • How to list Sales Order with credit block

    Hi, Gurus,
    I really don't know how to list sales orders with credit block?
    Is there any way for end user to do it?
    If so, is it possible to list SO with credit block for certain period of time such as one month?
    Any help would be appreciated.

    HI
    Check T-Code VKM2 (Released documents)
    You need to check VKM1 (Blocked Documents)
    Sorry before i gave wrong information , myself i corrected VKM2 for released not for blocked list (Due to non Availability of SAP access )
    Regards,
    Prasanna
    Edited by: prasanna_sap on Feb 7, 2012 7:12 AM

  • How to remove target node if source field value is empty SAP PI Mapping

    Hello,
    how to remove target node if source field value is empty in graphical Mapping.
    Like if
    MIddle name in source filed is empty, I would like to eliminate target field from out put XML.
    Thank you
    John

    Hi Jhon,
    If you want to remove all empty tags and you dont to complicate your message mapping, you can use a XSL, after the message mapping,  to remove all the empty tags:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:template match="node()|@*">
            <xsl:copy>
                <xsl:apply-templates select="node()|@*"/>
            </xsl:copy>
        </xsl:template>
        <xsl:template match="*[not(@*|*|comment()|processing-instruction())
         and normalize-space()='' ]"/>
    </xsl:stylesheet>
    Regards

  • How to list the contents of an OSX directory, and output to text file?

    hello there any hints with any known program that does following
    I have recorded my music directory to DVD and now i would like to make an .txt file what the dvd contains...cos its way of hand to write all 100xx files by hand...
    How to list the contents of an OSX directory, and output to text file?
    any prog that does that? any hints?
    best regards

    This script makes a hierarchical file listing all files in a folder and subfolder:
    Click here to launch Script Editor.
    choose folder with prompt "Choose a folder to process..." returning theFolder
    set theName to name of (info for theFolder)
    set thepath to quoted form of POSIX path of theFolder
    set currentIndex to theFolder as string
    do shell script "ls -R " & thepath returning theDir
    set theDirList to every paragraph of theDir
    set newList to {"Contents of folder \"" & theName & "\"" & return & thepath & return & return}
    set theFilePrefix to ""
    repeat with i from 1 to count of theDirList
    set theLine to item i of theDirList
    set my text item delimiters to "/"
    set theMarker to count of text items of thepath
    set theCount to count of text items of theLine
    set currentFolder to text item -1 of theLine
    set theFolderPrefix to ""
    if theCount is greater than theMarker then
    set theNestIndex to theCount - theMarker
    set theTally to -1
    set theFilePrefix to ""
    set theSuffix to ""
    repeat theNestIndex times
    set theFolderPrefix to theFolderPrefix & tab
    set theFilePrefix to theFilePrefix & tab
    if theTally is -1 then
    set theSuffix to text item theTally of theLine & theSuffix
    else
    set theSuffix to text item theTally of theLine & ":" & theSuffix
    end if
    set currentIndex to "" & theFolder & theSuffix
    set theTally to theTally - 1
    end repeat
    end if
    set my text item delimiters to ""
    if theLine is not "" then
    if word 1 of theLine is "Volumes" then
    set end of newList to theFolderPrefix & "Folder: > " & currentFolder & return
    else
    try
    if not folder of (info for alias (currentIndex & theLine & ":")) then
    set end of newList to theFilePrefix & tab & tab & tab & "> " & theLine & return
    end if
    end try
    end if
    end if
    end repeat
    open for access file ((path to desktop as string) & "Contents of folder- " & theName & ".txt") ¬
    with write permission returning theFile
    write (newList as string) to theFile
    close access theFile

  • How to include vi dependencies in application builder?

    I have a small project in which I am trying to build an application.  I am having issues with the build including all dependencies.  In the project explorer "Items" tab, there are 7 files listed (1 dll and 6 vi's).  When I build the application, and try to run it on a different computer, it says it cannot find the dll and 3 of the 6 vi's.  Under "Source Files" for the build specifications, the only .vi I'm able to add is the main/startup vi.  It does not give me the option to add any of the vi's/dll that are listed as dependencies in the project explorer list.  Under "Source File Settings", when I click on dependencies, I have "Set destination for all contained items" checked and "Support Directory" selected.
    Any thoughts as to what I'm missing?
    Thanks,
    Jordan
    Attachments:
    ProjectExplorer.jpg ‏49 KB
    SourceFiles.jpg ‏51 KB
    SourceFileSettings.jpg ‏64 KB

    NeilR, let me know if this works for you.  
    Edited to add:  As I already pointed out, this isn't the cleanest code.  Especially some of the stuff more recently added.  It's pretty messy!
    Attachments:
    LabJackAnalogINwGPS142.zip ‏374 KB

  • How to list directory for required files

    private int checkForFile() throws Exception
    File dir = new File((String)args.get("D:\\temp");
    String[] children = dir.list();
    String pattern = "MYFILE(I|E|G|H|N|S|V).dat";
    for (int i =0; i < children.length; i++)
    if (Pattern.matches(pattern,children))
    set.add(children[i]);
    String[] arr = (String[])set.toArray(new String[set.size()]);
    boolean exists = false;
    for(int i=0; i < arr.length; i++)
    FNAME = arr[i];
    exists = (new File((String)args.get("D:\\temp\\" + FNAME)).exists();
    if (exists) { System.out.println("exists");  return 0; } else { return 1; }
    I have to check for all matches in the pattern, if any one file is missing it should specify that the file not found.

    the pattern string contains 7 possible file names
    like MYFILEE.dat, MYFILEG.DAT, MYFILEH.DAT and so on.
    I know how to list the directory but I have match for all 7 possible file names. If some file is missing today and Pattern.matches has matched only 6 of them then it should stop continuing and throw file not found message
    i hope u understand my requirement

  • How to list all the rows from the table VBAK

    Friends ,
    How to list all the rows from the table VBAK.select query and the output list is appreciated.

    Hi,
    IF you want to select all the rows for VBAK-
    Write-
    Data:itab type table of VBAK,
           wa like line of itab.
    SELECT * FROM VBAK into table itab.
    Itab is the internal table with type VBAK.
    Loop at itab into wa.
    Write: wa-field1,
    endloop.

Maybe you are looking for

  • How to copy/paste anchor text box to its anchor point in text and delete all empty anchors?

    hi all i have a document of few pages but one story. The right column is the main text box and on many places anchored text boxes are placed which appeared on the left column as shown below. i want text of each anchor-text-box to be cut from its plac

  • Dbv segmentation fault

    I'me getting a problem with dbv on OEL running against an ASM instance. It's a bit of a bummer when your integrity checking utility does this :- *[oracle@ct-db ~]$ dbv userid='sys/blah' file='+DATA/oracle/datafile/ts_big.872.689022929229'* DBVERIFY:

  • Is there a Clear mailbox command

    Hello, When we delete accounts via ConsoleOne or JRB, GroupWise will send emails to other users from the Deleted user saying that folder sharing is gone, appointments are deleted, etc... Is there a way to delete the account and not have GroupWise sen

  • How to import images on Nexus

    OK, Adobe do not want you to use Google or any cloud but their own when importing images into PS Touch. Selfish and very naive. It limits what could be a great app and turns it into nothing more than a occasional plaything. But there is a way. Instal

  • My ibooks won't stay open.

    Yesterday I restored my ipad because I was organizing my files and I wanted to redownload my pdfs to my ipad under their new "clean" names.  Now whenever I try to open ibooks it flashes the shelves for a second and then closes.  I have tried restorin