Database System With Administration: Technical Assessment
Database System With Administration: Technical Assessment
Administration
TECHNICAL ASSESSMENT
2
M4, M5, M6, M7
1. Write a procedure that displays the number of countries in a given region (prompt for
value) whose highest elevations exceed a given value (prompt for value). The procedure
should accept two formal parameters, one for a region_id and the other for an elevation
value for comparison. Use DBMS_OUTPUT.PUT_LINE to display the results in a
message. Test your procedure using the value 5 for the region_id and 2000 for the
highest elevation.
1. Create a function called full_name. Pass two parameters to the function, an employee’s
last name and first name. The function should return the full name in the format, last
name, comma, space, first name (for example: Smith, Joe). (3pts)
Test your function from an anonymous block which uses a local variable to store and
display the returned value.(2pts)
END full_name;
v_name VARCHAR2(40);
BEGIN
DBMS_OUTPUT.PUT_LINE(v_name);
END;
Database System with Page 4
Administration of 4
2. Modify your anonymous block from the previous step to remove the local variable
declaration and call the function directly from within the DBMS_OUTPUT.PUT_LINE call.
Test the block again.(2pts)
BEGIN
DBMS_OUTPUT.PUT_LINE(full_name('Sam', 'Smith'));
END;
3. Now call the function from within a SELECT statement, not a PL/SQL block. Your SELECT
statement should display the first_name, last_name, and full name (using the function) of
all employees in department 50. (3pts)
A. Create a package specification and body called JOB_PKG, containing the following
procedures:
Create a procedure called ADD_JOB to insert a new job into the JOBS table. The
procedure has job id, job title, minimum salary and maximum salary as parameters.
Ensure that the value of maximum salary is greater than minimum salary, raise an
exception if this rule is violated (create a private procedure for salary validation). (10 pts)
SPECIFICATION-------------
BODY-----------
A. The rows in the JOBS table store a minimum and maximum salary allowed for different
JOB_ID
Database System with Page 9
Administration of 4
values. You are asked to write code to ensure that employees’ salaries fall in the range
allowed for
their job type, for insert and update operations.
Note: Submit a complete snip of the procedure. Ensure to follow the given
procedure specifications.
The trigger must call the CHECK_SALARY procedure to carry out the business logic.
The trigger should pass the new job ID and salary to the procedure parameters.
Note: Submit a complete snip of the trigger code. Ensure to follow the
given trigger specifications.
DECLARE
p_empid employees.employee_id%TYPE := 777;
p_jobid employees.job_id%TYPE := 'IT_DBADM';
p_salary employees.salary%TYPE := 20000;
BEGIN
INSERT INTO employees(employee_id,job_id,salary) VALUES (p_empid,p_jobid,p_sala
ry);
END;