代写COMP3013、代做Java编程设计
COMP3013 Database Management System
Course Project Requirements
2024 Fall
Introduction
This is a group project for four to ffve students.
This project is to build up an dynamic website for a real-world application. It
can be an information system for beauty parlor, kid’s training institutes, fftness
centers, restaurants, etc. The topic is unlimited. You are free to choose anything
you are interested.
Requirements
Front End Requirements
1. Your website needs at least ten pages.
2. The static pages can be implemented by HTML + CSS, while the dynamic
contents can be handled by PHP and Javascript.
3. Your website may include navigation bars, logo, footers, data validation,
etc.
4. There is no requirement on the opensource platforms. Using them can
give you a fancy look to your website, but no extra marks.
5. Your website needs to be deployed on an Apache server. Use XAMPP.
6. Your website should allow user registration and login. At least two user
types should be offered. For example, suppose you are building a bookstore
website, your user types could be:
ˆ owner
ˆ registered user
ˆ anonymous visitor
17. Your website needs to include at least four features. The more features
you have, the higher score you will earn. Feature is a workffow that can
allow the user to perform a complete task. Take the example of bookstore,
the features could be:
ˆ The owner add new books to the store.
ˆ The owner view purchasing data analysis, etc.
ˆ The user orders books and leaves the books in the shopping cart.
ˆ The user check out and pay.
ˆ The owner, the user and the visitor search for books.
Back End Requirements
1. Your ER diagram should have at least 8 entities and 6 relationships.
2. On average, each table must have no less than 10,000 records. There are
at least two tables consisting of more than 50,000 records. (Note: Not all
the records have to be real but they should be realistic. You may generate
records using a program.)
3. Your system takes less than 1 second to insert a record to any table.
4. Your system takes less than 2 seconds to delete or search a record.
5. Display the running time of your query on the webpage. You can use
microtime() function in PHP.
6. The logical design of the database must follow the normal forms (BCNF
or 3NF).
7. Use foreign keys. For example, the table student has students’ information
and the table registration has courses registered by each student. If one
tuple is removed from student, the corresponding tuple(s) will also be
removed from registration.
Presentation Requirements
1. 10-12 minutes for each group.
2. Make some good slides.
Documentation Requirements
1. Brieffy introduce the purpose of this project. You should deffne which
real-life problem you are solving, address the difffculty of the problem,
give the abstraction of the problem, and major goal of the project.
2. List all front end functions that you have implemented.
23. To design the database, you may need to make some assumptions for
modeling because real-life problems sometimes do not provide enough information.
But, all your assumptions have to be realistic.
4. Your report must include your ffnal ER diagram and a brief description
of each entity and relationship set.
5. You need to give all functional dependencies and schemas.
6. If your schemas are in the normal forms, explain why. If not, you need to
decompose them and show the steps in detail.
7. You need to describe the primary keys.
8. Workload of each team member.
Bonus (1% for each)
1. Use BLOB to store pictures.
2. Use triggers to implement constraints other than not null, primary key,
unique, or referential. For example, the table student has an attribute
credit showing the total credits earned by each student. Then, if a student
ffnishes a course of 3 credits, his/her credit will be increased by 3
automatically.
3. Secure the connection. The administrator account of the database system
has the highest authority of everythin in databases. If you use the administrator
account to make the connection, it is not safe at all. For the
security issue, your database connection can only access partial information
subject to users authority.
Tips
For presentation and report:
ˆ The presentation should follow the top-down procedure. Please start your
presentation from the problem deffnition and assume that audiences know
nothing about your project.
ˆ Describe your database design on a high level, ER diagram for example.
ˆ Highlight the critical points, constraints and triggers for example.
ˆ Prepare some good slides.
ˆ Do NOT make your presentation as function demonstration.
ˆ Time is limited. You cannot show all details in a short presentation.
Attract people’s attention by some shining gold.
3ˆ A simple instruction for presentation can be found at “Project Presentation
Guideline.docx”.
For web design and implementation, you are referred to w3school. A set
of startup codes is given in “DBPJ example.zip”. You can try to get it run ffrst.
For XAMPP, Apache, phpMyAdmin, you are referred to Apache Friends.
A simple tutorial is also given in “SQLLab.pdf”.
For generating data, see “DataGenerator.zip”.
Timeline
To make sure that nobody starts working on the project in the last minute, we
setup the following schedule.
1. Oct. 20 - grouping. Students need to select teams on iSpace in 2 or
3 people. Then, we will randomly pair two teams as one group of 4-5
students. The number of teams of 2 or 3 people is limited on iSpace. First
come ffrst serve! The grouping link will be available at 8pm Oct. 17 on
iSpace.
2. Nov. 10 - a problem description (5%, another 5% will be with the ffnal
submission), about 1-2 pages long (11pt font size, single spacing, and
default margin). You should deffne the problem that you are solving, why
you are interested in this problem, the information that you want to model
in your system, and the features that your system will include.
3. Nov. 24 - the ffrst draft of the ER diagram (5%, another 5% will be with
the ffnal submission).
4. Dec. 1 - static webpage implementations (10%, another 10% will be with
the ffnal submission). You only need to submit HTML and CSS ffles,
which is the structure of the information system. All dynamic contents
are replaced by static pages.
5. Dec. 11∼17 - project presentation (20%). And in the night before it, you
need to submit your presentation slides The presentation will be scheduled
for sections differently.
6. Dec. 22 - the ffnal submission, which includes
ˆ the report,
ˆ the ffnallized ER diagram,
ˆ webpages, and
ˆ your database (exported from the database server in the format .sql),
only one ffle for all tables. Please double check your ffle because we
cannot give you marks if your database cannot be imported into the
system.
47. Each partial submission worth 50% of the corresponding ffeld except the
presentation. If you miss the DDL, you will lose marks.
8. Don’t worry if your partial submission is not perfect. You can still improve
it before the ffnal submission and ffght for the other 50%.
Grading
ˆ Report 30%
– Problem Description - Partial Submission 5%
– Problem Description - Final Submission 5%
– ER Model - Partial Submission 5%
– ER Model - Final Submisssion 5%
– Logical Design - Final Submission 5%
– Report Writing - Final Submission 5%
ˆ Presentation 20%
– Organization 10%
– Oral Language 10%
ˆ Website Implementation 20%
– Partial Submission 10%
– Final Submission 10%
ˆ Database Implementation - Final Submission 30%
ˆ Bonus 1% for each
One group only submits one copy to iSpace by the teamleader. For partial
submission, rename your ffles as “COMP3013 24F Group### fflename”,
where “fflename” is one of the report, ER diagram draft, or PPT, and ###
is your gourp number. And also rename your ffnal submission package as
“COMP3013 24F Group###”.
5

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图