| Script |
-- List Environments NOT In Use By Workflows
select ww.workflow_id, ww.workflow_name,
wws.workflow_step_id, wws.step_name,
ee.environment_id, ee.environment_name, ee.description, ee.enabled_flag
from KENV_ENVIRONMENTS ee, KWFL_WORKFLOWS ww, KWFL_WORKFLOW_STEPS wws
where ee.environment_id not in
( select source_environment_id from KWFL_WORKFLOW_STEPS )
and
ee.environment_id not in
( select dest_environment_id from KWFL_WORKFLOW_STEPS )
order by ee.environment_name
The script may take some time to run as it is (we hope) computing an empty result set. Be patient.
|
| Output |
WL_ID WORKFLOW_NAME WF_SP STEP_NAME ENV_ID ENV_NAME DESCRIPTION E_FLG
----- -------------- ----- ---------------- ------ ----------- ----------------------------
30123 ParseGen 30341 Unzip 20043 DEV DEV_PR4 DEV Application server Y
30644 Dataplot_Old 31392 XSLT translation 20043 DEV DEV_DP3 DEV Application server Y
To extract the output, click on the [Open as Text] button.
This opens a text window from which you can copy and paste.
|