일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- lsof
- 네트워크
- import
- Windows
- 단축키
- vscode
- web.xml
- find
- plugin
- xargs
- grep
- maVen
- profile
- Mac
- Windows 10
- tomcat
- Source
- IntelliJ
- Eclipse
- port
- netsh
- Quartz
- bash
- ssh
- resource
- 줄바꿈 문자
- JavaScript
- VirtualBox
- context
- Today
- Total
목록분류 전체보기 (1760)
develog
DROP- 테이블 삭제- Rollback 불가- 테이블이 사용했던 Storage 를 모두 Release DELETE- 데이터만 삭제- Commit 전에는 Rollback 가능- Storage Release 안됨 TRUNCATE- 테이블을 최초 생성된 초기 상태로 만듬- Rollback 불가- 최초 테이블 생성시 할당된 Storage 만 남기고 Release
CPU 정보cat /proc/cpuinfo 가상 CPU 코어 수grep -c processor /proc/cpuinfo 물리 CPU 코어 수grep -c 'physical id' /proc/cpuinfo 물리 CPU 수tail -n 20 /proc/cpuinfo | grep 'physical id' | awk '{print $4+1}'
cat /proc/meminfo | grep MemTotal
Linux 버전 확인-------------------------------[dev@dev02 server]$ uname -aLinux dev02 2.6.9-42.0.0.0.1.ELsmp #1 SMP Sun Oct 15 14:02:40 PDT 2006 i686 i686 i386 GNU/Linux[dev@dev02 server]$ Linux 버전 확인-------------------------------[dev@dev02 server]$ cat /etc/redhat-release Enterprise Linux Enterprise Linux AS release 4 (October Update 4)[dev@dev02 server]$ Linux 버전 확인-------------------------------..
테이블 코멘트COMMENT ON TABLE TB_TEST IS '테이블 코멘트 테스트'; 컬럼 코멘트COMMENT ON COLUMN TB_TEST.IDX IS '컬럼 코멘트 테스트';
RENAME TB_TEST TO TB_TEST2;