본문 바로가기

oracle

[ORACLE] ORACLE SQL output HTML format

728x90

서버상에서 SQL output를 text형태로 출력할때 컬럼이 많거나 길이가 길어서 pagesize, linesize에 맞지 않아 보기 힘들게 spool 되는 경우있다. 

EX> 

SET MARKUP HTML ON
spool test.html

select * from test.emp;

spool off
exit

 

 

728x90