Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)

System.Data.SqlClient.SqlException - Arithmetic overflow error converting IDENTITY to data type int.

오호~~~ 테스트로 사용하는 DB 테이블로부터 다음과 같은 예외가 발생합니다.

System.Data.SqlClient.SqlException occurred
  HResult=0x80131904
  Message=Arithmetic overflow error converting IDENTITY to data type int.
Arithmetic overflow occurred.
  Source=.Net SqlClient Data Provider
  StackTrace:
   at WcfTest.HelloWorld(String connectionString) in D:\WcfTest.svc.cs:line 89

에러가 발생한 SQL은 "INSERT INTO Account(Name, Password) VALUES(@Name, @Password)"이었고 Account 테이블에 INSERT를 너무 많이 하다 보니 INT 타입의 IDENTITY 설정이 21억까지 진행한 것입니다.

http://stackoverflow.com/questions/2295731/maximum-for-autoincremental-int-primary-key-in-sqlserver
http://stackoverflow.com/questions/27040938/arithmetic-overflow-error-converting-identity-to-data-type-tinyint

저처럼 테스트 테이블이라면 그냥 단순하게 다음과 같이 날리셔도 됩니다.

Truncate Table [Account]

삽입/삭제를 반복해서 발생한 경우라면 IDENTITY로 증가한 것을 다시 0부터 진행하라고 명령을 내려도 되겠고,

DBCC CHECKIDENT(Account, RESEED,0)

아니면 보다 더 안전하게 bigint로 타입을 바꾸셔도 됩니다. SQL Server Management Studio의 경우 사용 중인 테이블의 디자인을 바꾸는 경우 다음과 같은 메시지를 띄우며 중단합니다.

Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can't be re-created or enabled the option Prevent saving changes that require the table to be re-created.


Tools / Options를 통해 다음과 같이 "Prevent saving changes that require table re-creation" 옵션을 해제해 주면,

db_identity_1.png

제약 없이 테이블 디자인을 바꿀 수 있습니다. 이 옵션에 관한 좀 더 자세한 설명은 다음의 KB 자료에서 볼 수 있습니다.

Error message when you try to save a table in SQL Server: "Saving changes is not permitted"
; https://support.microsoft.com/en-us/help/956176/error-message-when-you-try-to-save-a-table-in-sql-server-saving-changes-is-not-permitted




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 3/28/2017]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 181  182  183  184  185  186  187  188  189  190  191  [192]  193  194  195  ...
NoWriterDateCnt.TitleFile(s)
269정성태6/6/200625747Team Foundation Server: 6. HTTPS를 통한 Team Server 접근 [1]
270정성태6/5/200623597    답변글 Team Foundation Server: 6.1. HTTPS를 통한 Team Server 접근 [1]
273정성태6/6/200626121    답변글 Team Foundation Server: 6.2. 두번째 방법 - HTTPS 를 통한 Team Server 접근 [1]
267정성태6/4/200625450Team Foundation Server: 5. 인터넷으로 Team Server 접근 [2]
266정성태6/8/200621900오류 유형: 7. [설치] mpoai9.dll 관련 오류
265정성태6/1/200629732디버깅 기술: 3. 원격 컴퓨터 디버깅 - VPC 설정
314정성태8/11/200626604    답변글 디버깅 기술: 3.1. Managed 원격 디버깅과 WinDBG 원격 디버깅
264정성태6/1/200636405오류 유형: 6. [VC++ 컴파일] already defined in ntdll.lib(ntdll.dll)
263정성태6/1/200637144디버깅 기술: 2. 커널 구조체 살펴보기 [5]
262정성태6/1/200630042오류 유형: 5. [설치] WinFX Beta2 - 설치시 문제점 해결
261정성태6/1/200625840웹: 3. IIS 6.0 - AppPool을 활용하여 실 서버(운영 서버)에서 디버깅
258정성태6/1/200633667디버깅 기술: 1. 디버깅 방법 - CLR 프로파일러 [1]파일 다운로드1
274정성태6/7/200626279    답변글 디버깅 기술: 1.1. 디버깅 방법 - CLR 프로파일러 ( on Vista )
254정성태6/1/200623077개발 환경 구성: 2. VPC에 Vista 설치하는 방법 [2]
255정성태6/1/200623145    답변글 개발 환경 구성: 2.1. msconfig 설정과 Windows Activation
259정성태6/1/200621952    답변글 개발 환경 구성: 2.2. Vista VPC에 터미널 서비스 - 원격 접속
253정성태6/1/200619759기타: 14. .NET 2.0 이 지원되는 NDoc 2.0 을 배포합니다.
251정성태6/1/200623211오류 유형: 4. [OS 지원 API] SHParseDisplayName과 Windows 2000
252정성태6/1/200622623    답변글 오류 유형: 4.1. NET BCL 에서 제공되는 FolderBrowserDialog [2]
249정성태6/1/200622406.NET Framework: 71. VB.NET 이외의 언어에서 My 네임스페이스 사용
250정성태6/1/200625621    답변글 .NET Framework: 71.1. VB.NET 이외의 언어에서 My 네임스페이스 사용
248정성태6/1/200623818기타: 13. Code Center Premium에서 Win32 API 소스 찾기
245정성태6/1/200631237오류 유형: 3. [C# / VC++] error C2146: syntax error : missing ';' before identifier 'GetType'
247정성태5/3/200628887    답변글 .NET Framework: 3.1. Interface를 사용하면. [1]
242정성태6/1/200628903오류 유형: 2. [COM+] CreateObject 와 HTTP 500 - Internal server error
243정성태6/1/200626453    답변글 오류 유형: 2.1. [COM+] Resolve Partial Assembly failed for Microsoft.VC80.CRT.mui
... 181  182  183  184  185  186  187  188  189  190  191  [192]  193  194  195  ...