Студопедия
Случайная страница | ТОМ-1 | ТОМ-2 | ТОМ-3
АрхитектураБиологияГеографияДругоеИностранные языки
ИнформатикаИсторияКультураЛитератураМатематика
МедицинаМеханикаОбразованиеОхрана трудаПедагогика
ПолитикаПравоПрограммированиеПсихологияРелигия
СоциологияСпортСтроительствоФизикаФилософия
ФинансыХимияЭкологияЭкономикаЭлектроника

Basic features of database programs

Completely electronic device | Word-processing facilities | Basic Terminology | Basic Cryptographic Algorithms | Apple macintosh computers | Artificial intelligence | What is physics? | What are fuel cells? | How do solar cells work? | Mathematics as science |


Читайте также:
  1. A hurtful argument usually has a basic anatomy. Maybe you can relate to the following example.
  2. Basic Cryptographic Algorithms
  3. Basic legal terms and concepts
  4. Basic Terminology
  5. Basics of the UK legal system
  6. SH Database)

What is a computer?

Computers are electronic machines which can accept data in a certain form, process the data and give the results of the processing in a specified format as information.

Three basic steps are involved in the process. First, data is fed into the computer's memory. Then,when the program is run, the computer performs a set of instructions and processes the data. Finally,we can see the results (the output) on the screen or in printed form.

Information in the form of data and programs is known as software, and the electronic and mechanical parts that make up a computer is system are called hardware. A standard computer system consists of three main sections: the central processing unit (CPU), the main memory and the peripherals.

Perhaps the most influential component is the central processing unit. Its function is to execute program instructions and coordinate the activities of all the other units. In a way, it is the ‘brain’ of the computer. The main memory holds the instructions and data which are currently being processed by the CPU. The peripherals are the physical units attached to the computer. They include storage devices and input/output devices.

Storage devices(floppy, hard or optical disks) provide a permanent storage of both data and programs. Disk drivesare used to handle one or more floppy disks. Input devicesenable data to go into the computer’s memory. The most common input devices are the mouseand the keyboard. Output devicesenable us to extract the finished product from the system. For example, the computer shows the output on the monitoror prints the results onto paper by means of a printer.

On the rear panel of the computer there are several ports into which we can plug a wide range of peripherals — modems, fax machines, optical drives and scanners. These are the main physical units of a computer system, generally known as the configuration.

The nerve centre of a microcomputer is the central processing unit or CPU. This unit is built into a single microprocessor chip - an integrated circuit - which executes program instructions and supervises the computer’s overall operation. The unit consists of three main parts:

· the control unit, which examines the instructions in the user’s program, interprets each instruction and causes the circuits and the rest of the components - disk drives, monitor, etc. - to be activated to execute the functions specified;

· the arithmetic logic unit (ALU),which performs mathematical calculations (+, -, etc.) and logical operations (and, or, etc.);

· the registers, which are high-speed units of memory used to store and control information. One ofthese registers is the program counter (PC) which keeps track of the next instruction to be performed in the main memory. Another is the instruction register (IR) which holds the instruction that is currently being executed.

One area where microprocessors differ is in the amount of data - the number of bits - they can work with at a time. There are 8, 16, 32 and 64-bit processors. The computer’s internal architecture is evolving so quickly that the new 64-bit processors are able to address 4 billion times more information than a 32-bit system.

The programs and data which pass through the central processor must be loaded into the main memory (also called the internal memory) in order to be processed. Thus, when the user runs an application, the microprocessor looks for it on secondary storage devices (disks) and transfers a copy of the application into the RAM area. RAM (random access memory) is temporary, i.e. its information is lost when the computer is turned off. However, the ROM section (read only memory) is permanent and contains instructions needed by the processor.

Most of today’s computers have internal expansion slots that allow users to install adapters or expansion boards. Popular adapters include high-resolution graphics boards, memory expansion boards, and internal modems.

The power and performance of a computer is partly determined by the speed of its microprocessor. A clock provides pulses at fixed intervals to measure and synchronize circuits and units. The clock speed is measured in MHz (megahertz) and refers to the frequency at which pulses are emitted. For example, a CPU running at 500 MHz (500 million cycles per second) is likely to provide a very fast processing rate and will enable the computer to handle the most demanding applications.

 

Basic features of database programs

With a database you can store, organize and retrieve a large collection of related information on computer. If you like, it is the electronic equivalent of an indexed filing cabinet. Let us look at some features and applications.

Information is entered on a database via fields. Each field holds a separate piece of information, and the fields are collected together into records. For example, a record about an employee might consist of several fields which give their name, address, telephone number, age, salary and length of employment with the company. Records are grouped together into files which hold large amounts of information. Files can easily be updated: you can always change fields, add new records or delete old ones. With the right database software, you are able to keep track of stock, sales, market trends, orders, invoices and many more details that can make your company successful.

Another feature of database programs is that you can automatically look up and find records containing particular information. You can also search on more than one field at a time. For example, if a managing director wanted to know all the customers that spend more than £7,000 per month, the program would search on the name field and the money field simultaneously.

A computer database is much faster to consult and update than a card index system. It occupies a lot less space, and records can be automatically sorted into numerical or alphabetical order using any field.

The best packages also include networking facilities, which add a new dimension of productivity to businesses. For example, managers of different departments can have direct access to a common database, which represents an enormous advantage. Thanks to security devices, you can share part of your files on a network and control who sees the information. Most aspects of the program can be protected by user-defined passwords. For example, if you wanted to share an employee’s personal details, but not their commission, you could protect the commission field.

In short, a database manager helps you control the data you have at home, in the library or in your business.

Database terminology is almost as slippery as the term «object-oriented programming». The word «database» can be used to describe everything from a single set of data, such as a telephone list, to a complex set of tools, such as SQL Server, and a whole lot in between.

Although relational databases do not have real-world analogies, most are intended to model some aspect of real world. It may be called the problem space. The problem space, by its nature, is messy and complex - if it were not, we would not need to build a model of it. But it is critical to the success of your project to limit the database system you are designing to a specific, well-defined set of objects and interactions; only by doing so can you make sensible decisions about the scope of your system.

The term data model is used to mean the conceptual description of the problem space. This includes the definition of entities, their attributes (a Customer, for example, is an entity, and it might have attributes Name and Address), and the entity constraints (such as, the Customer Name cannot be empty). The data model also includes a description of the relationships between entities and any constraints on those relationships - for example, managers are not allowed to have more than five individuals reporting to them. It does not include any reference to the physical layout of the system.

The definition of the physical layout - the tables and views that will be implemented - is the database schema or just schema. It is the translation of the conceptual model into a physical representation that can be implemented using a database management system. Note that the schema is still conceptual, not physical. The schema is nothing more than the data model expressed in the terms that you will use to describe it to the database engine - tables and triggers and such creatures. One of the benefits of using a database engine is that you do not ever have to deal with the physical implementation.

Once you have explained to the database engine what you want the data to look like, using either code or an interactive environment such as Microsoft Access, the engine will create some physical objects (usually, but not always, on a hard disk someplace) and you will store data in them. The combination of structure and data is referred to as a database. This database includes the physical tables; the defined views, queries, and stored procedures; and the rules the engine will enforce to protect the data.

The term «database» does not include the application, which consists of the forms and reports with which your users will interact, nor does it include any of the bits and pieces - things such as middleware or Microsoft Transaction Server - used to stick the form and back ends together. The term «database» also excludes the database engine. Thus, an Access.mdb file is a database, while Microsoft Jet is a database engine. Actually, an.mdb file can contain other things besides the database - forms and reports, for example.

To describe all these components - the application, the database, the database engine, and the middleware - the term database system is used. All of the software and data that goes into making a production system is part of the database system.

 

 


Дата добавления: 2015-07-16; просмотров: 119 | Нарушение авторских прав


<== предыдущая страница | следующая страница ==>
Типовая статическая страница| Programming

mybiblioteka.su - 2015-2024 год. (0.008 сек.)