What is a database?
What is a database?■Traditional problems with files・Data is duplicated.・Data inconsistency occurs.The concept of database was born to solve these problems.The case that two systems have the same data, for example.■The purpose of using the database①Share data and keep it consistent.②Make the data independent from the system. It will become easily to update the data.③The data will be protected.-----------------------------------------------------------[Japanese]データベースとは■従来のファイルにおける問題点・各ファイルに同じ内容のデータが複数発生することがある(重複)・データの矛盾が発生する(複数の利用者が同時に更新するとき)これらの問題点を解決するために、データベースという概念が生まれました。(例)2つのプログラムが同じ内容のデータを持っている場合■データベースの目的①データの共有化 → 整合性を保つ②データのプログラムからの独立 → 保守・変更が容易になる③データの機密保護
0