Question: Step 3: Create Stored Procedure to Process Project Delays You will create the SQL Script to create procedures to insert/ update data and process a

Step 3: Create Stored Procedure to Process Project Delays You will create the SQL Script to create procedures to insert/ update data and process a project delay - SP_ProcessProjectDelay: Given a project Id, this procedure finds if any max end date of any activity within the project is after the project's projected end date. If this happens, the procedure will calculate how many days it is late (use DATEDIFF) and fines the project $1050 for each day late it is late. In addition, the project table's "projectedenddate" will be updated with the new end date and the "fundedbudget" will be updated with the original funded budget plus the fines per day late. o Parameters: projectld. Example: The Falcon Coaster has a Projectld "AA01" has a projected end date of 6/30/2017. It has 2 activities: Activityld: AA90 ActivityName: Build Coaster EndDate: 6/01/2017 Activityld: AA91 ActivityName: Inspect Coster EndDate: 7/30/2017 Since Activity AA91 ends 30 days after the projected end date of the project, the project will have an additional $31,500 (30 X $1050) added to the fundedbudget column's original value. Also, the project's new projected end date will be "7/30/17"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
