Developer Cafe

SQL time_zone Error 본문

SQL

SQL time_zone Error

개발자 카페 2021. 5. 27. 09:21
728x90

the server time zone value '   ѹα  ǥ ؽ ' is unrecognized or represents more than one time zone. you must configure either the server or jdbc driver (via the servertimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

 

SELECT @@GLOBAL.time_zone, @@SESSION.time_zone;

SET GLOBAL time_zone = '+9:00';    # 권한 필요
SET time_zone = '+9:00';

 

 

728x90

'SQL' 카테고리의 다른 글

MySQL Foreign Keys Setting  (0) 2021.05.31
ON UPDATE CURRENT_TIMESTAMP  (0) 2021.05.21
Comments