what is pl/sql table and pl/sql records? what is the use of
that?
Answers were Sorted based on User's Feedback
Answer / srinivasa reddy k
Pl/Sql table comes under collections.
Pl/Sql table ,Pl/Sql datatypes comes under User Defined
Datatypes.
Pl/Sql table is used for storing and processing the values
in a Pl/Sql procedures.
Pl/Sql records are used to hold the row structed values
we can use pl/ql records with pl/sql tables to form a table
like structed to hold the values in a Pl/Sql program.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vans
The usage of plsql table and plsql records is high
performance.It enhance the performance.
Rather than using the cursor variable we can make use of
plsql records which is less time consuming.
For ex:
CURSOR emp_cur IS
SELECT trunc(sysdate) AS hire_date
,202 AS business_group_id
,'Raz' AS last_name
,'M' AS SEX
,13 AS person_type_id
,'Test Employee Creation3' AS per_comments
from dual;
TYPE tab_emp IS TABLE OF emp_cur%rowtype INDEX BY
BINARY_INTEGER;
emp_rec tab_emp;
The rest of the information is being provided by Srinivasa
Reddy
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / mohan kumar
PL\SQL RECORD IS A COLLECTION OF FIELD WITH DIFFERENT DATA TYPES
PL\SQL TABLE IS A COLLECTION OF DATAS,STORED IN ROWS AND COLUMNS
| Is This Answer Correct ? | 0 Yes | 1 No |
can we use anchor propery in XML reports?if yes?explain?
pls send me out bound code of supplers,site,bankiformation code pls as soon as
which parameters passed in report in oracle developer how to pass
What will happen If I am not giveing the Suspense accout while defineing the Set of Books in GL?
in procedure how to return a value
1) why we need to do Validations when the Standard Conc. Prog or the API will do all the validations 2) How can we display more then 1 column data in a formula column (Ex displaying Empno, Ename, sal data in one Formula column) 3) is it possible to give 2 out paramaters in a function
While running the concurrent program we will get the status, we have to change the status. How it will be done.
Exception Handilings?
What r the type Models in the system parameters of the report?
How to create user and how u attach with responsibility.
what is the difference between credit memo and debit memo?...
how i can create temporary table?