Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^4: DBI error ... forty-eight

by Khen1950fx (Canon)
on Jul 31, 2011 at 22:13 UTC ( [id://917732]=note: print w/replies, xml ) Need Help??


in reply to Re^3: DBI error ... forty-eight
in thread DBI error ... forty-eight

In a nutshell: Sparse file.

After you read that, try this script to check whether a file is sparse or is not sparse:

#!/usr/bin/perl use strict; use warnings; my $file = shift @ARGV; my(@status) = stat $file; print "\n"; if ( $status[7] > ($status[12] * 512) ) { print "$file is sparse\n\n"; } else { print "$file does not appear to be sparse\n"; } system("du -hS --apparent-size $file"); system("du -hS $file"); print "\n";
The apparent-size file will usually be lt than the actual-size. If the apparent-size is gt the actual-size, that might be a sign that something's wrong.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://917732]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (2)
As of 2024-04-26 01:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found