본문 바로가기
SQL

Intro to Database (13) : NoSQL

by 춘춘주모 2019. 7. 15.
반응형

2019-07-15

NoSQL이란? 

전통적인 관계형 데이터베이스 관리 시스템(RDBMS)과는 다르게 설계된 비관계형(non-relational) DBMS로, 대규모의 데이터를 유연하게 처리할 수 있는 것이 강점이다. 노에스큐엘(NoSQL)은 테이블-컬럼과 같은 스키마 없이, 분산 환경에서 단순 검색 및 추가 작업을 위한 키 값을 최적화하고, 지연(latency)과 처리율(throughput)이 우수하다.
출처 - [네이버 지식백과] 노에스큐엘 [NoSQL, non SQL] (IT용어사전, 한국정보통신기술협회)

 

실습 (1)

NoSQL 실습을 위해 MongoDB를 다운로드 

https://www.mongodb.com/download-center/community 

 

MongoDB Download Center

Select the server you would like to run: MongoDB Enterprise ServerADVANCED FEATURES. PERFORMANCE GRADE. MongoDB offers both an Enterprise and Community version of its powerful non-relational database. MongoDB Enterprise is available as part of the MongoDB

www.mongodb.com

설치시 콤파스를 같이 설치를 선택하니 시간이 너무 오래 걸려서 따로 설치했습니다.

https://www.mongodb.com/download-center/compass

 

MongoDB Download Center

MongoDB Compass As the GUI for MongoDB, MongoDB Compass allows you to make smarter decisions about document structure, querying, indexing, document validation, and more. Compass is available as part of our subscriptions. MongoDB Compass is available in sev

www.mongodb.com

cmd 창에서 mongo db를 실행하고, 유저를 생성, 데이터를 삽입하고 가공, 수정하는 작업을 진행해보았습니다.

 

실습 (2)

 

 

 

반응형

댓글