Help for this page

Select Code to Download


  1. or download this
    export NLS_LANG='AMERICAN_AMERICA.AL32UTF8'
    
  2. or download this
    unset NLS_LANG
    
  3. or download this
    my @arr=( "abc","efg","hij" );
     
    ...
            ora_type => ORA_VARCHAR2_TABLE,
            ora_maxarray_numentries => 100
    } ) ;
    
  4. or download this
    my @arr;  
    push @arr, "abc";
    ...
            ora_type => ORA_VARCHAR2_TABLE,
            ora_maxarray_numentries => 100
    } ) ;
    
  5. or download this
    PLS-00382: expression is of wrong type
    ORA-06550: line 2, column 11:
    ...
    PL/SQL: SQL Statement ignored (DBD ERROR: error possibly near <*> indi
    +cator at char 49 in 'declare
      tbl_src SYS.DBMS_SQL.VARCHAR2_TABLE := <*>:id;
    ...
    
  6. or download this
    $VAR1 = [
              'abc',
    ...
    Result: cc=
            arr=$VAR1 = [];
    
  7. or download this
    #!/usr/local/bin/perl
    
    ...
    
    exit 0;