- ต้องการสร้างประโยค insert เพื่อจะนำข้อมูลไปใส่ database server อื่น
- โดยสร้างจาก store procedure นี้
- แต่มีปัญหาเรื่อง charset ของ table นั้นทำให้ ไม่ได้ผลลัพธ์ที่ต้องการ
Error show:
sp_generate_inserts pagename
--INSERTs generated by 'sp_generate_inserts' stored procedure written by Vyas
--Build number: 22 --Problems/Suggestions? Contact Vyas @ vyaskn@hotmail.com --http://vyaskn.tripod.com
SET NOCOUNT ON
PRINT 'Inserting values into [pagename]'
Msg 457, Level 16, State 1, Line 1
Implicit conversion of varchar value to varchar cannot be performed because the collation of the value is unresolved due to a collation conflict.
PRINT 'Done'
SET NOCOUNT OFF
Solving by change collation
Befor
After
Note
- ตอนแรกนึกมีปัญหากับ text type แต่ไม่ใช่
- แต่มีปัญหากับ type image แน่ๆ
No comments:
Post a Comment