You are on page 1of 5

81

System implementation

The overall goal of the work is to develop a flexible index framework that can be
tuned to achieve effective static index selection and online index selection , the goal is
to develop a system that can be recommended an evolving set of indexes for incoming
queries overtime such that the benefit of index set changes out weight the cost of
making those changes. These differentiate between low-cost index set changes and
higher cost index set changes.

The benefit of using a potential index over a set of queries, it is necessary to estimate
the cost of executing the queries with and without index. The cost model is embedded
in to the queries should be answered using a sequential scan or using an existing index.
Instead of using the query optimizer to estimate the query cost.

This implementation technique differs from existing tools in determine potential set
of indexes to evaluate and quantization basic technique that estimate every costs. All
the common goal indexes work in design time. The DBA decide when to run the
wizard and over with which workload.

Basic Design Approch

The goal of the design phase is to transform the requirements specified in the
SRS document into a structure that is suitable for the implementation in some
programming language. Design involves preparing a detailed analysis of different
functions to be supported by the system and identification of data flow among
different functions.

Stages of system design are:

1.Conceptual Design

2.DataBase Design

3.Functional Design

82
Conceptual Design:
The conceptual structure of a database is called as schema. A schema can be
regarded as a blueprint that portrays, both, kind of data used in building the database
and logical relationships.

Database Design:
A database is a stored collection of interrelated data, organized on the basis of
relationship in the data rather than the convenience of storage structures. It enables
sharing of data among various users as and when required. Database Management
System is software that provides more flexibility in the storage and retrieval of data
and productive information.

Primary key: Collection of one or more fields whose value uniquely identifies a
record in a table. This key is used to identify each occurrence of an entity. It never
has a null value.

Foreign key: One or more table fields that refer to the primary key field/fields of
another table. A foreign key is used to create links with another entity.

Functional Design:
Input describes the information to be supplied to this function either by the user
on the screen (or) from any data store. Processing describes the operations to be
carried out by the function. Output describes the information obtained from the
function (or) the action carried out by the function

83
INTRODUCTION

Software testing is a critical element of software quality assurance and represents the
ultimate review of specification, design and coding. In fact, testing is the one step in the
software engineering process that could be viewed as destructive rather than
constructive.
A strategy for software testing integrates software test case design methods into a well-
planned series of steps that result in the successful construction of software. Testing is
the set of activities that can be planned in advance and conducted systematically. The
underlying motivation of program testing is to affirm software quality with methods that
can economically and effectively apply to both strategic to both large and small-scale
systems
.

84
STRATEGIC APPROACH TO SOFTWARE TESTING

The software engineering process can be viewed as a spiral. Initially system engineering
defines the role of software and leads to software requirement analysis where the
information domain, functions, behavior, performance, constraints and validation criteria
for software are established. Moving inward along the spiral, we come to design and
finally to coding. To develop computer software we spiral in along streamlines that
decrease the level of abstraction on each turn.
A strategy for software testing may also be viewed in the context of the spiral. Unit
testing begins at the vertex of the spiral and concentrates on each unit of the software as
implemented in source code. Testing progress by moving outward along the spiral to
integration testing, where the focus is on the design and the construction of the software
architecture. Talking another turn on outward on the spiral we encounter validation
testing where requirements established as part of software requirements analysis are
validated against the software that has been constructed. Finally we arrive at system
testing, where the software and other system elements are tested as a whole.

UNIT TESTING

MODULE TESTING

Component Testing
SUB-SYSTEM
TESING

SYSTEM TESTING
Integration Testing

ACCEPTANCE TESTING

User Testing

85

You might also like