For Printing
For Printing
Development
Process
De Guzman, Justine
De Guzman, Justine
TOPIC
DESCRIPTION
CURRENT PROCESS
First Step: Selecting a Topic. You should first select a topic so that you can focus
on a specific area to study or investigate.
Third Step: Conduct the research. Conducting your research will create results
from all the sources that you have gathered and to prove your topic.
Final Step: Present the results of the research. Present your results to the
panelists and defend and prove you claims about your research. You must cite your
sources to support your results and also avoid plagiarism in presenting it
TO DOs
DELIVERABLES
ANALYSIS
PROBLEM
The IICS department have not yet organized the capstone projects that were
made by the student in a search tool. With this, it makes it harder for the users and it is
more time consuming to locate the resources or the projects that they need.
OBJECTIVES
● The database must accurately show the information of the Capstone Project.
● The database must allow searches to provide a specific Capstone Project
information.
● The database must maintain a complete Capstone Project information.
● The database must allow users to search for the award/s of a Capstone project in
a specific year.
BUSINESS RULES
If the customer has a permit to the university to grant access to the database with
a valid identification and completed an application form then he/she may use the
database
If the customer does not meet the following requirements, he/she will not be
granted to access the database. The customer should go back and fulfill the said
requirements in order to gain access.
DESIGN
CONCEPTUAL MODELS
ERD DIAGRAM
FRONT-END DESIGN
RECORDS
IMPLEMENTATION
SQL SCRIPT
Justine De Guzman
1. SELECT *
FROM TITLE;
2. SELECT AUTHOR_FNAME
FROM AUTHOR;
4. SELECT *
FROM CAPSTONE
WHERE DATE_PUBLISHED =’December 2015’;
5. SELECT *
FROM ADVISER
WHERE ADVISER_FNAME= ‘Mildred’;
6. SELECT AUTHOR_LNAME
FROM AUTHOR;
7. SELECT *
FROM CAPSTONE COORDINATOR;
8. SELECT *
FROM TRACK;
9. SELECT DEPT_NAME
FROM DEPARTMENT;
1. SELECT *
FROM ADVISER
NATURAL JOIN PANEL;
3. SELECT *
FROM TITLE
WHERE DATE PUBLISHED < 2015-01-01;
4. SELECT *
FROM AUTHOR
WHERE AUTHOR_FNAME BETWEEN ‘A’ AND ‘L’;
6. SELECT COUNT(*)
FROM CAPSTONE;
7. SELECT *
FROM CAPSTONE
ORDER BY CAPSTONE_ID;
8. SELECT COUNT(*)
FROM AUTHOR
WHERE ADVISER_ID IS NOT NULL;
9. SELECT *
FROM TITLE
WHERE DATE_PUBLISHED > 2015-01-01;
MAINTENANCE