Faced with this problem, any idea how to go about it?
SELECT * FROM (
(SELECT COL1, COL2, MAX(COL3),
ROWNUMBER() OVER (ORDER BY COL1) AS ROW_NEXT
WHERE COL1 = 'A'
GROUP BY COL1, COL2)
UNION
(SELECT COL1, COL2, COL3,
ROWNUMBER() OVER (ORDER BY COL1) AS ROW_NEXT
WHERE COL1 != 'A'...
I've escalated this matter to the other company, as I can't do much on my part. The code is on another server with firewall setting, unable to request to open to view source.
Thanks SantaMufsa and thargtheslayer for your reply.
I will tell them to change the datatype over at their side, which...
Hi all,
due a recent update to 10g Oracle, the application doesn't seem to be working properly.
CREATE OR REPLACE PROCEDURE INS_APPL (
P_QTY IN DECIMAL,
P_NAME IN VARCHAR2)
I've always passed in String for both the variables and it has been working fine with the previous...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.