partition by range(timestamp)로 년월단위 파티션 후
select * from table where time_stamp = '날짜' 로하면 파티션 테이블로 검색되는데
select * from table where time_stamp = to_timestamp('날짜','YYYY,,,,') 이렇게 하면 전체 테이블을 검색하네요.
제가 파티션을 잘못생성한건지.. 버그인건지.. to_timestamp 사용시 뭐가 다른건지.. 궁금합니다.
|