Engineering/DB 36

MySQL 설치후 암호 설정 및 사용자 추가

mysql 을 설치후, 사용자를 추가하려고 할때 사용하는 방법입니다. 아래 링크에서 필요한 부분만을 발췌해서 정리합니다. http://www.gpgstudy.com/gpgiki/MySQL%EC%97%90%EC%84%9C%20%EC%82%AC%EC%9A%A9%EC%9E%90%EC%99%80%20%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%EB%A7%8C%EB%93%A4%EA%B8%B0 - root 암호 설정 # mysqladmin 이용 $ mysqladmin -u root "passwd" "new-passwd" # update 문 이용 $ mysql -u root -p mysql> update user set password = password('..

Engineering/DB 2011.05.27

MSSQL 2005 관리자 강좌_9일차

Stored Procedure -- 저장 프로시저 이름은 "sp_" 시작하지 않도록 지정 - sp_procName : sysem proc : master database 를 먼저 lookup - up_procName -- 파라미터 스니핑 : recompile, if 분기 ***** - 데이타 분포가 안좋을때, 실행계획이 먼저 컴파일된 프로시져를 따라갈때 발생 ex) create proc up_getadata @num int as select * from tbl where col = @num with option (recompile) -- 2005 에서 해결방법 exec up_getadata 4 exec up_getadata 1 setstatistics io on select * from tbl - 해결방..

Engineering/DB 2010.12.10

MSSQL 2005 관리자 강좌_7일차

* covering index -- 2005 부터 지원. 마지막 노드에서만 col2 를 포함 create index ix_tbl1 on tbl (col1) include (col2) nonclustered : ix_tblname clustered : cx_tblname create [unique] [clustered] [nonclustered] index ix_tblname order by col1 asc, col2 desc include () -- in sql2005 where -- in sql2008 create index ix_xxxx on table (col) where col 0 * 정밀한 실행 계획 -- trace flag 2301 * 인덱스 확인 sp_help tbl_name sp_helpi..

Engineering/DB 2010.12.08

MSSQL 2005 관리자 강좌_6일차

- nonclustered index * 책의 인덱스(색인) * 250개까지 가능 -- clustered index * 영어사전 * 색인 + 데이타 * 테이블당 하나만 생성 ex) 100 페이지, 단어 60개를 찾을때 indexx(5 페이지)* 60 = 300 페이지 : indexed scan 100 페이지 전체 : full scan -- covered index * index 안에 이미 찾고자하는 데이타가 있음 * rid lookup 이 없음 -- unique index * clusterd index 에 유일한 값이고, 사이즈를 줄이기 위해 -- nested loop * key index, smail -- merge * key index, medium -- hash join * no index, lar..

Engineering/DB 2010.12.03

MSSQL 2005 관리자 강좌_5일차

update tbl set = 1 : where 절이 없어서, 행단위 잠금으로 한행씩 set =1 실행이 되는 상황 row 단위 잠금 -> page 단위 잠금 -> table 단위 잠금 으로 잠금상태가 변한다. 성능 모니터(perfmon) * buffer cache hit ratio : 사용자가 요청한 데이타가 메모리에 얼마나 있는지 비율 : 90 % 이상이어야함 * page life expectance : cache(메모리) 에 데이타가 남아있는 시간

Engineering/DB 2010.12.02