日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

INFO20003代做、代寫SQL編程設計
INFO20003代做、代寫SQL編程設計

時間:2025-04-03  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



INFO20003 Semester 1, 2025
Assignment 1: ER Modelling
Due: Thursday 3 April, 2025 11:59pm
Your team will be helping to create the technical infrastructure for the missions, rockets, crews, faciliCes, etc. of 
SpaceXYZ. As part of this, you will be creaCng a MySQL database to store this informaCon. The 
following specificaCons have been provided to you to assist in your design.
FaciliDes
SpaceXYZ has various faciliCes serving different purposes, for example, headquarter, launch site, 
landing site, control centre, etc. For each facility, the system records its facility ID, address, and 
establishment date. 
Mission
SpaceXYZ runs mulCple missions, and the missions have different objecCves. Examples include
satelliteslaunching mission, Earth orbit mission (that allows people to experience the planet from over 
300 kilometres), transport mission (delivering cargo and astronauts to and from the InternaConal 
Space StaCon), Mars colonisaCon mission, etc. For each mission, the system stores the mission ID, 
mission type (that is, the objecCve), status (acCve, proposed, or complete), start date, and end data.
Launch event
This is the specific event of sending rocket(s) into space. A launch event may or may not be associated 
with a mission, but if it is, then a launch event is associated with at most one mission. There can be 
any number of launches associated with a mission. For each launch event, the system storesthe launch 
date, launch site, and landing site informaCon. 
A launch site or a landing site is one of the faciliCes of SpaceXYZ. A facility can be used for any number 
of launch events. A parCcular launch event is associated with exactly one launch site, but there may 
or may not be a landing site for a launch (that is, if the rocket is not meant to be returned). For some 
launch events, SpaceXYZ may bring a tower with two long arms (called ‘Mechazilla’, o@en referred as 
‘chopsCck arms’ due to the shape) to the landing site to catch a landing rocket. Therefore, the system 
also records whether the landing site of a parCcular launch event has used a Mechazilla or not. 
Rocket
A rocket is the launch vehicle that is associated with a launch event. For each rocket, the system 
stores rocket ID, rocket type (e.g., Falcon 9, Falcon Heavy, etc.), number of engines, manufacture date, 
and payload capacity. As rockets are someCmes reused by SpaceXYZ, for each rocket, the system also 
keeps track of the number of total launches done by that rocket. For a parCcular launch event, one or 
more than one rocket is used. 
Payload
For each launch event, each rocket may carry zero or any number of payloads. A payload type could 
be satellites, cargo, spacecra@, parts, etc. The system stores the informaCon of the payload type and 
weight. The same payload may get carried at different launch events (e.g., a parCcular cargo being 
carried by a rocket to the internaConal space staCon (ISS), and then later carried back from ISS to Earth 
by a different rocket in another launch event). The system may store informaCon of the payloads that 
have not been carried in any launch event yet. 
Astronaut
The system records informaCon about individual astronaut, including their ID, name, naConality, and 
experience level (a number between 1-10).
In SpaceXYZ, any number of astronauts can parCcipate in a launch event. (Note that, an astronaut does 
not need to be in a rocket to parCcipate in a launch event). An astronaut can parCcipate in any number 
of launch events. The astronauts that parCcipate in the same launch are called the ‘crews’ of that 
launch. 
Astronauts can train and be trained by other astronauts, and the system recording these training 
relationships. Each astronaut can have any number of trainers, and can train any number of other 
astronauts. For each training relation, the system stores the start and end date of the training (e.g. 
Simon D’Alfonso trained Farzaneh Zirak between 01/01/2023 and 31/12/2023, and again Simon 
D’Alfonso trained Farzaneh Zirak between 01/06/2024 and 31/12/2024). If the training is ongoing, the 
end date is unpopulated. 
Launch failure
If any failure happens for a launch event, the system also stores some informaCon for the failure 
analysis, they are: failure Cme, cause (as a text descripCon of maximum 500 characters), and impact
(on a scale of 1-10). A launch can have zero or any number of failures (that is, a launch may conCnue 
even a@er a failure event, and then another failure may happen). MulCple failures may also happen 
at the same Cme.
Rocket storage
When rockets are not in use, they may get stored securely in one of the faciliCes of SpaceXYZ. The 
system records the storage start date-Cme and end date-Cme. The same rocket can be stored mulCple 
Cmes in the same facility on different occasions. For example, rocket ‘123’ is stored in a parCcular 
facility on 1/6/2024 10am. Then later, the rocket is taken out on 1/6/2024 1pm, used for some 
purpose, and then the same rocket is stored in the same facility on 1/6/2024 9pm. If a rocket is 
currently being stored, the end date-Cme is empty. 
Rocket tesDng
A rocket may undergo any number of tests. For each test of a rocket, the system records the test date, 
test type, status, and outcome. Any number of astronauts can parCcipate in a test. The system also 
keeps track of the total number of Cmes a rocket is tested. 
Headquarter
Each mission has at most one headquarter, where the headquarter is one of the faciliCes of SpaceXYZ. 
A facility can be the headquarter of any number of missions. Note that, a mission may not have any 
headquarter, for example, for the missions that have been just proposed.
Person in charge
For each mission, there is at most one ‘person in charge’. Note that, a mission may not have any person 
in charge, for example, for the missions that have been just proposed. A person can be the ‘person in 
charge’ of at most one mission in SpaceXYZ. The system records the name, a unique email address, 
and phone number(s) of the person in charge. Note that, the person in charge of any mission is not an 
astronaut. The system may store the informaCon of some other persons who are not ‘person in charge’.
Business Requirements
Your database design needs to be able to meet the business's needs to answer questions such as:
1. Which type of missions had at least 5 launch events in 2024? 
2. Which rockets have been reused in more than one launch event? 
3. Which missions have at least one launch event, where the launch had both at least one 
astronaut parCcipated in it and at least one payload in it?
4. Which faciliCes have been used for both a landing site and for storing at least one rocket?
5. Which launch events have the same launching site and the same landing site?
6. Which missions have not had any failures occurring in any of their launches?
7. Which rockets have been tested in 2024 at least twice, but have had a launch failure occur in
2025?
8. Which launches have had an astronaut where the trainer of that astronaut is also a crew of 
the same launch? 
9. Which mission has ‘Simon D’Alfonzon’ as the person in charge, and has its headquarter in 
‘Melbourne, Australia’?
10. Which astronaut(s) have parCcipated in the tesCng of a parCcular rocket, and also in a launch 
event where that parCcular rocket is used?
11. For the launch event ID ‘12’, which parCcular rocket (that is, what is the ID of the rocket) is 
carrying a satellite of weight 10.5kg as its payload? 
Note that, you do not need to answer these business requirements, but your database's final design 
should be capable of addressing and answering these requirements through its structure and 
funcConaliCes.
InstrucDons
Assignment 1 is worth 10% of your final mark. The assignment will be graded out of 100 marks as 
described in the table below: 
ER Physical Model with assumptions 80%
Conceptual Model in Chen’s Notation 20%
.mwb Physical Model File submitted Assignment Hurdle
You are to analyse this business case and design a Conceptual ER Model in Chen’s notaDon (can be 
hand drawn) as taught in class and a Physical ER Model for a MySQL RelaConal Database in Crow’s 
foot notaDon (modelled with MySQL Workbench). 
You may list any assumpCons you have made about the model. This part is opConal. If you want to list 
any assumpCons, there is a 200-word limit for assumpCons in total. AssumpCons must not be used to 
simplify the assignment, but only to jusCfy your decision about any ambiguity in the study (for 
example, if the assignment descripCon does not clearly specify the parCcipaCon constraint on a 
relaConship, you can list what assumpCon you made for that). 
Assignment Submission
You are to submit the assignment under the Assignments tab on Canvas LMS. The submission will 
require you to submit two files:
1. A SINGLE PDF document containing:
i. a legible (hand drawn, or otherwise modelled) picture of a conceptual model in Chen’s 
notaCon
ii. a screenshot/export of your Physical ER Model done in MySQL workbench. Ensure that all 
a,ributes are readable, and tables are fully expanded.
iii. any assumpCons you made (limit this to a maximum of 200 words)
2. A copy of your final .mwb MySQL Workbench file of your Physical ER model. 
Note: This model will only be used by staff in circumstances where the screenshot/export of your 
model in the PDF is unreadable (i.e. if we have to open this file, a penalty of 10% will occur), so 
remember to include the export of your physical model in the PDF!
If you fail to submit clear and legible models your assignment will be penalised. 
Unless you have an approved extension (see below), you will be penalised -10% of the total number 
of marks in the assignment per day (including weekdays and weekends) that your submission is late. 
For instance, if you received a 78% raw score, but submi1ed 2 days late, you'd receive a 58% for the 
assignment.
RequesDng a Submission Deadline Extension
If you need an extension due to a valid (medical) reason, you need to follow the procedure described 
in FEIT Extensions and Special consideraCon page -
Use of AI tools
Reminder: INFO20003 Hurdle Requirements 
To pass INFO20003, you must pass two hurdles: 
• Hurdle 1: Obtain at least 50% (15/30) or higher for the three assignments (each worth 10%) 
• Hurdle 2: Obtain at least 50% (35/70) or higher for the combinaCon of quizzes and end of semester 
exam
It is our recommendaCon to students that you a1empt every assignment and every quesCon in the 
exam.
GOOD LUCK!


請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP34212、代做Java/C++編程
  • 下一篇:代寫ENGG1330、Python設計編程代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體 / 電磁 / 光學CAE代做
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
  • 豆包網頁版入口 Trae 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        国产在线观看黄色| 91精品久久久久久久久久入口| 国产最顶级的黄色片在线免费观看| av免费观看国产| 欧美日韩视频免费看| 日韩在线观看a| 久久精品蜜桃| 亚洲a级在线播放观看| 日本免费看黄| 欧美一级免费观看| 午夜一区二区三区免费| 日本精品在线中文字幕| 日韩国产欧美亚洲| 精品中文字幕视频| 日韩在线二区| 日韩中文字幕国产| 一区二区三区视频网站| av亚洲免费| 欧美日韩高清一区二区| 精品福利一区二区三区| 国产超级va在线视频| 亚洲一区三区在线观看| 久久精品99久久久久久久久| 欧美日韩亚洲不卡| 中文在线а√在线8| 亚洲制服一区| 麻豆一区二区99久久久久| 国产一卡二卡3卡4卡四卡在线| 日韩视频在线观看视频| 日本不卡高清视频一区| 精品在线网站观看| 久久久91精品| 中文字幕五月天| 欧美日韩精品综合| 国产免费电影网站入口| 快she精品国产999| 91精品国产91久久久久久三级| 日韩精品视频网站| 精品一区二区三区中文字幕在线| 日韩亚洲一区中文字幕| 中文字幕日韩精品在线| 国产激情在线播放| 欧美 日韩 国产 在线观看| 日韩在线视频免费观看高清中文| 91精品久久久久久久久久入口| 在线国产一级| 日韩欧美综合| 欧美一级日韩一级| 日韩av一区二区在线观看| 91精品婷婷国产综合久久| 日韩三级高清在线| 亚洲三级免费看| 中文字幕在线视频网| 色欧美日韩亚洲| 欧美国产一级片| 欧美1234区| 欧美99久久| 日韩在线视频免费观看| 国产一级免费看| 国产三级第一页| 亚洲欧美中文字幕在线一区| 亚洲二区自拍| 91精品国产91久久久久青草| 免费在线观看国产黄| 欧美日韩不卡在线视频| www 日韩| 欧美日韩激情一区二区三区| 欧美日韩国产亚洲一区| 欧美色视频一区二区三区在线观看| 欧美三级三级三级爽爽爽| 国产丝袜在线播放| 高清国产一区| 国产午夜精品视频| 欧美日韩国产一级片| 高清日韩中文字幕| 欧美日韩亚洲视频| 不卡一区二区三区视频| 成年人黄国产| 精品日韩欧美在线| 亚洲高清精品视频| 免费一级欧美在线观看视频| 欧美日韩精品是欧美日韩精品| 日韩亚洲不卡在线| 国产黄色网页| 欧美日韩久久久| 国产一区精品| 日韩不卡一二区| 国产高清在线视频| 欧美日韩在线观看成人| 在线观看国产一级片| 欧美一级在线免费| 亚洲欧美中文字幕| 精品国产综合久久| 欧美在线日韩在线| 韩国av一区二区| 97天天综合网| 美女免费视频一区| 91精品久久久久久久91蜜桃| 黄色视屏免费在线观看| 国自产拍在线网站网址视频| 日韩欧美视频一区二区三区四区| 精品日韩视频在线观看| 日韩精品视频网| 国产一区激情在线| 亚洲一区在线观看网站| 日韩欧美色综合| 亚洲国产一区自拍| 国产亚洲欧美中文| 久久婷婷亚洲| 97久久精品| 日韩在线a电影| 在线观看一区| 久久99精品久久久久久青青日本| 国产欧美日韩高清| 国产高清精品二区| 亚洲午夜91| 国产久卡久卡久卡久卡视频精品| 亚洲影视资源网| wwwwww在线观看| 91精品国产日韩91久久久久久| 欧美中日韩在线| 99久久久精品免费观看国产| 午夜影院在线观看欧美| 亚洲欧洲国产视频| 亚洲视频在线观看日本a| 97最新国自产拍视频在线完整在线看| 色综合影院在线| 一级日本免费的| 中文字幕日韩第一页| 亚洲日本精品视频| 亚洲伊人婷婷| 国产高潮久久久| 国产欧美日韩三级| 日韩欧美视频一区二区三区四区| 精品激情国产视频| 精品人妻一区二区三区视频| 日韩视频精品在线| 日韩精品视频在线播放| 精品视频资源站| 中文字幕2020第一页| 在线亚洲人成| 日韩精品视频免费| 日韩中文字幕在线视频播放| 91蜜桃婷婷狠狠久久综合9色| 精品国产99久久久久久| 91精品国产调教在线观看| 国产偷国产偷亚洲清高网站| 中文字幕亚洲第一| 午夜一区二区三区视频| 日韩在线视频免费观看| 日韩中文字幕观看| 亚洲男女av一区二区| 粉嫩喷白浆久久| 精品中文字幕在线播放| 中文字幕精品在线视频| 欧美中文字幕在线视频| 日韩中文字幕观看| 香蕉人人精品| 欧美大片在线观看一区| www.中文字幕在线观看| 亚洲综合在线不卡| 国产无遮挡在线视频免费观看| 亚洲免费专区| 精品国产欧美成人夜夜嗨|