table 일괄 삭제 하기 > 기술자료 | 해피정닷컴

table 일괄 삭제 하기 > 기술자료

본문 바로가기

사이트 내 전체검색

table 일괄 삭제 하기 > 기술자료

MySQL table 일괄 삭제 하기

페이지 정보


본문

CMS(그누보드,XE,wordpress)등을 사용하다가 데이터베이스는 놔두고 테이블만 일괄 삭제후 다시 설치할 때 유용합니다.

drop table * 또는 all 이렇게 해서 지워지면 좋겠지만 안되는 방법이니 다른 방법을 써야 합니다.
Mysql 에서 데이터베스는 놔두고 테이블만을 일괄 적으로 삭제할때 사용하기 좋은 방법입니다



1. MariaDB 로그인

[root@localhost ~]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 13
Server version: 10.1.25-MariaDB MariaDB Server

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> 



2. 내용 붙여 넣기
아래 내용을 복사해서 한번에 실행시킵니다.

SET @tables = NULL;
SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables
FROM information_schema.tables 
WHERE table_schema = '디비명';
SET @tables = CONCAT('DROP TABLE ', @tables);
PREPARE stmt FROM @tables;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;



3. 적용된 모습

MariaDB [(none)]> SET @tables = NULL;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables
    -> FROM information_schema.tables 
    -> WHERE table_schema = '디비명';
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> SET @tables = CONCAT('DROP TABLE ', @tables);
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> PREPARE stmt FROM @tables;
Query OK, 0 rows affected (0.00 sec)
Statement prepared

MariaDB [(none)]> EXECUTE stmt;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> DEALLOCATE PREPARE stmt;
Query OK, 0 rows affected (0.00 sec)



4. 테이블이 지워졌는지 확인

MariaDB [(none)]> use 디비명;
Database changed
MariaDB [디비명]> show tables;
Empty set (0.00 sec)

MariaDB [디비명]> 



참고자료
http://bizmark.co.kr/archives/320 

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 30 페이지
  • RSS
기술자료 목록
2061
SNS   13846  2017-08-31 18:31  
2060
etc쇼핑몰   10297  2017-08-31 16:57  
2059
SNS   10964  2017-08-31 15:28  
2058
그누보드   19610  2017-08-31 14:34 ~ 2023-04-17 13:00  
2057
ClassicASP   12277  2017-08-30 07:34 ~ 2021-02-26 16:47  
2056
Adobe   16795  2017-08-29 17:50 ~ 2017-09-02 00:00  
2055
Linux   11629  2017-08-26 03:32 ~ 2017-10-30 23:05  
2054
Linux   15755  2017-08-26 00:44 ~ 2017-08-26 00:00  
2053
Linux   16682  2017-08-26 00:30 ~ 2017-08-26 00:00  
2052
WordPress   9961  2017-08-23 04:24  
2051
MySQL   16570  2017-08-22 02:39 ~ 2017-08-22 00:00  
2050
그누보드   9882  2017-08-22 02:32 ~ 2017-08-22 00:00  
2049
그누보드   14237  2017-08-22 02:26 ~ 2021-06-23 13:35  
2048
SNS   42368  2017-08-21 17:54 ~ 2017-08-24 00:00  
2047
MySQL   28283  2017-08-17 14:16  
2046
etc보드   10374  2017-08-17 13:53  
2045
etc보드   17337  2017-08-17 04:28 ~ 2017-08-17 00:00  
2044
일반   12962  2017-08-16 14:14 ~ 2023-04-03 23:59  
2043
Linux   19434  2017-08-11 13:06  
2042
etc보드   10575  2017-08-11 06:07 ~ 2017-08-11 00:00  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.