replace 함수의 인수 1에 대한 인수 데이터 형식 text이(가) 잘못되었습니다.



text 형식 replace() 사용시 오류 해결방법


UPDATE
테이블명
SET
수정할 컬럼명 = replace(수정할 컬럼명, '변경할 문자', '변경될 문자)
WHERE
수정할 컬럼명 LIKE '%변경할 문자%'

replace 함수의 인수 1에 대한 인수 데이터 형식 text이(가) 잘못되었습니다.

컬럼 형식이 text 형식일 경우 위의 오류가 발생함.
(text, ntext 형식이 오류 발생한다고함.. )


UPDATE
테이블명
SET
수정할 컬럼명 = replace ( convert ( varchar ( max ) , 수정할 컬럼명 ) , ' 변경할 문자 ' , ' 변경될 문자 ' )
WHERE
수정할 컬럼명 LIKE ' % 변경할 문자 % '


뭔가 잘못된 요청을 하신 것 같아요.

error="redirect_uri_mismatch", error_description="Invalid redirect: 여기구나?service=kakao does not match one of the registered values. Please check app settings on kakao developer site."

weblogic.net.http.SOAPHttpsURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection



sun.net.www.protocol.https.Handler()



http://nine01223.tistory.com/331



검색하기





fatal error : allowed memory size of 123131 bytes exhausted (tried to allocate 71 bytes)


이것을 추가하면은 에러가 사라졌습니다.


set_time_limit(0);

ini_set('memory','256M');

ini_set('memory_limit', -1);





+ Recent posts