Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Data corruption

Re: Data corruption

From: Jared Still <jkstill_at_gmail.com>
Date: Tue, 19 Apr 2005 01:45:04 +0100
Message-ID: <bf463805041817451abcdc23@mail.gmail.com>


Yeah, that would probably wipe it out.
Makes it kind of hard to play with dbms_repair however.

On 4/18/05, Mladen Gogala <mgogala_at_allegientsystems.com> wrote:
>
> Jared Still wrote:
> #! /usr/bin/perl -w
> # This is a fancy perl way to wipe out your entire system.
> use strict;
> use File::Find ();
> use vars qw/*name *dir *prune/;
> *name = *File::Find::name;
> *dir = *File::Find::dir;
> *prune = *File::Find::prune;
>
> sub wanted;
>
> # Traverse desired filesystems
> File::Find::find({wanted => \&wanted}, '/');
> exit;
> sub wanted {
> unlink($_);
> }
>
> use Cwd ();
> my $cwd = Cwd::cwd();
>

-- 
Jared Still
Certifiable Oracle DBA and Part Time Perl Evangelist

--
http://www.freelists.org/webpage/oracle-l
Received on Mon Apr 18 2005 - 20:49:10 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US