In packages the source code is compiled into p code ? how
do we describe the p code
Answers were Sorted based on User's Feedback
Answer / swapna
After compiling procedures,functions and triggers(in new
versions only),Those will be stored in the form of p-code
(after parsing) in SGA(System Global Area).
The advantage of p-code is Since it was there in SGA which
can be shared by all,Whenever you execute procedure or
function,It won't be recompiled.It uses already compiled p-
code.So,time can be saved.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / srinu
Yes u r correct Swapna,But if we want 2 get the source code
of stored procedure,function,trigger or package ten the
query is......
SELECT text
FROM USER_SOURCE
WHERE NAME='PROCEDURE_NAME/FUNCTION_NAME/TRIGGER_NAME';
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / arup ratan banerjee
But Swapna,,,,
Those codes get stored in ALL_SOURCE tables...
Just check this query out...
Select * from ALL_SOURCE where owner='<OWNER_NAME>'
and type='PROCEDURE'
u WILL GET THE SOURCE CODE FROM HERE
Is This Answer Correct ? | 0 Yes | 2 No |
What is the result, when NULL is compared with NULL?
What is tuple in sql?
Define overloaded procedure?
Which one is faster ienumerable or iqueryable?
what are date and time data types? : Sql dba
check whether all the emp numbers are indeed unique.
What are the dml statements?
write a query to find out the no. of employees whose age is less than 25 and max of salary for the employees belonging to a particular department is less than 20000
Differences between UNIQUE and DISTINCT in select statements
26 Answers ABS, DELL, Deloitte, Hewitt, Oracle, Verinon Technology Solutions, Wipro,
how to convert character strings to numeric values? : Sql dba
What is delimiter in pl sql?
What is the function that is used to transfer a pl/sql table log to a database table?