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 |
Do we consider null values the same as that of blank space or zero?
What is the best free database?
How to detect applications and users that hold transactions open too long?
Define sub-query.
What is the use of NOARCHIEVELOG parameter in Database?
difference between generalisation,specialisation and aggregation? with examples.
What are the features of database language?
What are indexes ? What are the advantages ? (Phone Screen)
Explain the term ‘relations’?
Explain the different types of languages that are available in the dbms?
Is it possible to Disable the Parameter form while running the report ?
What's the difference between 'union' and 'union all' ?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)