에러 해결
에러 메세지 : 데이터 정렬 충돌을 해결할 수 없습니다.
select field from DB where field not in (
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 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
)
댓글 없음:
댓글 쓰기