5Practice 5 1. Write a PL/SQL block to print information about a given country. a) Declare a PL/SQL record based on the structure of the COUNTRIES table. b)use the DEFINE command to provide the country ID. Pass the value to the PL/SQL block through a isql*plus substitution variable. c) Use DBMS_OUTPUT.PUT_LINE to print selected information about the country. A sample output is shown below. d)execute and test the PL/SQL block for the countries with the IDs CA, DE, UK, US. 2. Create a PL/SQL block to retrieve the name of each department from the DEPARTMENTS table and print each department name on the screen, incorporating an INDEX BY table. Save the code in a file called p5q2.sql by clicking the Save Script button. Save the script with a.sql extension. a) Declare an INDEX BY table, MY_DEPT_TABLE, to temporarily store the name of the departments. b) Using a loop, retrieve the name of all departments currently in the DEPARTMENTS table and store them in the INDEX BY table. Use the following table to assign the value for DEPARTMENT_ID based on the value of the counter used in the loop. Counter 1 10 2 20 3 50 4 60 5 80 6 90 7 110 c) Using another loop, retrieve the department names from the INDEX BY table and print them to the screen, using DBMS_OUTPUT.PUT_LINE. The output from the program is shown on the next page. Administration Marketing Shipping IT Sales Executive Accounting... Accounting PL/SQL procedure successfully completed Internetprogrammierung / H.-G. Hopf 8
3. Modify the block you created in practice 2 to retrieve all information about each department from the DEPARTMENTS table and print the information to the screen, incorporating an INDEX BY table of records. a) Declare an INDEX BY table, MY_DEPT_TABLE, to temporarily store the number, name, and location of all the departments. b) Using a loop, retrieve all department information currently in the DEPARTMENTS table and store it in the INDEX BY table. Use the following table to assign the value for DEPARTMENT_ID based on the value of the counter used in the loop. Exit the loop when the counter reaches the value 7. Counter 1 10 2 20 3 50 4 60 5 80 6 90 7 110 c) Using another loop, retrieve the department information from the INDEX BY table and print it to the screen, using DBMS_OUTPUT.PUT_LINE. A sample output is shown. 6Practice 6 1.Run the command CREATE TABLE top_dogs (salary NUMBER(8,2)) to create a new table for storing the salaries of the employees. 2. Create a PL/SQL block that determines the top employees with respect to salaries. Internetprogrammierung / H.-G. Hopf 9
a)accept a number n from the user where n represents the number of top n earners from the EMPLOYEES table. For example, to view the top five earners, enter 5. Note: Use the DEFINE command to provide the value for n. Pass the value to the PL/SQL block through a isql*plus substitution variable. b)in a loop use the isql*plus substitution parameter created in step 1 and gather the salaries of the top n people from the EMPLOYEES table. There should be no duplication in the salaries. If two employees earn the same salary, the salary should be picked up only once. c) Store the salaries in the TOP_DOGS table. d)test a variety of special cases, such as n = 0 or where n is greater than the numberof employees in the EMPLOYEES table. Empty the TOP_DOGS table after each test. The output shown represents the five highest salaries in the EMPLOYEES table. 3. Create a PL/SQL block that does the following: a)use the DEFINE command to provide the department ID. Pass the value to the PL/SQL block through a isql*plus substitution variable. b)in a PL/SQL block, retrieve the last name, salary, and MANAGER ID of the employees working in that department. c) If the salary of the employee is less than 5000 and if the manager ID is either 101 or 124, display the message <<last_name>> Due for a raise. Otherwise, display the message <<last_name>> Not due for a raise. Note: SET ECHO OFF to avoid displaying the PL/SQL code every time you execute the script. d)test the PL/SQL block for the following cases: Message 10 Whalen Due for a raise 20 50 Hartstein Not Due for a raise Fay Not Due for a raise Weiss Not Due for a raise Fripp Not Due for a raise Kaufling Not Due for a raise Vollmann Not Due for a raise Mourgas Not Due for a raise...... Internetprogrammierung / H.-G. Hopf 10
80 Message Russel Not Due for a raise Partners Not Due for a raise Errazuriz Not Due for a raise Cambrault Not Due for a raise... 7Practice 7 1. In a loop, use a cursor to retrieve the department number and the department name from the DEPARTMENTS table for those departments whose DEPARTMENT_ID is less than 100. Pass the department number to another cursor to retrieve from the EMPLOYEES table the details of employee last name, job, hire date, and salary of those employees whose EMPLOYEE_ID is less than 120 and who work in that department. Internetprogrammierung / H.-G. Hopf 11
2.Modify the code in sol04_4.sql to incorporate a cursor using the FOR UPDATE and WHERE CURRENT OF functionality in cursor processing. a)define the host variables. DEFINE p_empno=104 DEFINE p_empno=174 DEFINE p_empno=176 b) Execute the modified PL/SQL block c) Execute the following command to check if your PL/SQL block has worked successfully: SELECT employee_id,salary,stars FROM EMP WHERE employee_id IN (176,174,104); 8Practice 8 1. Write a PL/SQL block to select the name of the employee with a given salary value. a)use the DEFINE command to provide the salary. b)pass the value to the PL/SQL block through a isql*plus substitution variable. If the salary entered returns more than one row, handle the exception with an appropriate exception handler and insert into the MESSAGES table the message More than one employee with a salary of <salary>. c) If the salary entered does not return any rows, handle the exception with an appropriateexception handler and insert into the MESSAGES table the message No employee with a salary of <salary>. d)if the salary entered returns only one row, insert into the MESSAGES table the employee s name and the salary amount. e)handle any other exception with an appropriate exception handler and insert into the MESSAGES table the message Some other error occurred. f) Test the block for a variety of test cases. Display the rows from the MESSAGES table to check whether the PL/SQL block has executed successfully. Some sample output is shown below. Internetprogrammierung / H.-G. Hopf 12
2. Modify the code in p3q3.sql to add an exception handler. a)use the DEFINE command to provide the department ID and department location. Pass the values to the PL/SQL block through a isql*plus substitution variables. b)write an exception handler for the error to pass a message to the user that the specifieddepartment does not exist. Use a bind variable to pass the message to the user. c) Execute the PL/SQL block by entering a department that does not exist. 3. Write a PL/SQL block that prints the number of employees who earn plus or minus $100 of the salary value set for an isql*plus substitution variable. Use the DEFINE command to provide the salary value. Pass the value to the PL/SQL block through a isql*plus substitution variable. a)if there is no employee within that salary range, print a message to the user indicatingthat is the case. Use an exception for this case. b)if there are one or more employees within that range, the message should indicate how many employees are in that salary range. c) Handle any other exception with an appropriate exception handler. The message should indicate that some other error occurred. DEFINE p_sal = 7000 DEFINE p_sal = 2500 DEFINE p_sal = 6500 Internetprogrammierung / H.-G. Hopf 13