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'...
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.