how to declare array in plsql?
Answer / nagaraju bhatraju
DECLARE
TYPE v_arr IS VARRAY(25) of NUMBER(3);
v1 v_arr;
v_empno employee.empno%TYPE;
BEGIN
v1(2) := 3;
DBMS_OUTPUT.PUT_LINE('The Value of v1(2) = ' || v1(2));
v_empno := 4;
END;
| Is This Answer Correct ? | 13 Yes | 17 No |
To Provide Support For Mainframes Source Data, which Files Are Used As A Source Definitions?
3.how will u get information about bugs how will u rectify the bugs in realtime whch tool we are using to rectify the bugs
Why union transformation is an active transformation?
What is lookup change?
how to run 2 workflows sequentially. plz respond what is the process?
Hi, There is a session in my workflow which is running for a long time, atlast we found the cause is the missing index. My session is running via a stored procedure. Can I create an Index on the table which the stored procedure is using while my session is running? Please suggest. My Informatica version is PC 8.0.6 My Oracle APPS is 11.5.3. Thanks,
How can you increase the performance in joiner transformation?
Calculate sum of salaries department wise. Then the sum will be repeat for all columns in each department. Develop a mapping for this.
How i can upload the MainFrame source For Informatica ?
generate date / time dimension in informatica
What is informatica etl tool?
I have worked on Informatica 7.1.1. I want to know the answer for the below question. Target is not created initially.Then how to take the DDL script from the source and run the Mapping by creating the Target dynamically?Is it possible by SQL Transformation?