I have imported a DB from Local machine to server machine. While importing the Database, the character set values of the DB are set by system default to \"Latin\". I have ch
As documented under CREATE PROCEDURE and CREATE FUNCTION Syntax (emphasis added):
If
CHARACTER SET
andCOLLATE
attributes are not present, the database character set and collation in effect at routine creation time are used. To avoid having the server use the database character set and collation, provide explicitCHARACTER SET
andCOLLATE
attributes for character data parameters.If you change the database default character set or collation, stored routines that use the database defaults must be dropped and recreated so that they use the new defaults.