본문 바로가기

2015/06

MONGO DB 쉽게 설치하기 및 체크사항 - STEP by STEP 1. 몽고 디비 다운로드https://www.mongodb.org/downloads 에서 64bit zip 파일로 다운받을것 msi 파일은 자동 폴더 위치를 지정함으로 다운 비추천- zip 바로 다운 : https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-3.0.4.zip 2. 몽고 디비 설치 - zip 파일을 다운 받고 원하는 위치에 해당 파일을 압축 해제 - 저같은 경우는 E:\MONGODB 에 폴더 설치 - 처음 압축을 풀면 data, Logs 폴더와 mongod.cfg 파일은 없는 상태일 것임 3. 데이터베이스 폴더 설정 - 위 이미지에서 보이는 Data 폴더를 새로 만든다. 4. 로그 기록 파일 폴더 설정 - 위 이미지에서 보이는 Lo.. 더보기
Surface3 fn 키 눌려 있는 현상 해결 가끔 surface를 쓰다 보면 F1~F12 버튼을 눌렀을때 fn키가 함께 눌러진형태로 작동하는 경우가 있다. 이럴때는 fn + Caps Locks 버튼을 눌러 원래의 F1~F12 버튼기능로 사용 변경할 수 있다. 더보기
SQL to MongoDB: An Updated Mapping Rick Osborne's original chart.The aggregation pipeline code has finally been merged into the main development branch and is scheduled for release in 2.2. It lets you combine simple operations (like finding the max or min, projecting out fields, taking counts or averages) into a pipeline of operations, making a lot of things that were only possible by using MapReduce doable with a “normal” query... 더보기
Mapping Relational Databases and SQL to MongoDB NoSQL databases have emerged tremendously in the last few years owing to their less constrained structure, scalable schema design, and faster access compared to traditional relational databases (RDBMS/SQL). MongoDB is an open source document-oriented NoSQL database which stores data in the form of JSON-like objects. It has emerged as one of the leading databases due to its dynamic schema, high s.. 더보기