there are two ";" missing:
Main Topics
Browse All TopicsI'm trying to create a procedure that retrieves from a table, the register with the highest value (without using Max() function :) )for certain field, but i keep getting an error:
CREATE OR REPLACE PROCEDURE OBTENERDNIMASALTO AS
cursor c1 is
SELECT * from clientes
curregister CLIENTES%rowtype;
maxdni dni%type;
curdni dni%type;
BEGIN
open c1
loop
fetch c1 into curregister;
curdni:=curregister.dni;
if(curdni > maxdni) THEN
maxdni:= curdni;
end if;
end loop;
if curregister%ISOPEN then
close curregister;
end if;
DBMS_OUTPUT.PUT_LINE(maxdn
END OBTENERDNIMASALTO;
CLIENTES is the table name, dni is the field where i woud like to extract the hightest value.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
where do you use MAX()? I do not see it in the code snippet.
You could try row_number or rank analytical funtions if you do not want to use max.
http://www.oracle-base.com
Business Accounts
Answer for Membership
by: lwadwellPosted on 2009-05-05 at 19:57:20ID: 24311015
Hi axtur,
Why don't you want to use a MAX()? ... and what error are you getting?
Also, please try the below...
lwadwell
Select allOpen in new window