Identity가 있는 테이블에 identity 컬럼까지 포함해서 데이터를 insert 할 때는
set identity_insert "table name" on
insert into "table name"(
column1
, column2
)
select column1
, column2
from "table name"
set identity_insert "table name" off
구조로 쿼리를 작성해야함
이때 컬럼 명칭을 모두 입력해주지 않으면 오류가 발생함