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 |
what are external tables? how can we use external table instead of sql * loader to load data from flat file to staging table?
can u explain which situation automonus transaction is used
when we run payment batch what are the 3 concurrent programs?
tell my any difficult situtation you solved in your experience in your company?
List the various types of value set.
What are Mandatory triggers to write in the block, which is created on view?
PL/SQL stored procedure parameters?
what are the different transaction clauses in AR?
Is that Possible To create package Overloading , If Yes Give any Examples
what is user exit and wat program do we write in user exit?
Can 2 functions have same name & input parameters but differ only by return datatype ?
why do we validate the records while developing interface?