database application lifecycle lecture 10. 2 2 lectures objectives put all the previous lectures...

38
Database Application Lifecycle Lecture 10

Upload: madeline-kelly

Post on 28-Mar-2015

225 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

Database Application Lifecycle

Lecture 10

Page 2: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

22

Lecture’s Objectives

• Put all the previous lectures into context • Learn the main stages of database

application development.• Use these stages as guidelines for your MSc

project (if you choose to undertake a project which involves developing a Database System).

Page 3: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

3

Software Depression• Last few decades have seen a proliferation of

software applications, many requiring constant maintenance involving:– correcting faults,– implementing new user requirements,– modifying software to run on new or upgraded platforms.

• As a result, many major software projects were– late,– over budget,– unreliable,– difficult to maintain,– performed poorly.

• This led to a ‘software crisis’, now referred to as the ‘software depression’.

Page 4: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

4

Software Depression

• Major reasons for failure of software projects include:

- lack of a complete requirements specification;- lack of appropriate development methodology;- poor decomposition of design into manageable components.

• Structured approach to development was proposed called information systems lifecycle.

Page 5: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

5

Information System

Resources that enable collection, management, control, and dissemination of information throughout an organisation.

• Database is fundamental component of I.S., and its development/usage should be viewed from perspective of the wider requirements of the organisation.

Page 6: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

6

Database Application Lifecycle

• Database planning• System definition• Requirements collection and analysis• Database design• DBMS selection• Application design• Prototyping • Implementation• Data conversion and loading• Testing• Operational maintenance.

Page 7: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

7

Database Application Lifecycle

Page 8: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

8

Database Application Lifecycle:

A Case Study

Page 9: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

9

Overview of the Case Study

• DreamHome is a company that specialises in property renting, by taking an intermediate role between property owners and clients who require to rent a property.

• DreamHome operates several branches throughout the UK. Each branch has a number of staff including a Manager, Supervisors, and Assistants. Each branch offers a range of properties for rent.

• The Director of the company feels that a database could help in avoiding the many mistakes occurring in the current paper-based operations of the company.

Page 10: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

10

1. Database Planning: (A. Mission Statement)

• Mission statement for the database project defines major aims of database application.

• Those driving database project normally define the mission statement.

• Mission statement helps clarify purpose of the database project and provides clearer path towards the efficient and effective creation of required database application.

Page 11: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

11

DreamHome – Database Planning – Mission statement

• Typical questions we might ask the Director:– “What is the purpose of your company?”– “Why do you feel that you need a database?”

• Example of a mission statement: “The purpose of the database system is to maintain the data that is used and generated to support the property rentals business for our clients and property owners and to facilitate the cooperation and sharing of information between branches”.

Page 12: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

12

1. Database Planning(B. Mission Objectives)

• Once mission statement is defined, mission objectives are defined.

• Each objective should identify a particular task that the database must support.

• May be accompanied by some additional information that specifies the work to be done, the resources with which to do it, and the money to pay for it all.

Page 13: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

13

DreamHome – Database Planning – Objectives

• Typical questions to various members of staff include:– “What is your job description?”– “What kinds of tasks do you perform in a typical day?”– “What kinds of data/reports do you use?”

• Examples of objectives: – To maintain (enter, update, and delete) data on

branches– To perform searches on branches– To report on branches– …

Page 14: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

14

1. Database Planning

• Database planning should also include development of standards that govern:– how data will be collected, – how the format should be specified, – what necessary documentation will

be needed

Page 15: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

15

2. System Definition

Describes scope and boundaries of database application and the major user views.

Page 16: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

16

DreamHome – System Definition –System’s boundary

PropertyAdvertising

PropertyRentals

CustomerServices

StaffHuman

Resources

PayrollMarketing

PropertySales

System’s Boundary

Page 17: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

17

2. System Definition

User view defines what is required of a database application from perspective of:– a particular job role (such as Manager or

Supervisor) or – enterprise application area (such as

marketing, personnel, or stock control).

Page 18: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

18

Representation of a Database Application with Multiple User

Views

Page 19: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

19

DreamHome – System Definition – Major user views

Data Access Type

Director Manager Supervisor

Assistant

All Branches

Maintain

Query X X

Report X X

Single Branch

Maintain X

Query X

Report X

All Staff Maintain

Query X X

Report X X

Branch Staff

Maintain X

Query X X

Report X X

… etc

Page 20: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

20

3. Requirements Collection and Analysis

Process of collecting and analyzing information about the part of organization to be supported by the database application, and using this information to identify users’ requirements of new system.

Page 21: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

21

3. Requirements Collection and Analysis

• Data model representing single user view is called a local data model, composed of diagrams and documentation describing requirements of a particular user view of database.

• Local data models are then merged to produce a global data model, which represents all user views for the database.

Page 22: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

22

Fact-Finding Techniques

• Database developer normally uses several fact-finding techniques during a single database project including: – examining documentation,– interviewing,– observing organisation in operation,– research,– questionnaires.

Page 23: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

23

DreamHome – Requirements Collection & Analysis

• Data Requirements:– Branches: The data held on each branch

office includes a unique branch number, address (street, city, and postcode)…

– Staff: The data stored on each member of staff includes staff number, name…

– …

Page 24: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

24

DreamHome – Requirements Collection & Analysis

• Transaction Requirements:– Data entry:

• Enter the details of a new branch…

– Data update/deletion:• Update/delete the details of a member of staff

at a branch…

– Data queries:• List the names of staff supervised by a named

supervisor…

Page 25: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

25

DreamHome – Requirements Collection & Analysis

• System’s specification:– Initial database size– Database rate of growth– The types and average number of record

searches– Networking and shared access requirements– Performance– Security– Backup and recovery– Legal issues

Page 26: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

26

DreamHome – Requirements Collection & Analysis

• Initial database size: There are approximately 2000 members of staff

at 100 branches. There is an average of 20 and a maximum of 40 members at each branch…

• Database rate of growth: Approximately 500 new properties and 200 new

owners are added to the database each month…• Types and average number of record search:

Searching for the details of a branch – approximately 10 per day…

• Networking and shared access requirements: All branches should be networked to a centralised

database at the main office. The system should allow for at least three people concurrently accessing the system for each branch…

Page 27: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

27

DreamHome – Requirements Collection & Analysis

• Performance: During non-peak periods expect less than 1

second response time for all single record searches…

• Security: The database should be password protected…

• Backup and Recovery: The database should be backed up daily at 12

midnight.

• Legal issues: Implement UK’s law on the computerised storage

of personal data (staff, clients and owners).

Page 28: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

28

4. Database Design

• Major aims:– Represent data and relationships

between data required by all major application areas and user groups.

– Provide data model that supports any transactions required on the data.

– Specify a minimal design that is appropriately structured to achieve stated performance requirements for the system (such as response times).

Page 29: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

29

4. Database Design

• Three phases of database design:

– Conceptual database design– Logical database design– Physical database design.

Page 30: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

30

5. DBMS Selection

Selection of an appropriate DBMS to support the database application.

• Undertaken at any time prior to logical design provided sufficient information is available regarding system requirements.

• Main steps to selecting a DBMS:– define Terms of Reference of study;– shortlist two or three products;– evaluate products;– recommend selection and produce report.

Page 31: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

31

6. Application Design

Design of user interface and application programs that use and process the database.

• Database and application design are parallel activities.

• Includes two important activities:– transaction design (e.g., Queries);– user interface design (e.g., Forms).

Page 32: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

32

6. Application Design(A. Transactions)

• Important characteristics of transactions:– data to be used by the transaction;– output of the transaction;– importance to the users;– expected rate of usage.

• Three main types of transactions: retrieval, update, and mixed.

Page 33: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

33

6. Application Design(B. User Interface)

• Guidelines for User Interface design:

– Meaningful title– Comprehensible instructions– Logical grouping and sequencing fields– Visually appealing layout of the form/report– Familiar field labels– Consistent use of colour– Visible space and boundaries for data-entry

fields– Convenient cursor movement– Error messages for unacceptable values– Optional fields marked clearly– Explanatory messages for fields– Completion signal

Page 34: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

34

7. Prototyping

Building working model of a database application.

• Purpose– to identify features of a system that work

well, or are inadequate;– to suggest improvements or even new

features;– to clarify the users’ requirements;– to evaluate feasibility of a particular system

design.

Page 35: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

35

8. Data Conversion and Loading

Transferring any existing data into new database and converting any existing applications to run on new database.

• Only required when new database system is replacing an old system. – DBMS normally has utility that loads

existing files into new database. • May be possible to convert and use

application programs from old system for use by new system.

Page 36: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

36

9. Testing

Process of executing application programs with intent of finding errors.

• Use carefully planned test strategies and realistic data.

• Testing cannot show absence of faults; it can only demonstrate that database and application programs appear to be working according to requirements.

Page 37: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

37

10. Operational Maintenance

Process of monitoring and maintaining system following installation.

• Monitoring performance of system. – if performance falls, may require tuning or

reorganization of the database.• Maintaining and upgrading database

application (when required). • Incorporating new requirements into

database application.

Page 38: Database Application Lifecycle Lecture 10. 2 2 Lectures Objectives Put all the previous lectures into context Learn the main stages of database application

38

Data Administration and Database Administration

• Data Administration: Management of data resource including:– database planning, – development and maintenance of standards,

policies...

• Database Administration: Management of physical realisation of a database application including:– physical database design and implementation, – setting security controls,– monitoring system performance...