본문 바로가기

강의 목록342

6. InnoDB의 Insert Buffer -참고- 이글은 MySQL Reference 5.1의 내용을 번역한 겁니다. 영문과 함께 번역한거 공유합니다. It is a common situation in database applications that the primary key is a unique identifier and new rows are inserted in the ascending order of the primary key. Thus, insertions into the clustered index do not require random reads from a disk.Application에서 일반적으로 PK 정렬 순으로 새 데이터가 입력되는것이나 PK가 Unique identifier로 된것은 아주 일반적인 모스비다. 그래서 C.. 2011. 5. 1.
MySQL NewsLetter: March 2011 [Highlights] Live Webinar: MySQL on Windows Online Forum (March 16) 시간: Wednesday, March 16, 2011 - 9:00AM PT Windows에서 MySQL을 사용하실 때 TCO를 줄이면서 좀 더 효율적으로 사용싶다면 한번쯤 들어보셔도 좋을거 같습니다~ 여기서 등록하세요~ http://event.on24.com/r.htm?e=284490&s=1&k=583E2237A777967F8410211EC54EF3CB&partnerref=newsletter Event: Collaborate 11 - Orlando, Florida (April 10-14) Collaborate 11은 Oracle Community를 위한 Technology 와 Appl.. 2011. 3. 13.
MySQL 5.5 GA 발표 MySQL 5.5.8이 GA 버젼으로 발표가 되었네요. 5.0이나 5.1에 비해 상당히 빨리 발표가 되었습니다. 이제 5.5에 대한 New Feature를 공부해야 하는 시기가 되었군요... 아래의 url로 가면 New Feature에 대한 내용을 간략하게나마 확인할 수 있습니다. http://dev.mysql.com/tech-resources/articles/introduction-to-mysql-55.html 2010. 12. 16.
5. Stored Routines 권한 설정 팁~ 시스템 variable 중 automatic_sp_privileges라는 게 있네요.... 이 설정값을 1로 설정하게 되면, stored routine을 create하는 계정에 대해 자동적으로 EXECUTE, ALTER 권한을 할당하게 되네요... 0일 경우에는 반대가 되구요.... stored routine을 생성하는 계정에 create routine만 주게 되면 된다는 거네요.. 근데..이게 definer로 설정된 것과는 또 다른 문제이니.....주의 하시구요.... 2010. 9. 15.