When I run this statment:
Update dbo.tbl_UserProfile_Info
set
Country=c.Country_Name,
Hiring_Country=mit.dbo.propercase(RTrim(c.Country_Name)),
Current_location=mit.dbo.propercase(Rtrim(c.Country_Name))
From dbo.Employees ne,
dbo.HRIS_CRS_Office_Country c, tbl_UserProfile_Info u
I get the following error:
Msg 8152, Level 16, State 14, Line 1
String or binary data would be truncated.
The statement has been terminated.
How can I fix it?
Thank you