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

Differentiate between pre-select and pre-query?

0 Answers  


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  


When do I need to use a semicolon vs a slash in oracle sql?

0 Answers  


Explain the use of rows option in imp command.

0 Answers  


How to assign a tablespace to a users in oracle?

0 Answers  


What are the differences between blob and clob in oracle?

0 Answers  


Explain the difference between sql and oracle?

0 Answers  


What is columnar storage what is the advantage?

0 Answers  


i have a table with the columns below as Emp_ID Address_ID Address_Line City Country -------- --------- ----------- ------ --------- Q: Display the Emp_ID's those having more than one Address_ID

7 Answers   IBM,


How to define an oracle sub procedure?

0 Answers  


What is bulk load in oracle?

0 Answers  


Can we create more than one index on particular column?

1 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1808)
  • 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)