Skip to main content

What is File System on windows? How its different from Database?


A Filesystem is playing an important role on os. Whenever you installing the os, file system also will install. The main purpose of the file system is organizing the data and store to hard disk. So without the help of file system, we cannot assign data and store the data in the hard disk

TYPES OF FILE SYSTEM:

  • FAT (File Allocation Table)--FAT12, FAT16, FAT32
  • NTFS (New Technology File System)
  • exFAT (extended FAT File System)

FAT 32(File Allocation Table):

  • Provide  4GB to 16TB disk size(Perfect for storage device)
  • If file single file size more than 4gb, then it will not support
  • No security and not support for installing OS

NTFS(New Technology File System):


  • File size and partition up to 256TB
  • Provide security
  • Quick crash error recovery, backup, encryption include
  • In mac os read-only and Linux write only

ExFAT(extended FAT File System):

  • File size and partition up to 256TB
  • we can copy a large amount of file with the single file without error
  • In Mac, Windows, Linux, android will read and write

File system different from Database:


In windows and database whenever we are going to save the data or read the data it will be happening through the file system. but different between those two is how you get the data

For example, in windows, you are saving one file(.txt) and the content in the file is listed something with sequence number up to five. After some time you forgot sequence number 5 content. So that you planned to read the content and the file system gave file(Filled with full content up to seq 5, not only seq 5 content).

But in the database, you are saving the data as a table format and content having up to sequence number 5. After some time you forgot sequence number 5 content. So that you planned to read the content and the file system gave the file(It will give only sequence number 5 content, not another sequence number 1, 2, 3, 4).




Hope this will help you. Please command further information.

Comments

Popular posts from this blog

What is System Software and Application Software?

In this section, we are going to discuss the difference between system software and application software. Still, most of us have a lot of confusion about these two. I will clarify let me explain What is Software? Software means a set of the program made to complete some task. Its full and full codes. What is hardware? Hardware is physical one that we can touch and feel and made with some electrical components and that have some specific functions. For example Monitor, Pc, Mouse, Electric Board, Printer and etc Now you may think why I included hardware and explained?. The reason is without hardware software won't work same as without related software hardware won't work.  What is system software?  It is the software that used to manage computer resources and essential for the computer to work. It will install automatically when OS installed. See the image OS and utilities are applied in hardware then only it will work. Types: BIOS Ut...

What is Windows Service?

A Windows service is a Computer Program It enables to create long-running executable applications. It doesn't have any User Interfaces only running in the background process. It will run automatically when system boots ON and also we can set manually for Start and Stop Only one instance of windows service running on the device. It will run only administrator privileges. Are you looking my page using system or laptop?. Then you can see a lot of windows services that are running on your system background without your permission, Just follow my instructions Click "Start">Type "Services">Now you can see a lot of window services like below  WHAT IS THE WINDOWS SERVICES CONTROL MANAGER? Windows Services are managed via the Services Control Manager Panel.The Panel shows a list of services that are running on your system/laptop and for each Name, Description(Purpose of service), Status(Started or Not), Startup Type(Ma...

What is NLog ?

Nlog   is .NET Library which enables to add some sophisticated traces code to your application and delivering the flow of diagnostic traces from   source to target What is source code?                                         The source code is the fundamental component of a computer program that is created by a programmer and sequence formate.                    We can control the flow of diagnostic traces from source to target type. Types of Target: Email Messages(.mail)  Text File(.txt) Event Log(.log) Database(.db) and etc These all are called as target type messages.Each trace messages augmented with some contextual information. What is Contextual information?                    Contextual information can include f...