Question:
Where the procedures are stored in database?
Answer:
A stored procedure is a subroutine available to applications accessing a relational database system. Stored procedures (sometimes called a proc, sproc, StoPro, or SP) are actually stored in the database data dictionary. Source: CoolInterview.com
Answered by: Ravi More | Date: 4/15/2010
| Contact Ravi More
Stored Procedures are stored in side the DB in system tablespace and u can see the source code using user_source table. Source: CoolInterview.com
Answered by: bala | Date: 4/15/2010
| Contact bala
Procedures are stored in the DATA DICTIONARY tables USER_OBJECTS and USER_SOURCE.
select * from user_objects where object_type='PROCEDURE'
select * from user_source where type='PROCEDURE' Source: CoolInterview.com
Answered by: Bindu | Date: 5/3/2010
| Contact Bindu
the name of all stored procedure stores in a system defined table Sysobject Source: CoolInterview.com
Answered by: himanshu | Date: 5/21/2010
| Contact himanshu
The Procedures are physically stores in the PGA(Program Global Area) memory region of Oracle. Source: CoolInterview.com
Answered by: Krishnashis Roy | Date: 6/22/2010
| Contact Krishnashis Roy
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|