what is purge command
explain about oracle performance tuning
Answers were Sorted based on User's Feedback
Answer / apurva
Purge command is used to clear the recycle bin.
It can also be used with drop command
ex. drop table <tablename> purge;
this command will clear away the table from database as
well as from the recycle bin. After firing of purge command
you cannot retrive the table using flashback query.
Is This Answer Correct ? | 37 Yes | 3 No |
Answer / pooja
Use the PURGE statement to remove a table or index from
your recycle bin and release all of the space associated
with the object, or to remove the entire recycle bin, or to
remove part of all of a dropped tablespace from the recycle
bin.
PURGE RECYCLEBIN;
Is This Answer Correct ? | 24 Yes | 1 No |
What is a pragma statement?
write a query find which rows of a table is updated on 2 days before?
How many functions are there in sql?
What are the different types of functions in sql?
difference between SQL and C
1 Answers Indus Software Technologies,
explain access control lists. : Sql dba
which types of join is used in sql widely? : Sql dba
how many values can the set function of mysql take? : Sql dba
What is index example?
What is dml with example?
select sal from emp group by sal
Write the order of precedence for validation of a column in a table? I. Done using database triggers. Ii. Done using integarity constraints