- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Deliberately creating file fragmentation
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
11-06-2007 02:58 AM
11-06-2007 02:58 AM
Does anyone have a simple DCL script that I can use to create multiple file fragments on an ODDS-2 disk. We are wanting to run this on a scratch disk that we can test Raxco's PerfectDisk against. I saw something similar here a long time ago, but I have had no success in locating it so far.
Thanks.. John
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2007 03:14 AM
11-06-2007 03:14 AM
Solution$ open/wr l1 a.dat
$ open/wr l2 b.dat
$ i=0
$1:
$ i=i+1
$ write l1 "datensatz"
$ write l2 "datensatz"
$ if (i.lt.1000000) then $ goto 1
$ close l1
$ close l2
creates 2 interleaved files, can easily be extended...
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2007 03:54 AM
11-06-2007 03:54 AM
Re: Deliberately creating file fragmentation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2007 05:15 AM
11-06-2007 05:15 AM
Re: Deliberately creating file fragmentation
Which version of PerfectDisk and which platform are you doing your testing on?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2007 05:29 AM
11-06-2007 05:29 AM
Re: Deliberately creating file fragmentation
Check your cluster size.
Check the dis default extent
$ SET RMS/EXT=<1-cluster>
$ SET RMS/BLOC=<1/2 cluster>
Be sure to write/sym a good long string ( F$FAO(!1000*x) )
Add a 3rd file to be deleted to validate fragmented free space work.
Add still more files every so many records.
But really... how realistic will any such trivial test be? Can you clone a real application disk? Will files be opened/closed during defrag tests?
Cheers,
Hein.