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
- error
- NetBeans
- Android
- MySQL
- ajax
- java
- CentOS
- 와일드카드
- 톰캣
- laravel
- 이클립스
- input
- Spring
- 정규식
- curl
- html
- JSON
- 리눅스
- 안드로이드
- Linux
- tomcat
- SeLinux
- properties
- larravel
- jquery
- junit
- DB
- php
- File
- javascript
Archives
- Today
- Total
목록DB (5)
합쭈기 programming
DB table 용량 확인
SELECT table_schema "Database Name", SUM(data_length + index_length) / 1024 / 1024 "Size(MB)" FROM information_schema.TABLES GROUP BY table_schema;
DB/Mysql
2015. 6. 15. 15:52
xml에서 properties 설정 사용하기
classpath:/properties/db.properties 상기 등록 후
Java/Spring
2015. 5. 11. 16:05
중복 제거
select distinct 컬럼 from 테이블 [출처] MySQL - 중복제거|작성자 Johnny
DB/Mysql
2015. 4. 27. 17:13
현재 접속 상태 보기
SHOW STATUS LIKE '%CONNECT%';
DB/Mysql
2015. 4. 16. 10:31