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 |
Differentiate between ‘cluster’ and ‘non-cluster’ index.
How many records can a database hold?
How to Perform Data Cleaning and Preprocessing?
What are vdl and sdl?
What are indexes? What are b-trees?
What are the characteristics of database?
What are the 4 types of database?
1. Difference between Lookup and join? 2. Difference between funnel and join? 3. What type of load you have used in your project? 4. What type of data warehouse schema you have fallowed in you project? 5. How many fact tables and dimension tables is their in project? 6. How do you kill the job process using windows environment? 7. Difference between sequence file and dataset? 8. What is delta load and subsequent load? 9. By using which stages you have implemented the SCD
How can I join two tables in database?
Define dbms.
What does <> mean in database?
Explain the terms specialization and generalization.
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)