- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- detect sparse files
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 05:25 AM
08-31-2012 05:25 AM
detect sparse files
hello,
due to my thread copy a filesystem best solution (local host or remote host) i have a question about sparse files.
how can i find a sparse file ?
i am read following links :
Sparse files – what, why, and how
Oracle tempfile on linux is using sparse file by default
and found following perl script :
i test the perl and it works for Linux not for HP-UX. i think the check depends on the blocksize of a directory or filesystem ?
we changed the script to
printf "blksize: $blksize \n"; my $blocks_used=$blocks*$blksize/8;
because the $blksize is defined in Bit .
i made tests for HP-UX and Linux , the sparse will point out in every OS.
Also the Oracle Datafiles , which i think is true ?
in the attachments are the tests and the changed perl ( i add with extension '.sh' please change it to '.pl' , when you download it)
regards,tpl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2012 08:25 AM
09-05-2012 08:25 AM
Re: detect sparse files
the checks are for all files right, but only oracle files shows difference.
i know the oracle temporary file is a sparse file, but the other once ?
some info :
How to Check Sparse Files with Perl
Sparse files/file holes and unexpected block size
How to deal with sparse files (ORACLE)
the tests :
HP-UX
$ ls -l sparse
-rw-r----- 1 root sys 2147483679 Aug 28 08:57 sparse
$ du -k sparse
8 sparse
OK:OK:OK:OK:
$ ./checksparse.pl sparse
blksize: 8192
sparse => size: 2147483679 actual space used: 8192
Linux
OK:OK:OK:OK:
$ ls -alsh sparse checksparse.pl
4.0K -rwxr-xr-x 1 root root 815 Aug 28 13:59 checksparse.pl
12K -rw-r--r-- 1 root root 2.1G Aug 28 09:00 sparse
$ ./checksparse.pl sparse
blksize: 4096
sparse => size: 2147483726 actual space used: 12288
ls -alsh /oracle/db
total 29G
1.0K drwxr----- 3 ora102 dba 1.0K Jul 31 20:32 .
4.0K drwxr-xr-x 4 root sys 4.0K Jul 24 13:10 ..
2.1G -rw-r----- 1 ora102 dba 2.0G Sep 5 09:05 ORCL_df02_00.dbf
2.6G -rw-r----- 1 ora102 dba 2.5G Sep 5 09:05 ORCL_df01_00.dbf
239M -rw-r----- 1 ora102 dba 1.5G Aug 29 22:14 ORCL_dftemp_00.dbf
OK:OK:OK:OK: ???????????????????????????????
./checksparse.pl /oracle/db/
blksize: 1024
/oracle/db/ORCL_df01_00.dbf => size: 2682273792 actual space used: 673198592
/oracle/db/ORCL_df01_00.dbf => size: 2145402880 actual space used: 538454528
/oracle/db/ORCL_dftemp_00.dbf => size: 1608531968 actual space used: 62437888
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2012 07:32 AM
09-10-2012 07:32 AM
Re: detect sparse files
i have now the reason of "sparse files" from oracle database filesystems
the oracle database has a defined block size and oracle administrate the block management in other block size than the
file system.
Analyze:
oracle-user:
Connect again the oracle database and check the oracle block size.
When you install a database, you define the oracle block size, this size is the whole store management of the database.
You can also define with new oracle rdbms releases for some tablespaces other block size ….
sqlplus ´ / as sysdba´
SQL> show parameters block_size
NAME TYPE VALUE
------------------------------------ ----------- ------------
db_block_size integer 16384
the size ist 16 KB !
root-user:
So i change the blksize ( to the oracle block size) in checksparse.pl and i get the right results.
I append it as attachment (oracle temporary files are sparse files !!)
When you check files of oracle databases , you must know the block_size of the oracle database !
The block size of the filesystem must not the block size of the files of the oracle database !
regards