Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

mysqldump에 의해 생성된 파일을 어떻게 복원할 수 있습니까?

<시간/>

mysqldump에 의해 생성된 파일을 복원하려는 경우 기존 데이터베이스 또는 생성 후 새 데이터베이스에서 복원할 수 있다고 가정합니다. 그런 다음 SOURCE 문을 사용하여 복원할 수 있습니다. 예를 들어 설명할 수 있습니다.

예시

이 예에서는 덤프된 student_info.sql이라는 테이블을 복원합니다. 기본적으로 데이터베이스 이름 'query'에 있었습니다. 이제 'tutorials'라는 데이터베이스에 복원하겠습니다.

mysql> Use Tutorials;
Database changed

mysql> SOURCE student_info.sql;
Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected, 1 warning (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.45 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.05 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 7 rows affected (0.05 sec)
Records: 7 Duplicates: 0 Warnings: 0

이제 다음 문장의 도움으로 'tutorials'라는 데이터베이스에 'student_info' 테이블이 복원된 것을 볼 수 있습니다.

mysql> Show tables;
+---------------------+
| Tables_in_tutorials |
+---------------------+
| rtgs                |
| student_info        |
+---------------------+
2 rows in set (0.00 sec)

mysql> Select * from Student_info;
+------+---------+------------+------------+
| id   | Name    | Address    | Subject    |
+------+---------+------------+------------+
| 101  | YashPal | Amritsar   | History    |
| 105  | Gaurav  | Chandigarh | Literature |
| 125  | Raman   | Shimla     | Computers  |
| 130  | Ram     | Jhansi     | Computers  |
| 132  | Shyam   | Chandigarh | Economics  |
| 133  | Mohan   | Delhi      | Computers  |
| 150  | Saurabh | NULL       | Literature |
+------+---------+------------+------------+
7 rows in set (0.00 sec)