250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- git pull
- CentOS7
- MariaDB
- crontab
- LetsEncrypt
- front page
- Liniux
- Linux
- SSL
- vscode
- root
- Mac
- DOM Parser
- Apache
- new user
- php
- https
- mysql
- non-www
- wordpress
- Google Cloud
- Xdebug
- html
- home page
- launch.json
- centos
- Fail2ban
- 구글 클라우드
- Certbot
- child theme
Archives
- Today
- Total
between 0 and 1
Restore MySQL Dump 본문
728x90
반응형
Step 1. Create Database
mysql> create database new_database;
Step 2. Restore MySQL Dump
$ mysql -u [user] -p [new_database] < [filename].sql
make sure to include [new_database] and [filename] in the path.
728x90
반응형
'Software Development Engineering > MySQL' 카테고리의 다른 글
[MySQL] Make Superuser (root user) (0) | 2021.02.10 |
---|---|
add new user and set remote access (0) | 2021.02.10 |
[MySQL] backup (mysqldump) bash script without password (0) | 2021.01.26 |
[MySQL] Too many connection error를 만났을 때 해결 방법 (max_connection 변경을 통한). 그리고 max_connection이 214 이상으로 설정되지 않는 경우 해결 방법 (0) | 2018.07.01 |