SlideShare a Scribd company logo
2
Most read
4
Most read
PLSQL:

1)
Write a PL/SQL block to accept a year input and check whether it is a leap year.

2)
Write a PL/SQL block which will accept the employee number and print the annual_salary as well as the bonus.
 The PL/SQL block should:
• Calculate the annual salary as salary * 12
• Calculate the bonus as indicated in the following table:
 Annual Salary        Bonus
>= 20,000            2000
19,999–10,000        1000
<= 9,999             500


3)
Declare a cursor named EMP_CUR to select the employee’s last name, salary, and hire
date from the EMPLOYEES table
Process each row from the cursor, and if the salary is greater than 15,000 and the hire
date is later than 01-FEB-1988, display the employee name, salary, and hire date in
the format shown in the following sample output:




4)
Create a PL/SQL block to retrieve and output the last name and department ID of each employee from the
EMPLOYEES table for those employees whose EMPLOYEE_ID is less than 115.
In the PL/SQL block, use a cursor FOR loop strategy instead of the OPEN / FETCH /CLOSE cursor methods
used in the previous practice.
1. In the declarative section:
• Create two associative arrays. The unique key column for both arrays should be of the BINARY INTEGER
data type. One array holds the employee’s last name and the other holds the department ID.
• Declare a counter variable to be used in the executable section
• Declare a cursor that selects the last name and department ID for employees whose ID is less than 115



5)
Create a table:
CREATE TABLE analysis
(ename Varchar2(20), years Number(2), sal Number(8,2)
);
Write a PL/SQL block that handles an exception, as follows:
1. Declare variables for the employee last name, salary, and hire date. Use a substitution
variable for the employee last name. Then, query the employees table for the
last_name, salary, and hire_date of the specified employee.
2. If the employee has been with the organization for more than five years, and if that
employee’s salary is less than 3,500, raise an exception. In the exception handler,
perform the following:
• Output the following information: employee last name and the message “due
for a raise,” similar to the following:




Insert the last name, years of service, and salary into the analysis table.

3. If there is no exception, output the employee last name and the message “not due for a raise,” similar to the
following:




Verify the results by querying the analysis table. Use the following test cases to test the PL/SQL block.
LAST_NAME MESSAGE
Austin            Not due for a raise
Nayer             Due for a raise
Fripp             Not due for a raise
Khoo              Due for a raise

6)
Create, compile, and invoke the ADD_JOB procedure and review the results.
a) Create a procedure called ADD_JOB to insert a new job into the JOBS table.
Provide the ID and job title using two parameters.
Note: You can create the procedure (and other objects) by entering the code in the
SQL Worksheet area, and then click the Run Script (F5) icon. This creates and
compiles the procedure. To find out whether or not the procedure has any errors,
click the procedure name in the procedure node, and then select Compile from the
pop-up menu.
b) Invoke the procedure with IT_DBA as the job ID and Database
Administrator as the job title. Query the JOBS table and view the results.
c) Invoke your procedure again, passing a job ID of ST_MAN and a job title of
Stock Manager. What happens and why?
7)
7a. Create a procedure called UPD_JOB to update the job title. Provide the job ID and
a new title using two parameters. Include the necessary exception handling if no
update occurs.

7b) Invoke the procedure to change the job title of the job ID IT_DBA to Data Administrator. Query the JOBS
table and view the results.

7c) Test the exception-handling section of the procedure by trying to update a job that does not exist. You can
use the job ID IT_WEB and the job title Web Master.


8) Create a procedure called GET_EMPLOYEE to query the EMPLOYEES table, retrieving the salary and job
ID for an employee when provided with the employee ID.
a) Create a procedure that returns a value from the SALARY and JOB_ID columns for a specified employee ID.
Remove syntax errors, if any, and then recompile the code.

9)
Create and invoke the GET_JOB function to return a job title.
9a) Create and compile a function called GET_JOB to return a job title.
b) Create a VARCHAR2 host variable called b_title, allowing a length of 35
characters. Invoke the function with job ID SA_REP to return the value in the
host variable, and then print the host variable to view the result.

9b)Create a VARCHAR2 host variable called b_title, allowing a length of 35
characters. Invoke the function with job ID SA_REP to return the value in the
host variable, and then print the host variable to view the result.

10) Create a function called GET_ANNUAL_COMP to return the annual salary computed
from an employee’s monthly salary and commission passed as parameters.
10 a) Create the GET_ANNUAL_COMP function, which accepts parameter values for the
monthly salary and commission. Either or both values passed can be NULL, but
the function should still return a non-NULL annual salary. Use the following basic
formula to calculate the annual salary:
(salary*12) + (commission_pct*salary*12)

10b) Use the function in a SELECT statement against the EMPLOYEES table for
employees in department 30.

11)
Create a procedure, ADD_EMPLOYEE, to insert a new employee into the
EMPLOYEES table. The procedure should call a VALID_DEPTID function to check
whether the department ID specified for the new employee exists in the
DEPARTMENTS table.
11a) Create a function called VALID_DEPTID to validate a specified department ID
and return a BOOLEAN value of TRUE if the department exists.
11b) Create the ADD_EMPLOYEE procedure to add an employee to the EMPLOYEES
table. The row should be added to the EMPLOYEES table if the VALID_DEPTID
function returns TRUE; otherwise, alert the user with an appropriate message.
Provide the following parameters:
- first_name
- last_name
- email
- job: Use 'SA_REP' as the default.
- mgr: Use 145 as the default.
- sal: Use 1000 as the default.
- comm: Use 0 as the default.
- deptid: Use 30 as the default.
- Use the EMPLOYEES_SEQ sequence to set the employee_id column.
     − Set the hire_date column to TRUNC(SYSDATE).
11c) Call ADD_EMPLOYEE for the name 'Jane Harris' in department 15,
leaving other parameters with their default values. What is the result?

11d) Add another employee named Joe Harris in department 80, leaving the remaining
parameters with their default values. What is the result?


12)
1) Create a package specification and body called JOB_PKG, containing a copy of your
ADD_JOB, UPD_JOB, and DEL_JOB procedures as well as your GET_JOB function.
Note: Use the code from your previously saved procedures and functions when
creating the package. You can copy the code in a procedure or function, and then
paste the code into the appropriate section of the package.
a) Create the package specification including the procedures and function headings
as public constructs.

b) Create the package body with the implementations for each of the subprograms.
c) Invoke your ADD_JOB package procedure by passing the values IT_SYSAN and
SYSTEMS ANALYST as parameters.

13)
Create and invoke a package that contains private and public constructs.
a) Create a package specification and a package body called EMP_PKG that contains
the following procedures and function that you created earlier:
i) ADD_EMPLOYEE procedure as a public construct
ii) GET_EMPLOYEE procedure as a public construct
iii) VALID_DEPTID function as a private construct
b) Invoke the EMP_PKG.ADD_EMPLOYEE procedure, using department ID 15 for
employee Jane Harris with the email ID JAHARRIS. Because department ID 15
does not exist, you should get an error message as specified in the exception
handler of your procedure.
c) Invoke the ADD_EMPLOYEE package procedure by using department ID 80 for
employee David Smith with the email ID DASMITH.

14)
Modify the code for the EMP_PKG package that you created earlier,
and then overload the ADD_EMPLOYEE procedure. Next, you create two overloaded
functions called GET_EMPLOYEE in the EMP_PKG package. You also add a public
procedure to EMP_PKG to populate a private PL/SQL table of valid department IDs and
modify the VALID_DEPTID function to use the private PL/SQL table contents to
validate department ID values. You also change the VALID_DEPTID validation
processing function to use the private PL/SQL table of department IDs. Finally, you
reorganize the subprograms in the package specification and the body so that they are in
alphabetical sequence.
Modify the code for the EMP_PKG package that you created earlier, and
overload the ADD_EMPLOYEE procedure.
a) In the package specification, add a new procedure called ADD_EMPLOYEE that
accepts the following three parameters:
i) First name
ii) Last name
     iii) Department ID

b) Implement the new ADD_EMPLOYEE procedure in the package body as follows:
i) Format the email address in uppercase characters, using the first letter of the
first name concatenated with the first seven letters of the last name.
ii) The procedure should call the existing ADD_EMPLOYEE procedure to perform
the actual INSERT operation using its parameters and formatted email to
supply the values.
     iii) Click Run Script to create the package. Compile the package.

c) Invoke the new ADD_EMPLOYEE procedure using the name Samuel Joplin
to be added to department 30.

15)
In the EMP_PKG package, create two overloaded functions called GET_EMPLOYEE:
a) In the package specification, add the following functions:
i) The GET_EMPLOYEE function that accepts the parameter called p_emp_id
based on the employees.employee_id%TYPE type. This function
should return EMPLOYEES%ROWTYPE.
ii) The GET_EMPLOYEE function that accepts the parameter called
p_family_name of type employees.last_name%TYPE. This function
should return EMPLOYEES%ROWTYPE.

More Related Content

What's hot (20)

DOCX
Sql Queries
User1test
 
DOC
Sql task
Nawaz Sk
 
PPTX
Aggregate function
Rayhan Chowdhury
 
DOC
How to create payslip through self service
Feras Ahmad
 
DOC
SQL practice questions set - 2
Mohd Tousif
 
PDF
Sql queries questions and answers
Michael Belete
 
DOCX
All questions
ABHIJEET KHIRE
 
PDF
Sql Commands
Sachin MK
 
PPT
Mysql
TSUBHASHRI
 
PPT
ORACLE PL SQL
Srinath Maharana
 
PPT
05 Creating Stored Procedures
rehaniltifat
 
PPT
Les01 (retrieving data using the sql select statement)
Achmad Solichin
 
DOC
Sql queires
MohitKumar1985
 
PPT
Les03 (Using Single Row Functions To Customize Output)
Achmad Solichin
 
DOC
Best sql plsql material
pitchaiah yechuri
 
PPT
Sql oracle
Md.Abu Noman Shuvo
 
PDF
DBMS 6 | MySQL Practice List - Rank Related Queries
Mohammad Imam Hossain
 
DOC
80 different SQL Queries with output
Nexus
 
PPTX
sql function(ppt)
Ankit Dubey
 
Sql Queries
User1test
 
Sql task
Nawaz Sk
 
Aggregate function
Rayhan Chowdhury
 
How to create payslip through self service
Feras Ahmad
 
SQL practice questions set - 2
Mohd Tousif
 
Sql queries questions and answers
Michael Belete
 
All questions
ABHIJEET KHIRE
 
Sql Commands
Sachin MK
 
Mysql
TSUBHASHRI
 
ORACLE PL SQL
Srinath Maharana
 
05 Creating Stored Procedures
rehaniltifat
 
Les01 (retrieving data using the sql select statement)
Achmad Solichin
 
Sql queires
MohitKumar1985
 
Les03 (Using Single Row Functions To Customize Output)
Achmad Solichin
 
Best sql plsql material
pitchaiah yechuri
 
Sql oracle
Md.Abu Noman Shuvo
 
DBMS 6 | MySQL Practice List - Rank Related Queries
Mohammad Imam Hossain
 
80 different SQL Queries with output
Nexus
 
sql function(ppt)
Ankit Dubey
 

Viewers also liked (16)

PDF
Pl lab solution
Ashwin Kumar
 
DOC
Sql queries with answers
vijaybusu
 
DOCX
Tables
Nawaz Sk
 
DOC
Mc amca04919 plsql programs
Ashwin Kumar
 
DOC
Sql task answers
Nawaz Sk
 
DOC
3963066 pl-sql-notes-only
Ashwin Kumar
 
PDF
Oracle database 12c sql worshop 1 activity guide
Otto Paiz
 
PDF
Oracle database 12c sql worshop 2 activity guide
Otto Paiz
 
PDF
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
Ashwin Kumar
 
PDF
Oracle database 12c sql worshop 2 student guide vol 1
Otto Paiz
 
PDF
Oracle database 12c sql worshop 1 student guide vol 2
Otto Paiz
 
PDF
Oracle database 12c sql worshop 2 student guide vol 2
Otto Paiz
 
DOCX
Oracle order management implementation manual
Nawaz Sk
 
DOC
Dbms lab questions
Parthipan Parthi
 
ODT
Sql queries interview questions
Pyadav010186
 
DOC
A must Sql notes for beginners
Ram Sagar Mourya
 
Pl lab solution
Ashwin Kumar
 
Sql queries with answers
vijaybusu
 
Tables
Nawaz Sk
 
Mc amca04919 plsql programs
Ashwin Kumar
 
Sql task answers
Nawaz Sk
 
3963066 pl-sql-notes-only
Ashwin Kumar
 
Oracle database 12c sql worshop 1 activity guide
Otto Paiz
 
Oracle database 12c sql worshop 2 activity guide
Otto Paiz
 
48742447 11g-sql-fundamentals-ii-additional-practices-and-solutions
Ashwin Kumar
 
Oracle database 12c sql worshop 2 student guide vol 1
Otto Paiz
 
Oracle database 12c sql worshop 1 student guide vol 2
Otto Paiz
 
Oracle database 12c sql worshop 2 student guide vol 2
Otto Paiz
 
Oracle order management implementation manual
Nawaz Sk
 
Dbms lab questions
Parthipan Parthi
 
Sql queries interview questions
Pyadav010186
 
A must Sql notes for beginners
Ram Sagar Mourya
 
Ad

Similar to Plsql task (20)

DOCX
PLSQL.docx
18BF1AO482
 
PPT
Pl sql guide
Vinay Kumar
 
DOCX
Trig
alur raju
 
PPT
PLSQLIV.ppt
NagendranathMVSS
 
PPTX
Packages in PL/SQL
Pooja Dixit
 
TXT
Plsql
Shohan Ahmed
 
PPTX
Practice create procedure
cit gubbi
 
PDF
Plsql pdf
Jatin Srivastava
 
PDF
Packages - PL/SQL
Esmita Gupta
 
DOCX
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
gilpinleeanna
 
PDF
Pooja Jain
dezyneecole
 
PPT
Les09
um_adeveloper
 
PDF
Pooja Bijawat,Bachelor Degree in Computer Application
dezyneecole
 
PPTX
Plsql guide 2
Vinay Kumar
 
PPTX
Procedure and Functions in pl/sql
Ñirmal Tatiwal
 
PDF
Vishwajeet Sikhwal ,BCA,Final Year 2015
dezyneecole
 
PPTX
PLSQL-OO [SOUG 2022].pptx
Richard Martens
 
PPS
Procedures/functions of rdbms
jain.pralabh
 
PDF
Advanced plsql mock_assessment
Saurabh K. Gupta
 
PPTX
Xenogenetics for PL/SQL - infusing with Java best practices
Lucas Jellema
 
PLSQL.docx
18BF1AO482
 
Pl sql guide
Vinay Kumar
 
Trig
alur raju
 
PLSQLIV.ppt
NagendranathMVSS
 
Packages in PL/SQL
Pooja Dixit
 
Practice create procedure
cit gubbi
 
Plsql pdf
Jatin Srivastava
 
Packages - PL/SQL
Esmita Gupta
 
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
gilpinleeanna
 
Pooja Jain
dezyneecole
 
Pooja Bijawat,Bachelor Degree in Computer Application
dezyneecole
 
Plsql guide 2
Vinay Kumar
 
Procedure and Functions in pl/sql
Ñirmal Tatiwal
 
Vishwajeet Sikhwal ,BCA,Final Year 2015
dezyneecole
 
PLSQL-OO [SOUG 2022].pptx
Richard Martens
 
Procedures/functions of rdbms
jain.pralabh
 
Advanced plsql mock_assessment
Saurabh K. Gupta
 
Xenogenetics for PL/SQL - infusing with Java best practices
Lucas Jellema
 
Ad

Recently uploaded (20)

PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
CATEGORIES OF NURSING PERSONNEL: HOSPITAL & COLLEGE
PRADEEP ABOTHU
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
PDF
Dimensions of Societal Planning in Commonism
StefanMz
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PPTX
Identifying elements in the story. Arrange the events in the story
geraldineamahido2
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PDF
Horarios de distribución de agua en julio
pegazohn1978
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
PDF
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PPTX
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
PPTX
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
CATEGORIES OF NURSING PERSONNEL: HOSPITAL & COLLEGE
PRADEEP ABOTHU
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
Dimensions of Societal Planning in Commonism
StefanMz
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
Identifying elements in the story. Arrange the events in the story
geraldineamahido2
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
Horarios de distribución de agua en julio
pegazohn1978
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 

Plsql task

  • 1. PLSQL: 1) Write a PL/SQL block to accept a year input and check whether it is a leap year. 2) Write a PL/SQL block which will accept the employee number and print the annual_salary as well as the bonus. The PL/SQL block should: • Calculate the annual salary as salary * 12 • Calculate the bonus as indicated in the following table: Annual Salary Bonus >= 20,000 2000 19,999–10,000 1000 <= 9,999 500 3) Declare a cursor named EMP_CUR to select the employee’s last name, salary, and hire date from the EMPLOYEES table Process each row from the cursor, and if the salary is greater than 15,000 and the hire date is later than 01-FEB-1988, display the employee name, salary, and hire date in the format shown in the following sample output: 4) Create a PL/SQL block to retrieve and output the last name and department ID of each employee from the EMPLOYEES table for those employees whose EMPLOYEE_ID is less than 115. In the PL/SQL block, use a cursor FOR loop strategy instead of the OPEN / FETCH /CLOSE cursor methods used in the previous practice. 1. In the declarative section: • Create two associative arrays. The unique key column for both arrays should be of the BINARY INTEGER data type. One array holds the employee’s last name and the other holds the department ID. • Declare a counter variable to be used in the executable section • Declare a cursor that selects the last name and department ID for employees whose ID is less than 115 5) Create a table: CREATE TABLE analysis (ename Varchar2(20), years Number(2), sal Number(8,2) );
  • 2. Write a PL/SQL block that handles an exception, as follows: 1. Declare variables for the employee last name, salary, and hire date. Use a substitution variable for the employee last name. Then, query the employees table for the last_name, salary, and hire_date of the specified employee. 2. If the employee has been with the organization for more than five years, and if that employee’s salary is less than 3,500, raise an exception. In the exception handler, perform the following: • Output the following information: employee last name and the message “due for a raise,” similar to the following: Insert the last name, years of service, and salary into the analysis table. 3. If there is no exception, output the employee last name and the message “not due for a raise,” similar to the following: Verify the results by querying the analysis table. Use the following test cases to test the PL/SQL block. LAST_NAME MESSAGE Austin Not due for a raise Nayer Due for a raise Fripp Not due for a raise Khoo Due for a raise 6) Create, compile, and invoke the ADD_JOB procedure and review the results. a) Create a procedure called ADD_JOB to insert a new job into the JOBS table. Provide the ID and job title using two parameters. Note: You can create the procedure (and other objects) by entering the code in the SQL Worksheet area, and then click the Run Script (F5) icon. This creates and compiles the procedure. To find out whether or not the procedure has any errors, click the procedure name in the procedure node, and then select Compile from the pop-up menu. b) Invoke the procedure with IT_DBA as the job ID and Database Administrator as the job title. Query the JOBS table and view the results. c) Invoke your procedure again, passing a job ID of ST_MAN and a job title of Stock Manager. What happens and why?
  • 3. 7) 7a. Create a procedure called UPD_JOB to update the job title. Provide the job ID and a new title using two parameters. Include the necessary exception handling if no update occurs. 7b) Invoke the procedure to change the job title of the job ID IT_DBA to Data Administrator. Query the JOBS table and view the results. 7c) Test the exception-handling section of the procedure by trying to update a job that does not exist. You can use the job ID IT_WEB and the job title Web Master. 8) Create a procedure called GET_EMPLOYEE to query the EMPLOYEES table, retrieving the salary and job ID for an employee when provided with the employee ID. a) Create a procedure that returns a value from the SALARY and JOB_ID columns for a specified employee ID. Remove syntax errors, if any, and then recompile the code. 9) Create and invoke the GET_JOB function to return a job title. 9a) Create and compile a function called GET_JOB to return a job title. b) Create a VARCHAR2 host variable called b_title, allowing a length of 35 characters. Invoke the function with job ID SA_REP to return the value in the host variable, and then print the host variable to view the result. 9b)Create a VARCHAR2 host variable called b_title, allowing a length of 35 characters. Invoke the function with job ID SA_REP to return the value in the host variable, and then print the host variable to view the result. 10) Create a function called GET_ANNUAL_COMP to return the annual salary computed from an employee’s monthly salary and commission passed as parameters. 10 a) Create the GET_ANNUAL_COMP function, which accepts parameter values for the monthly salary and commission. Either or both values passed can be NULL, but the function should still return a non-NULL annual salary. Use the following basic formula to calculate the annual salary: (salary*12) + (commission_pct*salary*12) 10b) Use the function in a SELECT statement against the EMPLOYEES table for employees in department 30. 11) Create a procedure, ADD_EMPLOYEE, to insert a new employee into the EMPLOYEES table. The procedure should call a VALID_DEPTID function to check whether the department ID specified for the new employee exists in the DEPARTMENTS table. 11a) Create a function called VALID_DEPTID to validate a specified department ID and return a BOOLEAN value of TRUE if the department exists. 11b) Create the ADD_EMPLOYEE procedure to add an employee to the EMPLOYEES table. The row should be added to the EMPLOYEES table if the VALID_DEPTID function returns TRUE; otherwise, alert the user with an appropriate message. Provide the following parameters: - first_name - last_name - email
  • 4. - job: Use 'SA_REP' as the default. - mgr: Use 145 as the default. - sal: Use 1000 as the default. - comm: Use 0 as the default. - deptid: Use 30 as the default. - Use the EMPLOYEES_SEQ sequence to set the employee_id column. − Set the hire_date column to TRUNC(SYSDATE). 11c) Call ADD_EMPLOYEE for the name 'Jane Harris' in department 15, leaving other parameters with their default values. What is the result? 11d) Add another employee named Joe Harris in department 80, leaving the remaining parameters with their default values. What is the result? 12) 1) Create a package specification and body called JOB_PKG, containing a copy of your ADD_JOB, UPD_JOB, and DEL_JOB procedures as well as your GET_JOB function. Note: Use the code from your previously saved procedures and functions when creating the package. You can copy the code in a procedure or function, and then paste the code into the appropriate section of the package. a) Create the package specification including the procedures and function headings as public constructs. b) Create the package body with the implementations for each of the subprograms. c) Invoke your ADD_JOB package procedure by passing the values IT_SYSAN and SYSTEMS ANALYST as parameters. 13) Create and invoke a package that contains private and public constructs. a) Create a package specification and a package body called EMP_PKG that contains the following procedures and function that you created earlier: i) ADD_EMPLOYEE procedure as a public construct ii) GET_EMPLOYEE procedure as a public construct iii) VALID_DEPTID function as a private construct b) Invoke the EMP_PKG.ADD_EMPLOYEE procedure, using department ID 15 for employee Jane Harris with the email ID JAHARRIS. Because department ID 15 does not exist, you should get an error message as specified in the exception handler of your procedure. c) Invoke the ADD_EMPLOYEE package procedure by using department ID 80 for employee David Smith with the email ID DASMITH. 14) Modify the code for the EMP_PKG package that you created earlier, and then overload the ADD_EMPLOYEE procedure. Next, you create two overloaded functions called GET_EMPLOYEE in the EMP_PKG package. You also add a public procedure to EMP_PKG to populate a private PL/SQL table of valid department IDs and modify the VALID_DEPTID function to use the private PL/SQL table contents to validate department ID values. You also change the VALID_DEPTID validation processing function to use the private PL/SQL table of department IDs. Finally, you
  • 5. reorganize the subprograms in the package specification and the body so that they are in alphabetical sequence. Modify the code for the EMP_PKG package that you created earlier, and overload the ADD_EMPLOYEE procedure. a) In the package specification, add a new procedure called ADD_EMPLOYEE that accepts the following three parameters: i) First name ii) Last name iii) Department ID b) Implement the new ADD_EMPLOYEE procedure in the package body as follows: i) Format the email address in uppercase characters, using the first letter of the first name concatenated with the first seven letters of the last name. ii) The procedure should call the existing ADD_EMPLOYEE procedure to perform the actual INSERT operation using its parameters and formatted email to supply the values. iii) Click Run Script to create the package. Compile the package. c) Invoke the new ADD_EMPLOYEE procedure using the name Samuel Joplin to be added to department 30. 15) In the EMP_PKG package, create two overloaded functions called GET_EMPLOYEE: a) In the package specification, add the following functions: i) The GET_EMPLOYEE function that accepts the parameter called p_emp_id based on the employees.employee_id%TYPE type. This function should return EMPLOYEES%ROWTYPE. ii) The GET_EMPLOYEE function that accepts the parameter called p_family_name of type employees.last_name%TYPE. This function should return EMPLOYEES%ROWTYPE.