EXEC DBMS_STATS.gather_schema_stats(USER, cascade=> TRUE);

SELECT table_name, num_rows FROM user_tables;
현재 User의 모든 테이블에 대한 통계정보를 조사하고 나면 num_rows에 값이 들어가있게 됨.

Posted by g11000011
: