Thread Problem mit Filehandle. system: windows server 2003 (2 answers)
Opened by michaelf2050 at 2010-05-21 15:49

esskar
 2010-05-21 15:54
#137494 #137494
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
änder mal folgendes ab

in statusfiles
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
if(open FILE, '<' .$file)
{
        while (<FILE>) {
                if (/OFFLINE/) {
                        push @errors, "TABLESPACE OFFLINE ($!)\n";
                } else {
                        push @errors, "ALLE TABLESPACES ONLINE ($!)\n";
                }
        }
        close FILE;
} else {
        push @errors, "Datei der Datenbank '$file' konnte nicht geöffnet werden($!)\n";
}


und

in extent
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if(open FILE, '<' .$file) {
        while (<FILE>) {
                my ($datafile, $value)= split ';' , $_;
                if (my $value < "1") {
                        push @errors, "Es wurden $value extents in $datafile verursacht ($!)\n";
                } else {
                        push @errors, "es wurden keine extents verursacht ($!)\n";
                }
        }
        close FILE;
}
else {
        push @errors, "File $file konnte nicht geöffnet werden ($!)\n";
}

View full thread Problem mit Filehandle. system: windows server 2003