Help for this page

Select Code to Download


  1. or download this
    create_profile( $dbh, $profile_ref )
    
  2. or download this
    my $profile_ref ={
                            PROFILE_NAME => "test_profile",
    ...
        PRIVATE_SGA => "UNLIMITED",
        PASSWORD_LIFE_TIME => "90"
        };
    
  3. or download this
    sub create_profile()
    {
        my ($dbh, $profile_specs_ref) = @_;
        my ($sql, $key, $value);
            my %profile_specs = %{$profile_specs_ref};