Help for this page

Select Code to Download


  1. or download this
    if($name =~ /^[a-z0-9_]$/i && $name !~ /^(?:master|model|dbccdb|sybsec
    +urity|sybsystemdb|sybsystemprocs|tempdb|DBA)$/)
    {
      print "allowed\n"
    ...
    {
      print "not allowed\n"
    }
    
  2. or download this
    if($name =~ /^(?!(master|model|dbccdb|sybsecurity|sybsystemdb|sybsyste
    +mprocs|tempdb|DBA)$)(^[a-z0-9_]+$)/i)
    {
    ...
    {
      print "not allowed\n"
    }