| | |
Oracle console stucks
Please support our Oracle advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
you need to write exit condition for outloop.and one more thing,you need to Decrement the counter value in inner loop ,otherwise it will run for infinite times........................Fist of all you just avoid lables,it will degrade the performance.............................
you can run below code to run this for one time likewise you need to give conditions to terminate loop...........................
declare
counter number;
begin
<<outer>>
for counter in 1..10 loop
<<inner>>
loop
insert into lines
values(counter);
dbms_output.put_line(counter);
exit when counter=1 or counter=8;
end loop inner;
exit when counter=1 or counter=8;
end loop outer;
end;
/
One more thing,what is the need of that condition,counter=1 or counter=8; this or condition is no need,unless if you give the numbers dynamically..................
I think this will help you ................................
you can run below code to run this for one time likewise you need to give conditions to terminate loop...........................
declare
counter number;
begin
<<outer>>
for counter in 1..10 loop
<<inner>>
loop
insert into lines
values(counter);
dbms_output.put_line(counter);
exit when counter=1 or counter=8;
end loop inner;
exit when counter=1 or counter=8;
end loop outer;
end;
/
One more thing,what is the need of that condition,counter=1 or counter=8; this or condition is no need,unless if you give the numbers dynamically..................
I think this will help you ................................
![]() |
Other Threads in the Oracle Forum
- Previous Thread: I need the logic behind date syntax
- Next Thread: can we display select command with from onedate to present date
| Thread Tools | Search this Thread |
2009predictions acquisition amazon.com bartz bernanke cia citrix cloudcomputing crm database dell economy editor enterprise enterprise2.0 enterprisesoftware federalreserve forbes hp ibm intellipedia internet larryellison layoffs linux loughridge mediawiki michaeljackson microsoft neverland nortel notebooks oil operatingsystem oracle palm rimm saas salesforce sap seagate socialcomputing sql sun sybase technologystocks virtualiron virtualization vmware wiki wikipedia xen yahoo zoho





