write the Sql query for creating database backup?
Answer Posted / gourvendra singh
if you need to take tha backup of the database on ur hard
disk then u can use the following query:
exp userid=system/manager@orcl file=location\abc.dmp full=y
log= abc
| Is This Answer Correct ? | 23 Yes | 4 No |
Post New Answer View All Answers
what is query cache in mysql? : Sql dba
Why do we use set serveroutput on?
Do ddl statements need commit?
How to Execute a Package in PL/SQL.?
Is pl sql a programming language?
what is a database lock ? : Sql dba
how to analyze tables with 'mysqlcheck'? : Sql dba
What are sql injection vulnerabilities?
Is sql easier than java?
What is t sql in sql server?
Why do we need view in sql?
How many unique keys can a table have?
What is sql and db2?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What is database white box testing and black box testing?