Informatics 9. Билингвальный учебник - страница 8

стр.

__Attach the RAM(memory) modules in the corresponding slots.

__Select a compatible operating system, and follow the instructions to install.

__Open the case and mount the power supply which is M-ATX type.

__Prepare the Mainboard (motherboard).

__Mount the CPU in the socket of the Mainboard.

__Suitably position the Mainboard in the case.

__Connect the SATA connectors to the drives and the USB connectors and the case switches to the motherboard.

__Attach the Mainboard backplate to the case and check the Mainboard mounting positions.

__Mount the DVD-ROM drive.


 

CHAPTER 2. DATABASE BASICS

2.1 WHAT IS A DATABASE?

You will:

Explain the meaning of a database;

Explain the purpose of using databases;

Identify the database components.


How does the librarian know if a book that you want exists or not in the library?

Database

База данных представляет собой организованную совокупность данных. Мы можем создать базу данных книг для того, чтобы решить проблему с поиском книги. Также можем классифицировать все книги в соответствии с жанром, годом публикации и автором. Такие классификации могут быть сделаны путем создания базы данных. База данных состоит из полей и записей.

Запись - это информация об определенном элементе.

Поле - столбец, в котором хранятся одинаковые типы информации

Example of records and fields in a database


Activity

Draw your own vision of the database of your class on a sheet of paper. You need to think about what kind of information must be in your database. Make 10 fields at least that may be ‘name’, ‘surname’, ‘birthday’, etc.

Example of database in organized table


Databasemanagementsystem

Раньше люди использовали журналы или тетради для ведения и хранения данных, но сегодня такая работа осуществляется с помощью компьютеров. Компьютеры требуют более быстрый доступ и защиту, поэтому программисты разработали СУБД (систему управления базами данных) - программу для управления и защиты данных.


ExamplesofDBMS: Access, Oracle, PostgreSQL, MySQLetc.

Используя эти программы, мы можем:

- добавлять новые записи и поля;

- поиск по критериям;

- удалять записи.


Database components

Database system consists of 3 parts:

1. Table: The best way to keep all recordings in a database is to use tables. A table has rows and columns. Types of data will be stored in columns (fields) whereas recordings about each item will be stored in rows (records).

2. Query: Used for making operations within a database. Query is a some kind of functions that can be applied to data in a database. There are examples of queries like: find, sort, filter, different types of calculations and so on.

3. Report: By using a DBMS it is possible to show all your requested information in a specific report document. So after you filter the required information and make calculations using queries you can show the results in one report.


Literacy

1. How did people store information before database?

2. How they made such operations like searching, storing and managing information?

3. Where database used in daily life?


Terminology

database – деректер қоры – база данных

field – алаң – поле

record – жазба – запись

column – баған – столбец

row – жол - строка

access – қол жеткізу – доступ

protection – қорғау – защита

table – кесте – таблица

query – сұраныс – запрос

report – баяндама – отчет


2.2 DESIGNINGADATABASE

You will:

Design a database;

Identify data types.


What is the best way to keep information about books at a library?

Designadatabase

Таблицы являются основным пунктом в базе данных, поэтому вы должны потратить некоторое время на планирование и организацию своих таблиц.

Прежде чем приступать к разработке таблицы, вы должны решить:

- Какие аспекты и события нужно занести и обработать? Ответ на этот вопрос определяет содержимое таблицы и имя таблицы.

- Какие поля вам нужны для организации подобных значений и данных? Ответ на этот вопрос определяет имя полей.

- Какой тип данных вы будете хранить в этих полях? Ответ на этот вопрос определяет типы полей.


Databasedatatypes

Текст - Представляет собой группу символов, таких как имена, фамилии и адреса.