we have 10 records. It's occured error in 6th record how
can u find and how to rectify that?
Answers were Sorted based on User's Feedback
Answer / srilekha
select * from <Tab_name1> where rownum <=6
minus
select* from <Tab_name1> where rownum<6;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / nithya
To retrieve data:
select * from <table_name> a where 6 = (select count(rowid)
from <table_name> b where a.rowid>=b.rowid);
u can rectify it using the same "sub-query".
| Is This Answer Correct ? | 3 Yes | 1 No |
Write an SQL Query to Delete Duplicate records from a table using ROWID.
24 Answers pspl, Satyam, Thinkways,
What are documents and test cases u followed.
Is soa a part of oracle fusion middleware?
how i can create temporary table?
what is meant by Table space?
Give a brief overview on OrderManagement.
what is organization id
What is instead of trigger in where we will use?
how can i print random rows in plsql table
Registering parametric report?
What is Pragma Autonomous transaction. It's Real time Example
Is that Possible To create package without Specification , If Yes Give any Examples