write the Sql query for creating database backup?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / k.l.rajesh babu
BACKUP DATABASE DATABASE_NAME TO DISK='C:\BackupDB\DB.bak'
Is This Answer Correct ? | 16 Yes | 2 No |
Answer / suresh
BACKUP DATABASE DATABASE_NAME TO DISK='C:\BackupDB\DB.bak'
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / vikneswaran
SELECT column_name(s)
INTO new_table_name
FROM old_tablename
Is This Answer Correct ? | 3 Yes | 8 No |
Answer / rk
we can do it from user_tables
like
select table_name,tablespace_name from user_tables;
Is This Answer Correct ? | 5 Yes | 12 No |
Answer / ganesh
create table backup as select * from user_tables;
create table backup1 as select * from user_source;
Is This Answer Correct ? | 4 Yes | 13 No |
Answer / manojbatra071
create table backuptablename as select * from originaltablename;
Is This Answer Correct ? | 3 Yes | 13 No |
what are rollup and cube in t-sql? : Transact sql
Its possible to add more than one primary key for the table
How do I run a sql query in pgadmin 4?
How are functions and procedures called in PL/SQL?
What is the use of a view in sql?
How is a PL/SQL code compiled?
How do I sort a table in sql?
What is difference between cursor and ref cursor?
How do I create an index in word?
What is a sql profiler?
Authentication mechanisms in Sql Server ?
How to read/write files from pl/sql?