TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
ramesh
NA
19
46.9k
invalid cursor... please correct my query
Aug 13 2012 1:34 AM
my ref cursor variable is v_cour and type is sys_refcursor but when i run the above prgm it comes error as invalid cursor... please correct above query??
1 declare
2 v_cour sys_refcursor;
3 v_stat varchar2(20);
4 begin
5 country_info(22,'pa','');
6 loop
7 fetch v_cour into v_stat;
8 exit when v_cour%notfound;
9 dbms_output.put_line(v_stat);
10 end loop;
11* end;
SQL>
SQL> /
declare
*
ERROR at line 1:
ORA-01001: invalid cursor
ORA-06512: at line 7
Reply
Answers (
1
)
how to replace the null value with charecter value('no data") and how to identify which column having the null value this code write in procedure
Procedure created with compilation errors.