Ubd Lab9
Ubd Lab9
Ubd Lab9
9
Observație!
Scrieți rezolvarea direct în acest document!
Creating Packages
1. Create the specification for the check_emp_pkg which you studied in this lesson. The
specification should declare a constant and two procedures, as follows:
2. Create the package body for check_emp_pkg. Remember that the names and parameters of
the procedures in the body must be identical to those in the specification, or the body will not
compile.
The code for chk_hiredate should RAISE_APPLICATION_ERROR if the employee was hired
more than 100 years ago (hint: use MONTHS_BETWEEN, comparing with
g_max_length_of_service * 12).
The second procedure, chk_dept_mgr, accepts two input parameters: an employee_id and a
manager_id. The code should find the manager of the employee’s department and check whether
this manager has the same manager_id as the second parameter. If the manager_id is the same,
display a suitable “success” message; if they are different, raise an application error. Include an
exception handler for NO_DATA_FOUND.
The following sample data from the employees and departments tables may help you:
Departments:
Employees:
Passing parameters (174,149) would be successful, while (174,176) would raise an error.
3. Procedure chk_hiredate:
A. Test the chk_hiredate procedure using input value 17-Jan-87 (it should succeed).
BEGIN
check_emp_pkg.chk_hiredate(TO_DATE('17-01-1987','DD-MM-YYYY'));
END;
B. Test the chk_dept_mgr procedure twice using input values (174,149) and (174,176). The first
should succeed while the second should fail.
BEGIN
check_emp_pkg.chk_dept_mgr(174, 149);
END;
BEGIN
check_emp_pkg.chk_dept_mgr(174, 176);
END;
4. Now you want to modify the package so that the chk_dept_mgr procedure displays a
different error message if the two manager_ids are different. What do you need to recreate:
the Specification, the Body, or both? Make the change and test it again, using (174,176) as
before.
Doar corpul procedurii va fi modificat, mai exact:
RAISE_APPLICATION_ERROR(-20202, ‘ Cel de-al doilea ID nu
corespunde managerului angajatului care detine primul ID ’);
1. Create a package called overload. The package should contain three procedures all called
what_am_i. The first procedure should accept a VARCHAR2 as an IN parameter, the second a
NUMBER and the third a DATE. Each procedure should display a simple message to show
which datatype was passed to it. For example, the first procedure could display “Here I am a
Varchar2”. Save your work for later. When you are done, describe the package.
2. Test the overload package by calling it and passing in a character string, a number and a date
respectively. You should see the different messages returned.
BEGIN
overload.what_am_i(40);
END;
BEGIN
overload.what_am_i('Am fost aici');
END;
BEGIN
overload.what_am_i(TO_DATE('14-DEC-1940'));
END;
3. Now modify the overload package to have a fourth procedure in it, again called what_am_i,
accepting two parameters: p_in NUMBER and p_in2 VARCHAR2. Test the new procedure to
verify that it works.
CREATE OR REPLACE PACKAGE overload
IS
PROCEDURE what_am_i(p_in IN VARCHAR2);
PROCEDURE what_am_i(p_in IN NUMBER);
PROCEDURE what_am_i(p_in IN DATE);
PROCEDURE what_am_i(p_in IN NUMBER,p_in2 IN VARCHAR2);
END overload;
BEGIN
overload.what_am_i(20,'nope');
END;
4. Modify the overload package specification again to add a fifth procedure called what_am_i with
the same two IN parameters as the fourth procedure. Try to recreate the specification. What
happens and why?
5. Package init_pkg
BEGIN
init_pkg.get_emp_sal(101);
init_pkg.g_max_sal := 40000;
init_pkg.get_emp_sal(101);
END;
Pachetul init_pkg contine o variabila care va reprezenta salariul
maxim pe ntru toti angajatii, si o functie care returneaza daca
un anumit angajat primeste un salariu mai mare decat jumatate din
salariul maxim. Initial, la crearea pachetului, maximul se
seteaza cu adevratul maxim, iar jangajatul cu id-ul 101 primeste
mai mult decat jumatate din acel maxim. La al doilea apel insa,
maximul a fost modificat artificial, rezultand in modificarea
outputului procedurii, salariul angajatului 101 nefiind mai mare
decat jumatate din noul salariu maxim artificial.