relationship so as to realize the rapid querying,
adding, deleting and modifying of data, and better
guarantee the security of data. In the relational data
model, the theoretical support of the relational
database management system was born, it is the
existing database in the longest living, the most
vitality, the most widely used database model. A
relational database solves the many-to-many
relationship representation, facilitates the direct
reading of data in any position in the table, and
introduces the concept of foreign keys to facilitate
the connection of multiple tables. At the same time,
relational databases support ACID characteristics,
providing customers with the convenience of
protecting the consistency of the data and solving the
problems caused by concurrency. Relational
database greatly improves the convenience,
efficiency and security of database management
system and gives the database more powerful
flexibility and adaptability. By 1990, relational
database management systems had become a
standard.
In the mid-1970s, the related research of
distributed database management system began to
appear, and the world's first distributed database
system, SDD-1, was realized by CCA in 1979 on
DEC computers.Since the 1990s, distributed
database systems have entered the
commercialization and application stage, and the
traditional relational database products have been
developed into distributed database products
centered on computer networks and multi-tasking
operating systems. The traditional relational database
products are developed into computer network and
multi-tasking operating system as the core of the
distributed database products, while the distributed
database gradually develops to the client/server
model. Distributed database management system has
a more flexible architecture, fast response time for
local applications, good scalability and
easy-to-integrate existing systems, widely used.
3 SIMPLIFIED MANAGEMENT
OF DATABASES
Currently, data management is widely used in the
fields of data analysis, data modeling, data
warehousing, data security, data mining, and
strategic data architecture.
For all the fields involved in data management, in
an era of information technology, the need to store
more and more redundant information, more and
more data need to be stored, how to store all of these
data integrity is the current problem faced by the
data management. For the field of data analysis, the
timely realization of real-time processing of data is
also a problem to be solved in the field of data
management, with the development of the network,
the data real-time update speed for part of the data,
once the data is not processed in a timely manner,
the data is likely to lose its value and utility. In the
field of data security, further improving the security
of the database to protect the accuracy of the data is
also a problem in the field of data management.
At present, using the view technology and
indexing technology can improve the efficiency of
data management and simplify the management.
In order to improve data security further and
simplify the user's operation of the data, the view
technology was added to MySQL 5.0.1. A view is a
virtual view that defines a special kind of relational
table, which is not stored in the database but can still
be queried. The view's rows and columns are
dynamically generated when the view is referenced,
and the rows and columns are free to define the table
referenced by the view's query. The view only
provides query operations, and can not modify the
data itself, and the user is not allowed to access the
underlying relational tables and do not need to know
the underlying relational table relationship structure
can be queried. This not only protects data security
and further improves the security of data storage but
also simplifies the use of user queries. Views also
support nested use to simplify the query further. In
short, the view not only improves data security and
data query flexibility but also facilitates user
operations, user-friendly combination of different
ways to operate the data, and gives the data a certain
degree of independence.
In addition, in the case of rapid query of specific
data, under the commonly used indexing techniques.
Indexing technology was born in the relational
database. The index is a separate, physical number of
database tables in one or more columns of the value
of the sort of storage structure. It is a table in one or
more columns of the value of the collection and the
corresponding to point to the table in the physical
identification of these values in the list of logical
pointers to the data page. index according to the
storage method of classification, can be divided into
two types: focused index and non-focused index.
From a logical point of view indexes are divided into
five categories: general indexes, unique indexes,
primary key indexes, spatial indexes and full-text
indexes. In practice, indexes are divided into
single-column indexes and multi-column indexes.