Link to home
Start Free TrialLog in
Avatar of nhawkinsVA
nhawkinsVA

asked on

What is the easiest way to move 2 TB of data between partitions?

I have a Server 2003 R2 Standard app server running.  I know this is far from ideal but we currently have a 2TB external drive connected as the E: for archiving.  We are trying to simply make it work for a few more months until we are ready to P to V but the current 2TB drive is full.

I have a new WD 8TB, Raid 5 external drive that I need to copy everything over to.  Would I be better off connecting the new drive to the old one and copying it over or should I go ahead and connect the new drive to the server and copy it over through the box?

Also, in a scenerio like this, do I need to use Robocopy to pull it over or should I be OK just letting Windows copy it?  Either way, I think it is going to take awhile.
Avatar of Irwin W.
Irwin W.
Flag of Canada image

Robocopy is a better option. It has logging capabilities. It also so has many other switches for options like long filenames etc.
Do it through the server, and do NOT use Windows Explorer to do the copy ... use RoboCopy, SyncBack, or any other utility that is "error friendly."     Windows' built-in copy (via Explorer) will abort the copy if it encounters ANY error ... and there's no way to pick back up where it left off.     RoboCopy, SyncBack, etc. won't abort on an error -- and even if they did, they will continue the copy from where it was when you restart it.

... as for "... I think it is going to take awhile ..."   ==>  Yes, it will indeed take a LONG while :-)     [Do this overnight]       Just how long depends on whether these are connected via a gigabit network, a 100mb network, USB, eSATA, etc.     But it's MANY hours in any event ... probably more than a day if it's USB or a 100mb network.
ASKER CERTIFIED SOLUTION
Avatar of Irwin W.
Irwin W.
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Robocopy is the right way.
Avatar of nhawkinsVA
nhawkinsVA

ASKER

Thanks!