how to find find & delete duplicate rows from two different
tables?

Answers were Sorted based on User's Feedback



how to find find & delete duplicate rows from two different tables?..

Answer / pravin jadhav

delete from table_name where rowid not in (select max(rowid) from table group by
duplicate_values_field_name);
or
delete duplicate_values_field_name dv from table_name ta where rowid <(select min(rowid) from
table_name tb where ta.dv=tb.dv);

Is This Answer Correct ?    6 Yes 0 No

how to find find & delete duplicate rows from two different tables?..

Answer / paks

using rownum .


Select * from
(Select name,id, Row_number () over (partition by name order by id desc) rn from tblname)
Where rn=1;

Is This Answer Correct ?    2 Yes 3 No

how to find find & delete duplicate rows from two different tables?..

Answer / k.sailesh

We can find duplicate rows from two tables by using select *
from table name. it displays all the values repeated and unique.
We can delete duplicate rows by using Primary key constraint.

Is This Answer Correct ?    3 Yes 17 No

Post New Answer

More Oracle General Interview Questions

I creat Credit memo in AR. Now i want revers the Credit Memo.how you can revers that what out any aditional entry.

0 Answers   GTL,


What is oracle rownum?

0 Answers  


What is blob data type in oracle?

0 Answers  


how to do daily transactions with out sql* loader control file regesterd in apps?

0 Answers   Arrow Electronics,


what is difference between cartesian join & cross join even they give same result?

4 Answers   Bank Of America,






Give syntax for SQL and ORACLE joins.

0 Answers   TCS,


what is the output of select * from emp where null=null & select * from emp where 1=1

8 Answers   IMS Health, NIIT,


What is blob datatype?

0 Answers  


What the is the diff between local index and global index. give some example.

0 Answers   TCS,


How can we force the database to use the user specified rollback segment?

0 Answers  


State the difference along with examples between Oracle 9i, Oracle 10g and Oracle 11i.

0 Answers   Atos Origin,


How to fetch the row which has the max value for a column?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)