ingnore above try this
select to_char(to_date('01-01-201
Main Topics
Browse All TopicsHow can I get the date list in oracle according to given month and year???
Example : Date Format Jan-10
Expected Output:
1/1/2010
1/2/2010
1/3/2010
1/4/2010
1/5/2010
.
.
.
1/31/2010
Thanks
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.
http://www.experts-exchang
check this link
which version u r using??
If you use stored procedure you can do something like this:
create or replace procedure my_proc (d_start DATE,d_end DATE) is
-- d_start DATE:=to_date('18.10.2007'
-- d_end DATE:=to_date('17.11.2007'
d_value DATE;
begin
d_value:=d_start;
while d_value<=d_end
loop
dbms_output.put_line(to_ch
d_value:=d_value+1;
end loop;
end;
Business Accounts
Answer for Membership
by: shru_0409Posted on 2009-10-20 at 01:21:13ID: 25611892
to_char('1/1/2010','mon-yy ')
try this