프린트 하기

OS환경 : Oracle Linux6.8(64bit)


DB 환경 : Oracle Database 11.2.0.4


방법 : sqlplus 에서 show sga 입력 시 아래와 같이 나오는 경우 해결 방법(set numwidth)

1
2
3
4
5
6
7
SQL> show sga
 
Total System Global Area    6.3E+08 bytes
Fixed Size            2255832 bytes
Variable Size            3.8E+08 bytes
Database Buffers        2.4E+08 bytes
Redo Buffers            3313664 bytes


set numwidth를 사용하여 늘려준다

1
2
3
4
5
6
7
SQL> set numwidth 15
SQL> show sga
Total System Global Area       626327552 bytes
Fixed Size             2255832 bytes
Variable Size               377488424 bytes
Database Buffers           243269632 bytes
Redo Buffers             3313664 bytes

정상적으로 출력되는 모습



참조 : https://onkartiwary.wordpress.com/2013/11/13/display-big-numbers-in-sqlplus/