5 SQL*Plus: Release 11.2.0.4.0 Production on Wed Apr 14 10:34:54 2021
6
7 Copyright (c) 1982, 2013, Oracle. All rights reserved.
8
9
10 Connected to:
11 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
12 With the Real Application Clusters and Automatic Storage Management options
13
14 SQL> select instance_name from v$instance;
15
16 INSTANCE_NAME
17 ------------------------------------------------
18 +ASM1
19
20 SQL> col name for a10
21 SQL> set linesize 150
22 SQL> select name,allocation_unit_size,state,total_mb,free_mb usable_file_mb from gv$a
23
24 NAME ALLOCATION_UNIT_SIZE STATE TOTAL_MB USABLE_F
25 ---------- -------------------- --------------------------------- ---------- --------
26 DATA 1048576 MOUNTED 10230
27 FLASH 1048576 MOUNTED 6138
28 OCR 1048576 MOUNTED 3069
29 OCR_N 1048576 MOUNTED 6138
30 FLASH_N 1048576 MOUNTED 12276
31 DATA_N 1048576 MOUNTED 20478
32 DATA 1048576 MOUNTED 10230
33 FLASH 1048576 MOUNTED 6138
34 OCR 1048576 MOUNTED 3069
35 OCR_N 1048576 MOUNTED 6138
36 FLASH_N 1048576 MOUNTED 12276
37
38 NAME ALLOCATION_UNIT_SIZE STATE TOTAL_MB USABLE_F
39 ---------- -------------------- --------------------------------- ---------- --------
40 DATA_N 1048576 MOUNTED 20478
41
42 12 rows selected.
评论