Database/mysql(2)
-
[MySQL] 데이터베이스(테이블, 데이터 ...)를 이관하는 방법.
작업 시나리오. 로컬 MySQL 5.7.13 서버의 데이터베이스를 추출/백업. 추출한 데이터베이스를 원격 MySQL 8.0.35 서버의 데이터베이스로 이관/복원. 로컬 서버의 데이터베이스(테이블, 데이터 ...)를 추출/백업. $ mysqldump -u username -p old_database > backup.sql $ ls | grep backup.sql backup.sql MySQL Clinet로 원격 서버에 접속 후, 데이터베이스 생성. $ mysql -h address -P port -u username mysql> CREATE DATABASE new_database; 추출/백업한 데이터베이스(테이블, 데이터 ...)를 생성한 데이터베이스로 이관/복원. $ mysql -h address -P ..
2024.02.14 -
[mysql] 실행한 쿼리를 로깅/조회하는 방법.('general_log'의 Value를 On으로 설정하여, 실행한 쿼리를 'general_log_file'의 Value에 로깅하도록 설정.)
1.MySQL 서버 노드에서 root 계정으로 DB에 접속. # mysql -u root -p $MySQL_DB_NAME Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 337 Server version: 5.7.13-enterprise-commercial-advanced MySQL Enterprise Server - Advanced Editio..
2023.06.13