DB/오라클
오라클 원격지 db로부터 long, clob 타입 복사하기
탱구천사
2010. 11. 17. 17:46
1.원본 table(target)의 column 확인
2. 원본 table과 같은 구조를 갖는 table (goal)를 빈 껍데기만 생성
3. 아래와 같은 방법으로 table copy 수행
4. copy from scott/tiger@remote (tns명) to scott/tiger@local(tns명) append goal using select * from target;
5.copy 된 table (target)를 query 해서 결과 확인
2. 원본 table과 같은 구조를 갖는 table (goal)를 빈 껍데기만 생성
3. 아래와 같은 방법으로 table copy 수행
4. copy from scott/tiger@remote (tns명) to scott/tiger@local(tns명) append goal using select * from target;
5.copy 된 table (target)를 query 해서 결과 확인