SAP Table 용량산정
방법은 두가지.
1. 해당 DB SQL로 처리
2. SAP 프로그램 실행
1. SQL(Oracle 기준)
– directly from SQLPlus
SQL> select table_name,
num_rows, blocks/128 “SIZE_MB”
from dba_tables where table_name =
‘USR02’;
num_rows, blocks/128 “SIZE_MB”
from dba_tables where table_name =
‘USR02’;
TABLE_NAME NUM_ROWS SIZE_MB
—————————— ———- ———-
USR02 14728 4.890625
2. SAP Program : RSTABLESIZE
대상 테이블넣고 실행하면 Row건수, 실제 용량을 확인 할 수 있음.
Subscribe
Login
0 Comments
Oldest