묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
첨부파일이 이중으로 등록됩니다.(확인SQL)
2008.10.28 06:14
안녕하세요?
zbxe/files 폴더의 용량이 너무 많은 것 같아 확인해 보니,
xe_files 테이블에 같은 파일이 많이 중복 등록되어 있더라고요.
그래서 아래 쿼리를 실행하니(xe_documents 테이블에는 없고, xe_files 테이블에만 있는 파일 정보)
select count( 1 ) 건수, sum( file_size ) 파일용량
from xe_files f
where not exists(
select 1
from xe_documents d
where d.document_srl = f.upload_target_srl
and d.module_srl = f.module_srl)
;
건수 파일용량
9336 773,914,883
혹시 이런 문제 해결하신 분 계신가요?
감사합니다.
zbxe/files 폴더의 용량이 너무 많은 것 같아 확인해 보니,
xe_files 테이블에 같은 파일이 많이 중복 등록되어 있더라고요.
그래서 아래 쿼리를 실행하니(xe_documents 테이블에는 없고, xe_files 테이블에만 있는 파일 정보)
select count( 1 ) 건수, sum( file_size ) 파일용량
from xe_files f
where not exists(
select 1
from xe_documents d
where d.document_srl = f.upload_target_srl
and d.module_srl = f.module_srl)
;
건수 파일용량
9336 773,914,883
혹시 이런 문제 해결하신 분 계신가요?
감사합니다.