How do I take a backup of Stored Procedure in Oracle?
Answers were Sorted based on User's Feedback
Answer / roopa
SELECT
DBMS_METADATA.GET_DDL
('PROCEDURE','<PROCEDURE_NAME>','<SCHEMA_OWNER>')
FROM dual;
Is This Answer Correct ? | 15 Yes | 0 No |
Answer / awa
SELECT
DBMS_METADATA.GET_DDL('PROCEDURE',a.object_name,a.owner)
FROM = dba_objects a WHERE OWNER =3D'SCHEMA_OWNER' AND
object_TYPE =3D'PROCEDURE' ORDER BY owner
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / syed
Go to oracle bin directory and run the export file
it will ask you in the question format
just say 'yes' or 'y' for data with procedure and funcion.
it will include all the procedure and function view and
table.
Is This Answer Correct ? | 3 Yes | 10 No |
What are the various normalizations in database?
Which factors does not affect the size of the SGA ?
Compare a hierarchical and network database model?
What is building blocks of client/server?
What will the SHOW_ALERT function returns ?
3 Answers College School Exams Tests, DSS,
What are the three main types of models?
What is the role of database server in database management system?
Explain the terms database and dbms. Also, mention the different types of dbms.
does pl/sql support “overloading”? Explain
What are the package used in DBMS ?
What does partition mean in database?
What is the use of CONSTRAINTS option in EXP command ?