'우편번호'에 해당되는 글 1건

  1. 2013.06.10 우편번호 DB

http://www.zipfinder.co.kr/

 

 

② zipcode.txt 파일 경로에 옮김~

 

 

③ zipcode.ctl 파일 생성

내부 입력사항

 

 

load data
infile 'c:\sqlldr\data\zipcode.txt'

replace into table tbl_zip
fields terminated by ' '
(
ZIPCODE char, 
SIDO char,
GUGUN char,
DONG char,
RI char,
BLDG char,
BUNJI char,
SEQ integer external
)

 

④ cmd 창에서 실행

 

c:\>sqlldr userid=scott/tiger control=c:\sqlldr\zipcode.ctl log=c:\sqlldr\log\zipcode.log

Posted by 옆모습오빠
: