Sunday 29 January 2017

How to fetch/get/retrive last record from the table in oracle sql

Example :

select * from (
  select * from oe_order_headers_all
   order by creation_date desc
  )
 where rownum = 1;


Script to update salespersons customer site wise in oracle apps R12

SELECT * FROM HZ_PARTIES WHERE PARTY_NAME LIKE 'DEENA VISION%'; SELECT * FROM HZ_CUST_ACCOUNTS_ALL WHERE PARTY_ID =94043 ; SE...