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

Does rowid change in oracle?

1 Answers  


Explain alias?

0 Answers  


what are different types of deletes?

1 Answers  


Explain what are the type of synonyms?

0 Answers  


What is a heap related to database ?

1 Answers   TCS, University of Edinburgh,






what is reindexing?

0 Answers   Tata Technologies,


How do you recover a datafile that has not been physically been backed up since its creation and has been deleted. Provide syntax example.

1 Answers  


How many categories of data types?

0 Answers  


Describe the different type of Integrity Constraints supported by ORACLE ?

2 Answers  


How to delete all rows a table in oracle?

0 Answers  


how to get last monday of a month?

2 Answers   Multifonds,


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

0 Answers   Arrow Electronics,


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)