82 MySql - AUTO_INCREMENT 초기화 방법과 유의사항 MySql8.x AUTO_INCREMENT 초기화 방법 ALTER TABLE table_name AUTO_INCREMENT =1; 위의 방법으로 AUTO_INCREMENT 값을 변경할 수 있으나, 데이터가 없는 경우에만 가능하다. Note that you cannot reset the counter to a value less than or equal to any that have already been used. For MyISAM, if the value is less than or equal to the maximum value currently in the AUTO_INCREMENT column, the value is reset to the current maximum plus one. For .. 2022. 9. 2. Docker - mysql8 설치 및 DBTool(Dbeaver) 접속 ( 오류 access denied for user 및 casching_sha2_password 해결 ) Docker에 mysql 8.x 설치과정을 소개한다. 영속적인 데이터를 유지하기 위해서 volume을 사용한다. 실행환경 - os: windows 10 docker volume create 명령으로 volume을 생성할 수 있다. docker volume create mysql docker volume create mysql_config 생성된 volume은 docker volume ls로 확인할 수 있다. docker volume ls 위에서 생성한 volume, mysql은 mysql의 물리 data파일이 존재하는 /var/lib/mysql에 매핑한다. mysql_config은 mysql의 config file이 위치한 /etc/mysql에 매핑한다. docker run --rm -d -v mysql.. 2021. 8. 15. 이전 1 다음