2014년 8월 29일 금요일

[mssql] 에러 메세지 : 데이터 정렬 충돌을 해결할 수 없습니다.

에러 해결

에러 메세지 :  데이터 정렬 충돌을 해결할 수 없습니다.


select field from DB where field not in (
select field from OtherDB.DB
)

DB : Korean_Wansung_Unicode_CS_AS
OtherDB : Korean_Wansung_CI_AS

equal to 작업에서의 "Korean_Wansung_Unicode_CS_AS"과(와) "Korean_Wansung_CI_AS" 간의 데이터 정렬 충돌을 해결할 수 없습니다.

해결

select field from DB where field not in (
select 
field collate Korean_Wansung_Unicode_CS_AS AS fieldcollate
from OtherDB.DB
)

댓글 없음: