featur

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

개발/MSSQL

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

featur 2015. 11. 3. 10:42

에러 해결

 

 

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

 

 

 

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

)


Comments