|
|
||
|
|
||
|
|
||
There has always existed a need to store information. To this end, people through the ages have written down information on papyrus, wood, stones, and paperanything they could use to ensure that the knowledge they had struggled to obtain would not be lost.
These knowledge gatherers were creating raw files of unstructured data, even if they did not understand the concept of a database. Searching for information stored in this way required reading a huge amount of information, and very few people were able to
Simply storing data is not enough. A structure is needed to help you search for necessary information. In addition, a technique is needed that can help you navigate through this established structure.
With this in mind, there are three main
The data
The structure of the data
The technology to store and retrieve the data
An example of a simple database would be a dictionary. It stores words and their meanings. However, it stores the words
A more sophisticated database would be a telephone book. It can be
So far, only databases built on paper whose information must be
From a purely relational point of view, data is organized around entities and the relationship between these entities. A database designer must identify the following:
The entities that describe the reality of the business
The attributes of these entities
The roles that each one of these attributes play in the business
The relationship between entities and the nature of these relationships
The behavior of these entities and attributes when the data changes
The importance of the analysis above cannot be over-
With this design, you could build some sequential or random files (such as the old xBase files), or you could use something a little more sophisticated, such as Microsoft Access. This book will not cover these technologies. You might decide to build your own relational database system from this logical design. In this case, you would need to build tables containing
However, designing a database in this way is not enough. You also need to take care of simple but important things, such as:
Authenticating the users who access the data
Authorizing or
Writing data to disk
Reading data from disk
Keeping indexes current so they can be used to search for the data needed
Checking data against business rules to ensure the quality of the data
Ensuring that relations between data are
Isolating actions from concurrent users so that they cannot interfere with each other
Ensuring the durability of the data against system failures
Providing system information so as to monitor the system and take corrective action when necessary
This list can be lengthened, but the key point is that you need an
This is why you can benefit from a server application that can both own and manage your data and perform all of these tasks to your advantage. This type of management is precisely the role of SQL Server 2005.
Having a system that can store and manage your data is important, but how should you read this data? How should you search for answers to your business questions? Relational database systems would be useless without a well defined query language that could help you write questions in a way that the system could understand, analyze, and execute. Most modern relational database systems use Structured Query Language (SQL) as the language of choice to interact with database systems. SQL Server 2005 uses a
T-SQL is not only a query language, but also a programming language designed to interact with relational database systems. It might not be as sophisticated as other programming languages for procedural tasks, but it is extremely rich for database operations. In fact, it is an extremely difficult language to analyze by a computer system. Consider this fact: most programming languages are very predictive. In Visual Basic, if you write the keyword FOR, the system
T-SQL possesses a complex and rich grammar that makes it extremely efficient for data access. However, this grammar would be useless without an intelligent query processor that was able to convert human-written T-SQL sentences into machine-executable instructions. In other languages, this is the role of the compiler. Yet a database needs an intermediary agent that makes sure that the code produced is optimum for the specific data it is to manage. This is the role of the Query Optimizer. There are always many ways to access the information you need, and the system should be able to identify the best manner to do it.
|
|
||
|
|
||
|
|
||