3 03 2014
02.견적서
화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/
3 03 2014
02.견적서
3 03 2014
근로계약서
3 03 2014
근로 계약서 양식
3 03 2014
경력증명서 샘플입니다. zip으로 압축했습니다. 재직증명서_샘플
3 03 2014
재직증명서_샘플 이직확인서_샘플
3 03 2014
[catlist name= numberposts=0 date=”yes”] [category]
28 02 2014
1. 기존 SVN Repositories 의 Repository를 SCM으로 파일 그대로 이동 2.SCM Manager에서 Repository에서 동일한 이름으로 생성 끝
28 02 2014
원격가상교육시스템 – (주)누리웨어 – 크레듀 – 메디오피아 – 4CSOFT – 미래넷
27 02 2014
Flash Back Query 예제 10분전의 데이타를 복구합니다.
1 2 3 4 5 6 7 |
insert into dept select * from dept AS OF TIMESTAMP(SYSTIMESTAMP - INTERVAL '10' MINUTE) where tutorid = '******'; |
27 02 2014
1 2 3 |
FULL Level Export C:\>exp userid=system/manager file='C:\full.dmp' full=y User Level Export C:\>exp userid=scott/tiger owner='scott' file='C:\scott.dmp' |
1 2 3 |
Table Level Export C:\>exp userid=system/manager file='C:exp.dmp' tables=(scott.EMP, scott.DEPT) |
=> 위와 같이 table의 schema(user)명까지 지정해야만 export가 성공합니다. C:\>exp userid=scott/tiger file=’C:\exp.dmp’ tables=(EMP, DEPT) log=exp.log => user가 자신의 table을 export할 때에는 schema 명을 지정할 필요 없습니다. FULL Level Import 예제1) 전체 데이터베이스가 IMPORT됩니다. (Full Level)
1 |
C:\>imp userid=system/manager file='C:\full.dmp' full=y |
예제2) scott의 유저 IMPORT를 실행 합니다.(User Level)
1 |
C:\>imp userid=scott/tiger fromuser='scott' touser='scott' file='C:\scott.dmp' |
예제3) […]