0% found this document useful (0 votes)
28 views2 pages

Define The Term Database

A database is a collection of data stored and organized so that it can be easily accessed, managed, and updated. A database management system (DBMS) is software that allows users to create and manage databases. A table is a structure that organizes data into rows and columns. The smallest unit of storage in a database is a block, while a single record in a table represents a set of related data. Data can be retrieved from a database using queries in SQL. A database schema describes the structure of a database, including its tables and their relationships. The Oracle database architecture includes physical structures like data and redo log files as well as logical structures like tablespaces and segments. SQL is considered a nonprocedural language because it

Uploaded by

jdboss
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views2 pages

Define The Term Database

A database is a collection of data stored and organized so that it can be easily accessed, managed, and updated. A database management system (DBMS) is software that allows users to create and manage databases. A table is a structure that organizes data into rows and columns. The smallest unit of storage in a database is a block, while a single record in a table represents a set of related data. Data can be retrieved from a database using queries in SQL. A database schema describes the structure of a database, including its tables and their relationships. The Oracle database architecture includes physical structures like data and redo log files as well as logical structures like tablespaces and segments. SQL is considered a nonprocedural language because it

Uploaded by

jdboss
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

introduction To Database System

Define the term Database.


A. A database management system (DBMS) is system software for creating and
managing database. The database provide user and programmer with a
systematic way to create, retrieve, update and manage data. A collection of data
stored , create, retrieve and update into a multiple user.

Define the term Table.


A. A table is a data structure that organizes information into row and column. It
can be used to both store and display data in a structured format.

What is Block?
A. Oracle Database manages the storage space in the data files of a database in
units called Block. A data block is the smallest unit of data used by a database.

Define the term Record.


A. A single entry in a table is called a Record or Row. A Record in a table
represents set of related data. For example, the above EMP table has 4 records.
Following is an example of single record.

How you retrieve data from database?


Select * from emp;

What is Schema?
A. A database schema is a collection of multiple data that describes the relations
in a database. A schema can be simply described as the "layout" of a database
or the blueprint that outlines the way data is organized into tables. Schema are
normally described using Structured Query Language as a series of CREATE
statements that may be used to replicate the schema in a new database.
The structure of a database system, described in a formal language supported
by the database management system (DBMS).

Define Architecture of Oracle.


A. The Oracle database architecture includes both logical and physical
structures as follows:
Physical: Control files; Redo Log Files; Data files; Operating System Blocks.
Logical: Table spaces; Segments; Extents; Data Blocks.

What makes SQL a nonprocedural language?


SQL is a very powerful non-procedural language in which you can communicate
tasks to the computer using simple commands. In general, a non-procedural
language (also called a non-procedural language) requires the programmer to
specify what the program should do.
Shehryar Ahmed Khan

201-S14-016

introduction To Database System

Shehryar Ahmed Khan

201-S14-016

You might also like