우편번호 DB
::::특별한 Java Story 2013. 6. 10. 18:25 |
② 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
'::::특별한 Java Story' 카테고리의 다른 글
DBConn.java 데이터베이스 연결 및 오류 잡기 (The Network Adapter could not establish the connection) (0) | 2013.06.12 |
---|---|
참조변수와 인스턴스의 연결 (0) | 2013.06.11 |
instanceof 연산자 (0) | 2013.06.10 |
다형성(polymorphism)/ 참조변수의 형변환 ② (0) | 2013.06.10 |
다형성(polymorphism)/ 참조변수의 형변환 ① (0) | 2013.06.09 |