Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: aaajjj
  • Content: Threads
  • Order by date
  1. aaajjj

    Question about Sql Procedure

    I have Db2 7.1 and the following script I try to execute CREATE PROCEDURE aaww() BEGIN DECLARE i INTEGER DEFAULT 1; ins_loop: LOOP IF i>100 THEN LEAVE ins_loop; ELSEIF i<=100 THEN ITERATE ins_loop; END IF; INSERT INTO TAB1 VALUES (i,'FIRST VALUES'); SET i = i + 1; END LOOP; END@ and...

Part and Inventory Search

Back
Top