how to eliminate duplictes in column except group and
section?
Answers were Sorted based on User's Feedback
Answer / sandeep
the above answer will work ifonly one dplicate row is there,
if there are more than one duplication.
then
delete from table_name where rowid not in(select min(rowid)
from table_name group by column_name having count(*)>1)
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / jagan
delete from tablename a where rowid not in(select max(rowid)
from tablename b where a.rowid=b.rowid)
Is This Answer Correct ? | 5 Yes | 3 No |
What are the display styles of list items?
in before report trigger SRW.user_exit(FND_Userinit) what will do
Which is the cheapest and quality Oracle Education provider in Bangladesh?
What is coordination Event?
List the system variables related in Block and Field?
How can you create Lexical parameter n Bind parameter in Reports ?
in user parameter property we have list of values.can we write select query for binding? for example:: select empno from emp where deptno=:deptnum :deptnum is first parameter it displays distinct dept nos. if i do like this it is giving error:: bind variables are not allowed in the select statement
What are the unrestricted procedures used to change the popup screen position during run time ?
What is summary column in Oracle Reports ?
Can you convert a bit-mapped report to ASCII (character-mode) Report ? How ?
What are the ways to monitor the performance of the report?
Explain about stacked canvas views?