Help for this page

Select Code to Download


  1. or download this
          if ($line !~ m/ALTER\sPROCEDURE\s/){
        #do nothing
    ...
          else {
        goto here;
          }
    
  2. or download this
          if ($line =~ m/ALTER\sPROCEDURE\s/) {
             last;
          }