database 버전업후 (v12)
Select * Into [dest table] From [src table];
명령어는 실행이 됩니다만
기존 테이블 구조를 복사해서
INSERT INTO [dest table]
SELECT * FROM [src table];
위의 쿼리를 실행하면
Cannot insert an explicit value into a timestamp column. Use INSERT with a column list to exclude the timestamp column, or insert a DEFAULT into the timestamp column.
에러를 뛰웁니다. 테이블 구조와 데이터까지 고대로 복사할수 있는 좋은 방안 있을까요?


해당 테이블에 timestamp가 있는 듯 합니다. 해당 timestamp 컬럼의 형을 변경해야 할 듯 하구요.
http://stackoverflow.com/questions/10262426/sql-server-cannot-insert-an-explicit-value-into-a-timestamp-column
내용 참고해 보세요.