Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
31 lines (25 loc) · 698 Bytes

File metadata and controls

31 lines (25 loc) · 698 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
-- asm_diskgroup_templates.sql
set linesize 200 pagesize 60
col dg_name format a20 head 'DISK GROUP'
col template_name format a50 head 'TEMPLATE NAME'
col entry_number format 99999 head 'ENTRY|NUMBR'
col redundancy format a6
col stripe format a6
col system format a6 head 'SYSTEM|GEN'
col primary_region format a7 head 'PRIMARY|REGION'
col mirror_region format a7 head 'MIRROR|REGION'
break on dg_name skip 1
select
dg.name dg_name
, dt.name template_name
, dt.entry_number
, dt.redundancy
, dt.stripe
, dt.system
, dt.name
, dt.primary_region
, dt.mirror_region
from v$asm_diskgroup dg
join v$asm_template dt on dt.group_number = dg.group_number
order by dg.name, dt.entry_number
/
Morty Proxy This is a proxified and sanitized view of the page, visit original site.