Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More SQL PLSQL Interview Questions

List the different type of joins?

0 Answers  


can sql servers linked to other servers like oracle? : Sql dba

0 Answers  


what is the difference between truncate and drop statements? : Sql dba

0 Answers  


Hi Guys, I have a situation where I need to access the column values from rowtype variable. However, the column names are dynamic. below is sample code: declare Cursor c1 is select * from emp; Cursor c2 is select column_name from xyztable; v_c2 c2%rowtype; v_str varchar2 v_value varchar2(200); begin for rec in c1 loop open c2;---this cursor has column names like EMPLOYEE_ID, FIRST_NAME, LAST_NAME etc. loop fetch c2 into v_c2; exit when c2%notfound; /* now lets say i want to access value of LAST_NAME from cursor c1, so I am writing below code, however it does not work as expected */ v_str:= 'rec.'|| v_c2.column_name; -- this will give me string like "rec.EMPLOYEE_ID" v_value:=v_str; end loop; end loop; end; / Plz help ASAP.Thanks.

2 Answers  


What are the PL/SQL Statements used in cursor processing ?

4 Answers  






What is a temporal data type?

0 Answers  


Can we use distinct and group by together?

0 Answers  


Is progress software supports to ( pl/sql )?

0 Answers  


What is meant by user defined function?

0 Answers  


package specification-3 procedures package body-2 procedures will is execute

2 Answers   PWC,


Types of indexes. What is the default key created when a primary key is created in a table ?

5 Answers   TCS,


I have following column in the table. col1 1 a b c 2 3 d and I want to display it as num chars 1 a 2 b 3 c 4 d numbers in one column and letters in another column.

1 Answers   IBM, Saama Tech,


Categories