본문 바로가기
SQL/Oracle

Oracle , MSSQL 테이블 복사 및 백업

by 젤리씨 2015. 12. 14.
728x90

Oracle 테이블 복사




1. 전체복사



create table TABLENAME_BACKUP as select * from TABLENAME



2. 테이블구조만 복사 (데이터제외)



 create table TABLENAME_BACKUP as select * from T_TABLENAME where 1=0;

 








MSSQL 테이블 복사




1. 전체복사



select * into TABLENAME_BACKUP from TABLENAME where '1'='1';



2. 테이블구조만 복사 (데이터제외)



select * into TABLENAME_BACKUP from TABLENAME where '1'='2';


728x90

댓글