ER Diagram

Description

         For each procedure, turn in the following:

o   Turn spool on, then run the procedure with several values.  Turn spool off.

o   Turn in a copy of the code

o   Turn in a copy/results of the spool file (showing the output).

  • Prerequisites:

o   Run the following script: hw5ScriptEnrollment.sql

  • ER Diagram

o   The script will create the following tables and relationships

Complete the following

Tutorial 7

  1. Create a procedure, ENROLL_STUDENT(pStudent, pClass), to enroll a student to the course.  Assume user enters valid data.
  1. Some courses require a student to be a Sophomore, Junior, or Senior in order to enroll.  Enhance the above procedure to ensure that students have appropriate academic standing (student standing is equal to or greater than course standing), call it ENROLL_STUDENT2.
  1. In each semester, a student can enroll in a maximum of 15 class hours.  Create a procedure, ENROLL_STUDENT3(pStudent, pClass), that will enroll a student as long as the enrollment does not violate the maximum of 15 class hours condition.

Note:  Create this procedure independent of the class standing requirement.

  1. A student’s standing is determined by the total credit hours earned for all classes, as follows:

0 – 30: Freshmen

31 – 60: Sophomore

61 – 90: Junior

91 and above: Senior

Create a procedure, UPDATE_STANDING(pStudent), that will update a student’s standing.

  1. A student must earn an A, B, or C in a class in order get credit for the course hours.  Grades of D, F, or W do not count.  Enhance the above procedure to only count courses where the student earned an A, B, or C, call it UPDATE_STANDING2
  1. Each course has a capacity limit.  Create a procedure, ENROLL_STUDENT4(pStudent, pClass), that will only add the student if the course is kept within the capacity limitation.

Note:  This requirement is independent of previous ENROLL_STUDENT procedures you created.

  1. Create a procedure, UPDATE_GPA(pStudent), that will update a student’s GPA.  The GPA is calculated as follows:
    A – 4 points

B – 3 points

C – 2 points

D – 1 point

Others – 0 points.

Use the above points and a weighted average based on the course credit hours.  For example, a student earned the following grades:

A – 3 credit hour class

B – 3 credit hour class

C – 1 credit hour class.

The GPA is (4 * 3 + 3 * 3 + 2 * 1) / (3 + 3 + 1) = 3.29

  1. Create a procedure, VALIDATE_CLASSID(pClass), that will check if the class exists in the CLASS_SCHED table.  If the student is found, display “Student Found!  Valid ID.”, else display “Student NOT Found!  Invalid ID.”
  1. Create a procedure, VALIDATE_STUDENT(pStudent), that will check if a student exists in the STUDENT table.  If the class is found, display “Class ID Found!  Valid ID.”, else display “Class ID NOT Found!  Invalid ID.”
  1. Create a procedure, DROP_STUDENT4(pStudent, pClass), that will drop the student from a course.  If the student is enrolled in the class, update the grade to a “W”, otherwise, display an error message.
  1. Create a procedure, CONFLICT(pStart1, pEnd1, pStart2, pEnd2), that checks for class schedule conflicts.  All input parameters are numeric.  pStart1 and pEnd1 are the start and end times for class 1.  pStart2 and pEnd2 are the start and end times for class 2.  If there is a conflicts, display that a conflict exists, otherwise, display that no conflict exists.

 

Calculate the price of your order

Simple Order Process

Fill in the Order Form

Share all the assignment information. Including the instructions, provided reading materials, grading rubric, number of pages, the required formatting, deadline, and your academic level. Provide any information and announcements shared by the professor. Choose your preferred writer if you have one.

Get Your Order Assigned

Once we receive your order form, we will select the best writer from our pool of experts to fit your assignment.

Share More Data if Needed

You will receive a confirmation email when a writer has been assigned your task. The writer may contact you if they need any additional information or clarifications regarding your task

Let Our Essay Writer Do Their Job

Once you entrust us with your academic task, our skilled writers embark on creating your paper entirely from the ground up. Through rigorous research and unwavering commitment to your guidelines, our experts meticulously craft every aspect of your paper. Our process ensures that your essay is not only original but also aligned with your specific requirements, making certain that the final piece surpasses your expectations.

Quality Checks and Proofreading

Upon the completion of your paper, it undergoes a meticulous review by our dedicated Quality and Proofreading department. This crucial step ensures not only the originality of the content but also its alignment with the highest academic standards. Our seasoned experts conduct thorough checks, meticulously examining every facet of your paper, including grammar, structure, coherence, and proper citation. This comprehensive review process guarantees that the final product you receive not only meets our stringent quality benchmarks but also reflects your dedication to academic excellence.

Review and Download the Final Draft

If you find that any part of the paper does not meet the initial instructions, send it back to us with your feedback, and we will make the necessary adjustments.