DJ메탈짱™의 Free Style

[ORACLE] 모든(ALL) 테이블 레코드 수(count) 확인, information_schema.tables 본문

일(job)/DBMS

[ORACLE] 모든(ALL) 테이블 레코드 수(count) 확인, information_schema.tables

뽀&쏭 2016. 1. 18. 17:25



오라클 모든 테이블 행 확인, information_schema.tables

해당 오라클 사용자에게 테이블을 조회할 수 있는 권한조차 없다면 포기해야 한다는..

일일이 SELECT COUNT(*) 해서 확인해보는 수밖에....


SELECT table_name, table_rows

FROM information_schema.tables

WHERE table_schema = 'dpprd';


출처 : http://www.mssqltips.com/sqlservertutorial/196/informationschematables/