Skip to main content

What is Database?

Before going to tell about what is database I would like to demonstrate what is data?.

DATA:
A fact can be recorded called data. For example music, speech, video, image, text, number these all are called as data.

DATABASE:
 The collection of related data called database. For example 
  • Collection of Text(Text1,Text2,Text3,...etc)
  • Collection of Image(Image1,Image2,Image3,....etc)
  • Collection of Video(Video1,Video2,Video3,....etc)
  • Collection of Speech(Speech1,Speech2,Speech3,....etx)
  • Collection of Number(Number1,Number2,Number3,...etc)
There is a lot of databases maintained by many companies or government for some specific data. It may about text content only or video content only or image content only and etc.

TYPES OF DATABASE:
  • TDB(used for storing only text content)
  • GIS(used in the satellite for taking pictures from space and send back)
  • RDB(used in the production line)
  • DW(storing data for future)
and so on

DATABASE MANAGEMENT SYSTEM(DBMS):

It is a set of programs that can be defined(Datatype), constructs (How are you going to place the data on the storage device), manipulate(updating, deleting, adding into a database).

WHY WE NEED DBMS?

Actually, a database running using the system. So we can easily set a button for the database to OS(Operating System). But here the problem is whenever we are calling the database from the system first thing it will call the OS and then OS will call the database. Which means OS will change user mode to console mode(From OS we can access the database only in console mode )So that it will take so much time for booting. But we are expecting speed. 

In this case DBMS(A software)using for accessing database form the OS.

WHAT IS DATABASE SYSTEM?

A database system is the combination of DB(Database) and DBMS(Database Management System).


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...