Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Oracle SQL: Create a table with two columns. Name the table First Initial _Last Name (e.g. John Dow will create table j_dow). You have toaudit

Oracle SQL:

Create a table with two columns. Name the table First Initial _Last Name (e.g. John Dow will create table j_dow). You have toaudit all DML statements on your table. To do this you write twotriggers:

1. To log any DML statements that users mightrun on this table. The results must be stored in the First Initial_ Last Name _ Log table (e.g. John Dow will create tablej_dow_log).

The table should have unique event ID, values for both theOracle and the system user who ran the query, the time it wasexecuted and the type of DML query user ran.

2. To capture any data that was changed in thetable. The results must be stored in the First Initial _ Last Name_ History table (e.g. John Dow will create tablej_dow_history).

The table should reference the event ID from the log table, andstore both old and new values for both columns.

What to submit: Name this file according to submissionguidelines and include the following answers:

Code to create all three tables, constraints, insertstatements. (10 points)

Code for the first trigger (10 points)

Test cases and expected results for the first trigger(30 points)

Code for the second trigger (10 points)

Test cases and expected results for the first trigger(30 points)

Step by Step Solution

3.43 Rating (153 Votes )

There are 3 Steps involved in it

Step: 1

Certainly Heres an example of how you can create the tables constraints and triggers in Oracle SQL based on your requirements sql Copy code Create the ... 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

Introductory Statistics Exploring The World Through Data

Authors: Robert Gould, Colleen Ryan

2nd Edition

9780321978509, 321978277, 321978501, 978-0321978271

More Books

Students also viewed these Programming questions

Question

BPR always involves automation. Group of answer choices True False

Answered: 1 week ago