Listing process dependencies

You can issue a query to the services.inTray database to identify which processes have dependencies on other processes.

About this task

To identify process dependencies:

Procedure

  1. Log into the process control databases.
  2. Issue the following command:
    select serviceName, dependsOn
    from services.inTray;
    go
  3. The following example output shows that ncp_class and ncp_store have no dependencies, and that ncp_model is dependent on ncp_class and ncp_store:
    .....
    {
                    serviceName='ncp_class';
                    dependsOn=[];
    }
    {
                    serviceName='ncp_store';
                    dependsOn=[];
    }
    .....
    .....
    {
                    serviceName='ncp_model';
                    dependsOn=['ncp_class', 'ncp_store'];
    }
    ( 4record(s) : Transaction complete )