Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Triggers allow the DBMS to audit changes to the database as well as ensure the integrity of its data. Figure 5.6(B) in your text is

Triggers allow the DBMS to audit changes to the database as well as ensure the integrity of its data. Figure 5.6(B) in your text is an example of a trigger designed to update the total number of students enrolled in a class whenever another student enrolls.

For the Employee table below, write a trigger that will call a stored procedure which will create an audit trail that will track all updates to the salary field. The audit records will be written into the SalaryAudit table, as seen below. Explain the logic of each step of your trigger.

Employee (EmpID, lastName, firstName, department, salary, dateHired)

SalaryAudit (Date_of_update, EmpID, oldsalary, newsalary)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

Students also viewed these Databases questions

Question

1. Diagnose and solve a transfer of training problem.

Answered: 1 week ago