클래스/└ 가이드

<데이터베이스> 데이터베이스를 사용하는 이유 (vs 서버)

디벅잉 2022. 2. 19. 13:11
728x90

 

🐣

 

Q.

데이터를 서버에 저장하지 않고 별도로 데이터베이스에 저장하는 이유는?

A.

데이터를 효율적으로 관리하기 위해서 데이터베이스가 사용됩니다.

효율적인 관리란 데이터 중복의 최소화, 데이터의 공유, 데이터의 일관성, 무결성, 보안성 유지 등을 말합니다.

 

📌

 

https://www.quora.com/Can-we-use-server-to-store-data-instead-of-database

 

Can we use server to store data instead of database?

Answer (1 of 3): You should explain your question a little bit because you’re maybe asking about customizing servers to handle file-level workloads ( unstructured data) or you’re concerned about data organization in your system. Because currently, your

www.quora.com

https://softwareengineering.stackexchange.com/questions/190482/why-use-a-database-instead-of-just-saving-your-data-to-disk

 

Why use a database instead of just saving your data to disk?

Instead of a database I just serialize my data to JSON, saving and loading it to disk when necessary. All the data management is made on the program itself, which is faster AND easier than using SQL

softwareengineering.stackexchange.com

https://forum.freecodecamp.org/t/storing-data-on-server-vs-database/320500

 

Storing data on server vs database

Hey all, I’m having a bit of confusion between 2 different methods of storing data and was hoping someone could help. I’ll use a super basic example, lets say I’m keeping track of how many times a page has been visited using express on node.js const

forum.freecodecamp.org

 

728x90