전제: UNLOAD할 때 데이터를 흘리지 않았다는 것이 확실한 상황 에러를 확인할 수 있는 loadview를 생성 create view loadview as (select distinct tbl, trim(name) as table_name, query, starttime, trim(filename) as input, line_number, colname, err_code, trim(err_reason) as reason from stl_load_errors sl, stv_tbl_perm sp where sl.tbl = sp.id); COPY가 안된 테이블의 에러를 확인 select * from loadview where table_name='your_table_name'; 가장 최근에 실..