-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOEM_InformationPublisherReport.sql
814 lines (813 loc) · 58.2 KB
/
OEM_InformationPublisherReport.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
-- Try with OEM Publisher reports
-- Version 1.0
--
--
--
-- Author: Prashant 'The FatDBA' Dixit
--
WITH
target_list AS
(SELECT target_name oem_target_name,
decode(instr(property_value,'.'),0,property_value,substr(property_value,1,instr(property_value,'.')-1)) host
FROM sysman.mgmt$target_properties where property_name='MachineName' and target_type in ('oracle_database','oracle_pdb')
and target_name in
('test','test.servers.com'
)
)
--select * from target_list
,tbs_usage_pc
AS (SELECT entity_name,
COLLECTION_TIME,
metric_column_label,
METRIC_KEY_VALUE,
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY entity_name, METRIC_KEY_VALUE
ORDER BY
entity_name,
METRIC_KEY_VALUE,
COLLECTION_TIME DESC)
rn
FROM (SELECT entity_name,
collection_time,
metric_column_label,
entity_type,
METRIC_KEY_VALUE,
VALUE
FROM sysman.gc_metric_values,
target_list
WHERE entity_name = OEM_TARGET_NAME
AND entity_type IN
('oracle_database',
'oracle_pdb')
AND metric_column_label =
'Tablespace Space Used (%)'
AND TRUNC (collection_time) =
TRUNC (SYSDATE)))
--select * from tbs_usage_pc
,dfs_usage_pc
AS (SELECT
t.host,
collection_time,
metric_column_label,
entity_type,
METRIC_KEY_VALUE,
VALUE
FROM sysman.gc_metric_values gmv,target_list t
WHERE decode(instr(gmv.entity_name,'.'),0,gmv.entity_name,substr(gmv.entity_name,1,instr(gmv.entity_name,'.')-1))=t.host
and entity_type IN ('host')
AND metric_column_label =
'Filesystem Space Available (%)'
AND TRUNC (collection_time) =
TRUNC (SYSDATE))
--select * from dfs_usage_pc
,dfs_avail_mb
AS (SELECT
t.host,
collection_time,
metric_column_label,
entity_type,
METRIC_KEY_VALUE,
VALUE
FROM sysman.gc_metric_values gmv,target_list t
WHERE decode(instr(gmv.entity_name,'.'),0,gmv.entity_name,substr(gmv.entity_name,1,instr(gmv.entity_name,'.')-1))=t.host
and entity_type IN ('host')
AND metric_column_label =
'Filesystem Space Available (MB)'
AND TRUNC (collection_time) =
TRUNC (SYSDATE))
--select * from dfs_avail_mb
,wait_ev_sec
AS (SELECT
entity_name,
collection_time,
metric_column_label,
entity_type,
METRIC_KEY_VALUE,
VALUE
FROM sysman.gc_metric_values
WHERE entity_type IN
('oracle_database',
'oracle_pdb')
AND metric_column_label =
'Total Foreground Wait Time (second)'
AND TRUNC (collection_time) =
TRUNC (SYSDATE))
--select * from wait_ev_sec
,cpu_pc
AS ( SELECT t.host,
metric_column_label,
ROUND (MIN (VALUE), 1) CPU_Min_PC,
ROUND (MAX (VALUE), 1) CPU_Max_PC,
ROUND (AVG (VALUE), 1) CPU_Avg_PC
FROM sysman.gc_metric_values gmv, target_list t
WHERE decode(instr(gmv.entity_name,'.'),0,gmv.entity_name,substr(gmv.entity_name,1,instr(gmv.entity_name,'.')-1))=t.host
and entity_type = 'host'
AND metric_column_label IN
('CPU Utilization (%)')
AND TRUNC (collection_time) = TRUNC (SYSDATE)
GROUP BY host, metric_column_label
ORDER BY host, metric_column_label)
--select * from cpu_pc
,swap_pc
AS ( SELECT t.host,
metric_column_label,
ROUND (MIN (VALUE), 1) SWAP_Min_PC,
ROUND (MAX (VALUE), 1) SWAP_Max_PC,
ROUND (AVG (VALUE), 1) SWAP_Avg_PC
FROM sysman.gc_metric_values gmv, target_list t
WHERE decode(instr(gmv.entity_name,'.'),0,gmv.entity_name,substr(gmv.entity_name,1,instr(gmv.entity_name,'.')-1))=t.host
and entity_type = 'host'
AND metric_column_label IN
('Swap Utilization (%)')
AND TRUNC (collection_time) = TRUNC (SYSDATE)
GROUP BY host, metric_column_label
ORDER BY host, metric_column_label)
--select * from swap_pc
,iops_pc
AS ( SELECT t.host,
metric_column_label,
ROUND (MIN (VALUE), 1) IOPS_Min_PC,
ROUND (MAX (VALUE), 1) IOPS_Max_PC,
ROUND (AVG (VALUE), 1) IOPS_Avg_PC
FROM sysman.gc_metric_values gmv, target_list t
WHERE decode(instr(gmv.entity_name,'.'),0,gmv.entity_name,substr(gmv.entity_name,1,instr(gmv.entity_name,'.')-1))=t.host
and entity_type = 'host'
AND metric_column_label IN
('Total Disk I/O made across all disks (per second)')
AND TRUNC (collection_time) = TRUNC (SYSDATE)
GROUP BY host, metric_column_label
ORDER BY host, metric_column_label)
--select * from iops_pc
,tbs_thresholds
AS (SELECT DISTINCT *
FROM (SELECT mt.target_name,
mt.target_type,
mmt.coll_name,
mmt.warning_threshold,
mmt.critical_threshold,
mmt.key_value
FROM sysman.mgmt_targets mt,
sysman.
mgmt_metric_thresholds mmt
WHERE mt.target_guid =
mmt.target_guid
AND mt.target_type IN
('oracle_database',
'oracle_pdb')
AND mmt.coll_name LIKE
'problemTbsp%')
WHERE TRIM (warning_threshold) IS NOT NULL
AND TRIM (critical_threshold) IS NOT NULL)
--select * from tbs_thresholds
,tbs_max_pc
AS ( SELECT entity_name,
ROUND (MAX (VALUE), 1) TBS_MAX_PC
FROM (SELECT NVL (entity_name, OEM_TARGET_NAME) entity_name,
COLLECTION_TIME,
metric_column_label,
METRIC_KEY_VALUE,
VALUE
FROM (SELECT entity_name,
COLLECTION_TIME,
metric_column_label,
METRIC_KEY_VALUE,
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY entity_name,
METRIC_KEY_VALUE
ORDER BY
entity_name,
METRIC_KEY_VALUE,
COLLECTION_TIME DESC)
rn
FROM (SELECT entity_name,
collection_time,
metric_column_label,
entity_type,
METRIC_KEY_VALUE,
VALUE
FROM sysman.
gc_metric_values
WHERE entity_type IN
('oracle_database',
'oracle_pdb')
AND metric_column_label =
'Tablespace Space Used (%)'
AND TRUNC (
collection_time) =
TRUNC (
SYSDATE))) tbs_usage_pc,
target_list
WHERE target_list.OEM_TARGET_NAME =
tbs_usage_pc.entity_name(+)
AND RN(+) = 1)
GROUP BY entity_name, entity_name)
--select * from tbs_max_pc
,tbs_usage_lvl
AS ( SELECT
entity_name,
MAX (
CASE
WHEN tbs_max_pc >= critical_threshold
THEN
2
WHEN tbs_max_pc >= warning_threshold
THEN
1
ELSE
0 /*Normal*/
END)
usage_level
FROM ( SELECT entity_name,
metric_key_value,
tbs_max_pc,
MAX (warning_threshold)
warning_threshold,
MAX (critical_threshold)
critical_threshold
FROM ( SELECT entity_name,
metric_key_value,
ROUND (MAX (VALUE), 1)
tbs_max_pc,
warning_threshold,
critical_threshold
FROM (SELECT
entity_name,
COLLECTION_TIME,
metric_column_label,
METRIC_KEY_VALUE,
VALUE,
warning_threshold,
critical_threshold,
ROW_NUMBER ()
OVER (
PARTITION BY entity_name,
METRIC_KEY_VALUE
ORDER BY
entity_name,
METRIC_KEY_VALUE,
COLLECTION_TIME DESC)
rn
FROM tbs_usage_pc,
target_list,
tbs_thresholds
WHERE target_list.OEM_TARGET_NAME =
tbs_thresholds.
target_name(+)
AND METRIC_KEY_VALUE =
tbs_thresholds.
key_value
AND target_list.
OEM_TARGET_NAME =
tbs_usage_pc.entity_name(+))
WHERE rn(+) = 1
GROUP BY
entity_name,
METRIC_KEY_VALUE,
warning_threshold,
critical_threshold
UNION
SELECT
entity_name,
METRIC_KEY_VALUE,
ROUND (MAX (VALUE), 1)
TBS_MAX_PC,
warning_threshold,
critical_threshold
FROM (SELECT
entity_name,
COLLECTION_TIME,
metric_column_label,
METRIC_KEY_VALUE,
VALUE,
warning_threshold,
critical_threshold,
ROW_NUMBER ()
OVER (
PARTITION BY entity_name,
METRIC_KEY_VALUE
ORDER BY
entity_name,
METRIC_KEY_VALUE,
COLLECTION_TIME DESC)
rn
FROM tbs_usage_pc,
target_list,
tbs_thresholds
WHERE target_list.OEM_TARGET_NAME =
tbs_thresholds.
target_name(+)
AND (key_value IS NULL
OR key_value = ' ')
AND target_list.
OEM_TARGET_NAME =
tbs_usage_pc.entity_name(+))
WHERE rn(+) = 1
GROUP BY
entity_name,
metric_key_value,
warning_threshold,
critical_threshold)
GROUP BY
entity_name,
metric_key_value,
tbs_max_pc)
GROUP BY entity_name)
--select * from tbs_usage_lvl
,dfs_max_pc
AS ( SELECT target_name,
MAX (data_fs_max_pc) data_fs_max_pc
FROM (SELECT
df.host,
NVL (target_name, OEM_TARGET_NAME)
target_name,
data_fs_max_pc
FROM ( SELECT
host,
target_name,
ROUND (MAX (VALUE), 1)
DATA_FS_MAX_PC
FROM (SELECT *
FROM (SELECT
host,
target_name,
collection_time,
metric_column_label,
metric_key_value,
(100 - VALUE)
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY host,
metric_key_value
ORDER BY
host,
metric_key_value,
collection_time DESC)
rn
FROM dfs_usage_pc m,
(SELECT host_name,
target_name,
file_name,
DECODE (
SUBSTR (
file_name,
1,
1),
'/', os_storage_entity,
SUBSTR (
file_name,
1,
3))
os_storage_entity
FROM sysman.
mgmt$db_datafiles
WHERE target_type IN
('oracle_database',
'oracle_pdb')) d
WHERE UPPER (
m.host) =
UPPER (
d.
host_name)
AND metric_key_value <>
'/'
AND (d.
os_storage_entity =
metric_key_value
))
WHERE RN = 1)
GROUP BY host, target_name) df,
target_list
WHERE target_list.OEM_TARGET_NAME =
df.target_name(+)
UNION
SELECT df.HOST,
NVL (target_name, OEM_TARGET_NAME)
target_name,
data_fs_max_pc
FROM ( SELECT
host,
target_name,
ROUND (MAX (VALUE), 1)
DATA_FS_MAX_PC
FROM (SELECT *
FROM (SELECT
host,
target_name,
collection_time,
metric_column_label,
metric_key_value,
(100 - VALUE)
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY host,
metric_key_value
ORDER BY
host,
metric_key_value,
collection_time DESC)
rn
FROM dfs_usage_pc m,
(SELECT decode(instr(host_name,'.'),0,host_name,substr(host_name,1,instr(host_name,'.')-1)) host_name,
target_name,
file_name,
DECODE (
SUBSTR (
file_name,
1,
1),
'/', os_storage_entity,
SUBSTR (
file_name,
1,
3))
os_storage_entity
FROM sysman.
mgmt$db_datafiles
WHERE target_type IN
('oracle_database',
'oracle_pdb')) d
WHERE UPPER (
m.
host) =
UPPER (
d.
host_name)
AND metric_key_value <>
'/'
AND d.
os_storage_entity =
metric_key_value)
WHERE RN = 1)
GROUP BY host, target_name) df,
target_list
WHERE target_list.OEM_TARGET_NAME =
df.target_name(+))
GROUP BY target_name)
--select * from dfs_max_pc
,afs_usage_pc
AS ( SELECT target_name,
MAX (arch_fra_fs_max_pc) arch_fra_fs_max_pc
FROM (SELECT NVL (target_name, OEM_TARGET_NAME) target_name,
arch_fra_fs_max_pc
FROM (SELECT target_name,
arc_file_system,
ROUND (VALUE, 1)
ARCH_FRA_FS_MAX_PC
FROM (SELECT target_name,
metric_key_value
arc_file_system,
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY target_name
ORDER BY
LENGTH (
metric_key_value) DESC)
rn
FROM ( SELECT
target_name,
metric_column_label,
metric_key_value,
VALUE
FROM (SELECT *
FROM (SELECT a.target_name,
collection_time,
metric_column_label,
metric_key_value,
(100
- VALUE)
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY host,
metric_key_value
ORDER BY
collection_time DESC)
rn
FROM dfs_usage_pc p,
(SELECT host_name,
target_name,
DECODE (
INSTR (
arc_file_system,
'$ORACLE_SID'),
0, arc_file_system,
REPLACE (
arc_file_system,
'$ORACLE_SID',
SUBSTR (
target_name,
1,
INSTR (
target_name,
'_')
- 1)))
arc_file_system
FROM (SELECT decode(instr(host_name,'.'),0,host_name,substr(host_name,1,instr(host_name,'.')-1)) host_name,
target_name,
SUBSTR (
VALUE,
DECODE (
INSTR (
UPPER (
VALUE),
'LOCATION=',
1),
0, 1,
10))
arc_file_system
FROM sysman.
mgmt$db_init_params
WHERE target_type IN
('oracle_database',
'oracle_pdb')
AND ( (name LIKE
'log_archive_dest%'
AND name NOT LIKE
'log_archive_dest_state%')
OR name =
'db_recovery_file_dest')
AND (VALUE
IS NOT NULL
OR LENGTH (
VALUE) >
0)
AND UPPER (
VALUE) NOT LIKE
'SERVICE=%'
AND UPPER (
VALUE) NOT LIKE
'%USE_DB_RECOVERY_FILE_DEST%')) a
WHERE UPPER (
p.host) =
UPPER (
a.
host_name)
AND metric_key_value <>
'/'
AND INSTR (
arc_file_system,
metric_key_value,
1) >
0)
WHERE RN = 1)
ORDER BY LENGTH (
metric_key_value) DESC))
WHERE RN = 1) af,
target_list
WHERE target_list.OEM_TARGET_NAME =
af.target_name(+)
UNION
SELECT NVL (target_name, OEM_TARGET_NAME) target_name,
arch_fra_fs_max_pc
FROM (SELECT target_name,
arc_file_system,
ROUND (VALUE, 1)
ARCH_FRA_FS_MAX_PC
FROM (SELECT target_name,
metric_key_value
arc_file_system,
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY target_name
ORDER BY
LENGTH (
metric_key_value) DESC)
rn
FROM ( SELECT target_name,
metric_column_label,
metric_key_value,
VALUE
FROM (SELECT *
FROM (SELECT a.target_name,
collection_time,
metric_column_label,
metric_key_value,
(100
- VALUE)
VALUE,
ROW_NUMBER ()
OVER (
PARTITION BY metric_key_value
ORDER BY
collection_time DESC)
rn
FROM dfs_usage_pc p,
(SELECT host_name,
target_name,
DECODE (
INSTR (
arc_file_system,
'$ORACLE_SID'),
0, arc_file_system,
REPLACE (
arc_file_system,
'$ORACLE_SID',
SUBSTR (
target_name,
1,
INSTR (
target_name,
'_')
- 1)))
arc_file_system
FROM (SELECT decode(instr(host_name,'.'),0,host_name,substr(host_name,1,instr(host_name,'.')-1)) host_name,
target_name,
SUBSTR (
VALUE,
DECODE (
INSTR (
UPPER (
VALUE),
'LOCATION=',
1),
0, 1,
10))
arc_file_system
FROM sysman.
mgmt$db_init_params
WHERE target_type IN
('oracle_database',
'oracle_pdb')
AND ( (name LIKE
'log_archive_dest%'
AND name NOT LIKE
'log_archive_dest_state%')
OR name =
'db_recovery_file_dest')
AND (VALUE
IS NOT NULL
OR LENGTH (
VALUE) >
0)
AND UPPER (
VALUE) NOT LIKE
'SERVICE=%'
AND UPPER (
VALUE) NOT LIKE
'%USE_DB_RECOVERY_FILE_DEST%')) a
WHERE UPPER (
p.host) =
UPPER (
a.host_name)
AND metric_key_value <>
'/'
AND INSTR (
arc_file_system,
metric_key_value,
1) >
0)
WHERE RN = 1)
ORDER BY LENGTH (
metric_key_value) DESC))
WHERE RN = 1) af,
target_list
WHERE target_list.OEM_TARGET_NAME =
af.target_name(+)
)
GROUP BY target_name
)
--select * from afs_usage_pc
,db_wait_class
AS (SELECT top_wait_event.target target_name,
top_wait_event.metric_key_value
|| ' ('
|| top_wait_class.metric_key_value
|| ')'
top_db_wait
FROM (SELECT *
FROM (SELECT target,
metric_key_value,
Avg_PC,
ROW_NUMBER ()
OVER (PARTITION BY target
ORDER BY AVG_PC DESC)
rn
FROM ( SELECT
entity_name target,
metric_key_value,
ROUND (MIN (VALUE), 1)
Min_PC,
ROUND (MAX (VALUE), 1)
Max_PC,
ROUND (AVG (VALUE), 1)
AVG_PC
FROM wait_ev_sec, target_list
WHERE target_list.OEM_TARGET_NAME =
wait_ev_sec.entity_name
GROUP BY
entity_name,
metric_key_value))
WHERE rn = 1) top_wait_event,
(SELECT *
FROM (SELECT target,
metric_key_value,
AVG_PC,
ROW_NUMBER ()
OVER (
PARTITION BY target
ORDER BY
AVG_PC DESC)
rn
FROM ( SELECT entity_name
target,
metric_column_label,
METRIC_KEY_VALUE,
ROUND (
MIN (
VALUE),
1)
Min_PC,
ROUND (
MAX (
VALUE),
1)
Max_PC,
ROUND (
AVG (
VALUE),
1)
AVG_PC
FROM sysman.
gc_metric_values tbs_usage_pc,
target_list
WHERE target_list.
OEM_TARGET_NAME =
tbs_usage_pc.
entity_name
AND entity_type IN
('oracle_database',
'oracle_pdb')
AND metric_column_label IN
('Database Time Spent Waiting (%)')
AND TRUNC (
collection_time) =
TRUNC (
SYSDATE)
GROUP BY entity_name,
metric_column_label,
METRIC_KEY_VALUE
ORDER BY entity_name,
AVG_PC DESC,
METRIC_KEY_VALUE))
WHERE rn = 1) top_wait_class
WHERE top_wait_class.target = top_wait_event.target)
--select * from db_wait_class
,stby_lag
AS (
select
target_name
, MAX( case when column_label = 'Apply Lag (seconds)' then to_number(value) end ) as apply_lag_sec
, MAX( case when column_label = 'Transport Lag (seconds)' then to_number(value) end ) as transport_lag_sec
--, collection_timestamp
from sysman.mgmt$metric_current,
target_list
WHERE target_name = OEM_TARGET_NAME
and metric_name like '%dataguard%'
and metric_label = 'Data Guard Performance'
and column_label in ('Apply Lag (seconds)', 'Transport Lag (seconds)' )
group by target_name--, collection_timestamp
)
--select * from stby_lag
SELECT oem_target_name,
LOWER (target_list.HOST) HOST,
CPU_Max_PC,
CPU_Avg_PC,
SWAP_Max_PC,
SWAP_Avg_PC,
IOPS_Max_PC,
IOPS_Avg_PC,
TBS_MAX_PC,
USAGE_LEVEL,
DATA_FS_MAX_PC,
ARCH_FRA_FS_MAX_PC,
APPLY_LAG_SEC,
TRANSPORT_LAG_SEC,
TOP_DB_WAIT
FROM target_list,
cpu_pc,
swap_pc,
iops_pc,
tbs_max_pc,
tbs_usage_lvl,
dfs_max_pc,
afs_usage_pc,
db_wait_class,
stby_lag
WHERE target_list.HOST = cpu_pc.host
AND target_list.HOST = swap_pc.host
AND target_list.HOST = iops_pc.host
AND target_list.OEM_TARGET_NAME = tbs_max_pc.entity_name(+)
AND target_list.OEM_TARGET_NAME = tbs_usage_lvl.entity_name(+)
AND target_list.OEM_TARGET_NAME = dfs_max_pc.target_name(+)
AND target_list.OEM_TARGET_NAME = afs_usage_pc.target_name(+)
AND target_list.OEM_TARGET_NAME = db_wait_class.target_name(+)
AND target_list.OEM_TARGET_NAME = stby_lag.target_name(+)
ORDER BY 1