How do I take a backup of Stored Procedure in Oracle?

Answers were Sorted based on User's Feedback



How do I take a backup of Stored Procedure in Oracle?..

Answer / roopa

SELECT
DBMS_METADATA.GET_DDL
('PROCEDURE','<PROCEDURE_NAME>','<SCHEMA_OWNER>')
FROM dual;

Is This Answer Correct ?    15 Yes 0 No

How do I take a backup of Stored Procedure in Oracle?..

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

How do I take a backup of Stored Procedure in Oracle?..

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

Post New Answer

More Database Management Interview Questions

What is Restricted Mode of Instance Startup ?

1 Answers  


What is the role of database management system?

0 Answers  


what is the index and synonym. i have the definitions ...can any one give me brief explanation.. with regards,

0 Answers  


What do you mean by fill factor concept with respect to indexes?

0 Answers  


what are the acid properties in dbms?

0 Answers  






What is normalization and what are the different types of normalization?

0 Answers  


What do you mean by durability in dbms?

0 Answers  


What is 3nf in dbms?

0 Answers  


What is executive plan?

0 Answers  


explain the man feature of RDBMS ?

3 Answers  


What are different type of normalization?

0 Answers  


Explain meant by 3-tier architecture?

0 Answers  


Categories