1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ファイルシステムとデータベースシステムの違い

Posted at

特徴の違い

【ファイルシステム】

  • 一人が管理する
  • 複数人で編集することを前提としていないため、同時編集不可
  • 暗号化機能がある
  • 圧縮機能がある
  • データはOSが管理(OSに依存するため、OSによる差分大きい)

【データベースシステム】

  • 複数人で管理可能
  • 同時にシステムにログインすることが可能
  • CRUD操作権限をユーザーごとに設定可能→Aさんは読み取りのみ、Bさんは書き込みのみ等設定可能(システムごとに権限分けるのも可能)
  • SQLを使って同一の書き方で検索・挿入が可能(システムによるプログラミング言語の違いを無視できる)(再利用性◎)
  • バックアップ機能が充実
  • 大量のデータを保存したとしてもある程度軽量
  • データはDBMSが管理

まとめ

  • それぞれ特徴が存在するため、どちらか一方のみを使用するのではなく両方の特徴を理解したうえで使い分けるのが重要

参考サイト

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?