The process of decreasing the amount of fragmented files on a computer's system hard drive.
0
votes
2answers
57 views
Sequence Numbers in UDP
I was asked a interesting question relating to datagrams and how they are fragmented, namely what is used to re-assemble the original datagram.
I know the ID number in every fragment will be the ...
0
votes
2answers
115 views
IP Fragmentation and Reassembly
I am currently going through my networking slides and was wondering if someone could help me with the concept of fragmentation and reassembly.
I understand how it works, namely how datagrams are ...
0
votes
1answer
29 views
BY_HANDLE_FILE_INFORMATION structure
Does anybody know whether the BY_HANDLE_FILE_INFORMATION structure provided by Windows, is affected by a defragmentation of an NTFS disk?
...
0
votes
0answers
94 views
SQL Server 2012 defrag job runs interactively, but not as a job - why? [closed]
I have recently started using the dba_indexDefrag_sp stored procedure from SQL Fool (http://sqlfool.com/2011/06/index-defrag-script-v4-1/) against my production databases running on SQL Server 2012 ...
-1
votes
2answers
210 views
Windows defrag is not recognized as an internal or external command, operable program or batch file
I'm working on making a tech-toolkit program, and included in this 'toolkit' will be a button which runs a defrag on the local disk. Currently the batch file I've made for this is simple, it just runs ...
1
vote
1answer
81 views
VB.NET Defrag Complete Notification
Is there an event or other means by which a VB.NET program can be notified when a Windows 7 defrag has completed (so the program can instruct the PC to shut down)?
2
votes
3answers
183 views
Suppressing GC memory optimization
I'm writing a program that invokes multiple C based functions (p/Invoke) in multiple threads.
From time to time, the program crashes with a access violation error. My first thought was that the GC ...
1
vote
2answers
69 views
FSCTL_MOVE_FILE on Windows XP, System volume, FAT32
I am having a problem with defragmenting files on windows xp, fat32 system volume. I am not writing a defragmenter but instead a part of the solution requires a certain set of files to be laid out ...
0
votes
1answer
231 views
How to de-fragment docx files for using with Apache POI 3.8?
I'm trying to find & replace text passages in docx files with POI 3.8 like described here.
That works just fine if I insert my tags on the first run. But as soon as I re-open the docx file and do ...
1
vote
4answers
118 views
Efficient list compacting
Suppose you have a list of unsigned ints. Suppose some elements are equal to 0 and you want to push them back. Currently I use this code (list is a pointer to a list of unsigned ints of size n
for (i ...
2
votes
3answers
150 views
db4o Defragment deletes all objects in the database
I am using db4o 8.0.
The db4odatabase file size is 21MB.
The database has following Objects in it.
User : There is 1 user in db.
PostedMessage : There are 10000 postedMessages in db.
I delete all ...
0
votes
1answer
88 views
Defragmenting very large db4o database files
I have a very large ( 102gb ) db4o .yap file that i am trying to defragment. I keep getting a java heap space error. Is there something i can do to tweak the settings to prevent this? I am already ...
1
vote
0answers
72 views
oracle drop tables(~10GB) leads to disk fragmentation? [closed]
I strongly guess that disk is left in fragments after drop and is there any way to know about the disk state and any query to defragment/shrink the space?
any suggestions please
1
vote
1answer
213 views
How to prevent fragmentation of MySQL data files?
I think this question was asked many times, but searching for it I have found only some notes in some responses.
I know that files are generally handled by OS+filesystem, but there are (or should be) ...
2
votes
1answer
195 views
How can I avoid file fragmentation while writing hundreds of multi-megabyte files?
My question is similar to How to avoid hard disc fragmentation?, but I will be generating several hundred files per day that can range in size from 2 MB to 100+ MB (that questioner implied his files ...
0
votes
2answers
167 views
CRT memory allocation
Our application allocates large std::vector<> of geometric coordinates -
it must be a vector (which means contiguous) because it eventually sent to OpenGL to draw model.
And Open GL works with ...
4
votes
2answers
317 views
How to obtain DefragAnalysis using C#
I am currently developing an application in C# (.NET 4.0) that should have as a part of its functionality the ability to determine the percentage of fragmentation on a particular volume. All the ...
2
votes
1answer
127 views
Can defragmentation be done on a Knuth heap?
I am considering is it possible to eliminate external fragmentation on a Knuth memory heap? Before trying to solve this problem, I am not sure whether we can move blocks on a heap. If we can move ...
1
vote
1answer
273 views
Adding a DLL file as reference in C#.NET project
I am currently working on a project to perform disk defragmentation in Microsoft Windows environment. For that I want to use the in-built functions of the Windows defragmentation utility. I read ...
0
votes
1answer
130 views
Domino defrag - free version or paid [closed]
I've been using the free DominoDefrag tool available on openntf on a number of my companies servers and have had trouble free operation of the tool. We are upgrading servers to domino 8.5 and my boss ...
1
vote
3answers
418 views
Can't call defrag from perl script on Windows 2008
I would like to run a perl script that runs the defrag command on windows. When I try to just use
system("defrag C:");
I get "'defrag' is not recognized as an internal or external command,
...
0
votes
2answers
424 views
H2 Optimize select statement / shutdown defrag
Test Case:
drop table master;
create table master(id int primary key, fk1 int, fk2 int, fk3 int, dataS varchar(255), data1 int, data2 int, data3 int, data4 int,data5 int,data6 int,data7 ...
1
vote
1answer
348 views
Defrag indexes on very large production tables
I want to defrag indexes on a very large production table. This table is used by clients and the downtime will create a problem. What is th ebest methid to defrag indexes on such SQL server tables. If ...
0
votes
1answer
443 views
File System Filter Driver: Creating a Defragmenter
I've just started working on a file system filter driver that monitors for I/O writes to any file (listening for IRP_MJ_WRITE requests), and defragments the file transparently if it becomes ...
0
votes
1answer
602 views
What is the most efficient way to defragment a vmware virtual disk?
VM workstation offers an option to defragment a virtual disk. The underlying OS (in this case windows 7) also offers tools to defragment the host disk.
Is it necessary to perform both ...
0
votes
1answer
254 views
(SQL Server) How to defragment indexes with LOBs?
In SQL Server, are there some points on defragmenting indexes with LOBs? Such as text, ntext, image, varchar(max), nvarchar(max), varbinary(max), xml.
Thanks.
2
votes
2answers
214 views
(SQL Server) Why GUID or other random value as high-order key will cause fragmentation?
I'm watching Paul S Randal's index fragmentation video at here. In the video, Paul said that GUID or other random values as high-order key will cause page splits which in turn will cause index ...
4
votes
4answers
7k views
Reconstructing data from PCAP sniff
I am trying to sniff HTTP data through libpcap and get all the http contents (header+payload) after processing the TCP payload.
As per my discussion at ...
0
votes
1answer
305 views
Is defragging tough on replication?
I've been told that defragging causes the log to grow tremendously. Is this true? If so, is there something better to do than defragging that will not impact the log as much? We are running SQL ...
2
votes
1answer
219 views
Programatically determine a file's fragmentation status
Is it possible to determine a specific file's fragmentation status (that is, the amount of distinct fragments this file occupies)?
If so, how can this be done using .net?
The motivation is this: my ...
1
vote
2answers
2k views
How can I find information about a file from logical cluster number in NTFS/FAT32?
I am trying to defragment a single file through Windows defragmentation API ( http://msdn.microsoft.com/en-us/library/aa363911(VS.85).aspx ) but if there is no free space block large enough for my ...
3
votes
3answers
505 views
How does disk de-fragmenting work?
I'd like to have a go at writing something which shows the state of a hard drive in terms of how fragmented it is. Maybe even has a go at de-fragmenting it.
But I've realised that I don't fully ...
0
votes
2answers
231 views
Defragmenting SQL indexes
I have been trying to defrag indexes in SQL Server 2005 and nothing seems to work. I have created multiple Maintenance Plans using the wizard but the job always fails. I have run the script from ...
1
vote
1answer
95 views
Defragmenting Windows Drives as part of an NSIS installer script?
I need to install a piece of software with a lot of files. Our experience showed, that on highly fragmented hard drives that leads to very poor performance. So I want to include automatic disk ...
7
votes
5answers
2k views
Defragmenting C++ Heap Allocator & STL
I'm looking to write a self defragmenting memory manager whereby a simple incrementing heap allocator is used in combination with a simple compacting defragmenter.
The rough scheme would be to ...
2
votes
5answers
2k views
Logic in Disk Defragmantation & Disk Check
What is the logic behind disk defragmentation and Disk Check in Windows? Can I do it using C# coding?
10
votes
3answers
8k views
Mysql OPTIMIZE TABLE for all fragmented tables
Id like to run optimize on all currently framgmented tables. These tables should be those that have information_schema.DATA_FREE > 0.
Is it possible to optimize all tables with this property in one ...
0
votes
2answers
840 views
Move OS files to the begin of the disk
I would like to know if it's possible to move the files on a given partition to the begin of the disk, where the read/writes are faster.
I currently have Windows Vista installed on the first ...
17
votes
5answers
5k views
C++ Memory Management for Texture Streaming in Videogames
this is a "hard" question. I've found nothing interesting over the web.
I'm developing a Memory Management module for my company. We develop games for next-gen consoles (Xbox 360, PS3 and PC... we ...
2
votes
1answer
964 views
Should I drop and create indexes on my tables that SQL Server created?
In an effort to get rid of some fragmentation left from rebuilding and defraging
we thought that we would drop and create indexes so I went to write a script.
It identifies a clustered index that ...
0
votes
4answers
678 views
Windows disk partition gap
Windows XP Disk Defragmenter report shows a constant gap in disk usage on a number of disk partitions on my system. I'm not referring to the little transitory gaps that occur. In disk D below, the ...
2
votes
4answers
705 views
What is a good algorithm for compacting records in a blocked file?
Suppose you have a large file made up of a bunch of fixed size blocks. Each of these blocks contains some number of variable sized records. Each record must fit completely within a single block and ...