컴

mysql 사용시 콘솔내에서 유용하게 사용할 수 있는 방법 몇가지

· 2015-09-30 (수) 23:59:13 · 2572

mysql 사용시 콘솔내에서 유용하게 사용할 수 있는 방법 몇가지를 정리합니다. 


Query 세로 보기 

접속자 및 현재 실행중인 Query 확인 

테이블 정보 요약 


1. 결과 세로로 보기

# 세로보기

mysql> select now()\G

*************************** 1. row ***************************

now(): 2014-12-02 09:30:37

1 row in set (0.00 sec)

 

#기존의 가로보기

mysql> select now(); 또는 select now()\g 

+---------------------+

| now() |

+---------------------+

| 2014-12-02 09:30:30  |

+---------------------+

1 row in set (0.00 sec)

2. mysql 접속자 및 현재 실행중인 query 확인


mysql> show processlist;

+-------+-----------+-----------------+--------+---------+-------+-------+------------------+

| Id  | User| Host | db  | Command | Time| State | Info  |

+-------+-----------+-----------------+--------+---------+-------+-------+------------------+

| 14965 | test| localhost:54679 | test | Sleep  | 18056 || NULL|

| 15053 | test| localhost:58070 | test | Sleep  | 15126 || NULL|

| 15283 | test| localhost:59917 | test | Sleep  |  7801  || NULL|

| 15362 | test| localhost:50901 | test | Sleep  |  4872  || NULL|

| 15412 | test| localhost:48443 | test | Sleep  |  2672  || select * from TEST_TABLE .......... |

| 15487 | root| localhost| mysql | Query  |  0 | NULL | show processlist |

+-------+-----------+-----------------+--------+---------+-------+-------+------------------+

6 rows in set (0.00 sec)

위와 같이 실행하면 긴 query 의 경우 잘려서 노출이 되게 된다. 

긴 query에 대해 전체 출력을 하고자 한다면 아래와 같이 한다.


mysql> show full processlist;

+-------+-----------+-----------------+--------+---------+-------+-------+------------------+

| Id  | User| Host | db  | Command | Time| State | Info|

+-------+-----------+-----------------+--------+---------+-------+-------+------------------+

| 14965 | test  | localhost:54679 | test | Sleep  | 18056 || NULL|

| 15053 | test  | localhost:58070 | test | Sleep  | 15126 || NULL|

| 15283 | test  | localhost:59917 | test | Sleep  |  7801  || NULL|

| 15362 | test  | localhost:50901 | test | Sleep  |  4872  || NULL|

| 15412 | test | localhost:48443 | test | Sleep  |  2672  || select * from TEST_TABLE where devcoding = 10|

| 15487 | root  | localhost | mysql | Query  |  0 | NULL | show processlist |

+-------+-----------+-----------------+--------+---------+-------+-------+------------------+

6 rows in set (0.00 sec)

3. 현재 데이타베이스의 테이블 정보

mysql> show table status\G

*************************** 1. row ***************************

Name: columns_priv

 Engine: MyISAM

Version: 10

Row_format: Fixed

Rows: 0

 Avg_row_length: 0

 Data_length: 0

Max_data_length: 227994731135631359

Index_length: 1024

 Data_free: 0

  Auto_increment: NULL

 Create_time: 2009-03-24 23:25:43

 Update_time: 2009-03-24 23:25:43

Check_time: NULL

 Collation: utf8_bin

 Checksum: NULL

 Create_options:

  Comment: Column privileges

*************************** 2. row ***************************


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
16-06-11 조회 2,847
16-02-15 조회 3,166
16-02-02 조회 2,828
16-01-25 조회 2,438
16-01-18 조회 2,534
16-01-08 조회 2,474
16-01-07 조회 2,501
16-01-05 조회 2,508
16-01-05 조회 2,804
16-01-05 조회 2,649
16-01-05 조회 2,695
16-01-04 조회 2,484
16-01-04 조회 2,584
16-01-04 조회 2,532
16-01-04 조회 2,449
15-12-30 조회 2,744
15-12-24 조회 2,569
15-12-24 조회 2,597
15-12-24 조회 2,626
15-12-24 조회 2,586
15-12-23 조회 2,558
15-12-16 조회 2,650
15-12-15 조회 2,732
15-12-11 조회 2,787
15-12-10 조회 2,713
15-11-09 조회 2,697
15-11-09 조회 2,873
15-10-06 조회 3,204
15-10-02 조회 3,046
15-05-29 조회 4,383
15-02-02 조회 4,165
15-01-18 조회 4,109
14-10-25 조회 8,209
14-10-25 조회 5,011
14-10-22 조회 7,020
14-10-22 조회 4,760
14-10-22 조회 4,692
14-10-18 조회 5,450
14-10-17 조회 5,820
14-10-17 조회 5,269
14-10-17 조회 8,696
14-10-17 조회 6,257
14-10-13 조회 4,074
14-10-13 조회 4,322
14-10-07 조회 6,032
14-09-24 조회 3,822
14-09-23 조회 3,894
14-09-22 조회 4,697
14-09-22 조회 5,945
14-09-22 조회 3,946
14-09-22 조회 3,583
14-09-21 조회 4,118
14-09-21 조회 3,662
14-09-20 조회 3,675
14-09-20 조회 3,584
14-09-20 조회 3,773
14-09-19 조회 3,663
14-09-19 조회 3,822
14-09-19 조회 3,703
14-09-19 조회 3,979
14-09-19 조회 3,756
14-09-19 조회 3,685
14-09-19 조회 3,912
14-09-19 조회 3,665
14-09-19 조회 3,653
14-09-19 조회 3,712
14-09-18 조회 3,695
14-09-18 조회 3,715
14-09-18 조회 3,879
14-09-18 조회 3,903
14-09-18 조회 3,933
14-09-18 조회 4,693
14-09-18 조회 5,271
14-09-18 조회 5,206
14-09-18 조회 4,005
14-09-18 조회 4,490
14-09-18 조회 4,144
14-08-30 조회 5,241
14-08-06 조회 5,892
14-08-06 조회 5,468
14-08-03 조회 4,981
14-06-12 조회 5,267
14-05-11 조회 3,583
14-05-11 조회 4,374
14-05-11 조회 4,473
14-05-09 조회 1.2만
14-05-01 조회 4,846
14-03-30 조회 4,309
14-03-23 조회 7,851
14-02-12 조회 3,784
13-10-29 조회 7,651
13-10-28 조회 8,580
13-09-29 조회 6,542
13-09-29 조회 4,174
13-07-23 조회 4,884
13-07-23 조회 1.2만
13-07-14 조회 4,622
13-07-14 조회 4,965
13-07-14 조회 5,934
13-07-14 조회 5,110