'2020/08/28'에 해당되는 글 3건

  1. 2020.08.28 timezone
  2. 2020.08.28 Incorrect string value: '\xED\x9C\xB4\xEB\xA8\xBC...' for column 'user_name' at row 1
  3. 2020.08.28 max_allowed_packet

timezone

DataBase/Mysql 2020. 8. 28. 11:09

SET GLOBAL time_zone='Asia/Seoul';

SET time_zone='Asia/Seoul';

Posted by 철냄비짱
,

Show variables like"c%";

 

ALTER TABLE cms_account converttocharset utf8;

ALTER DATABASE sigongweb_db charset utf8;

Posted by 철냄비짱
,

max_allowed_packet

DataBase/Mysql 2020. 8. 28. 11:06

SET GLOBAL max_allowed_packet = 1024 * 1024 * 16;

SET SESSION max_allowed_packet = 1024 * 1024 * 16;

Posted by 철냄비짱
,