Link to home
Start Free TrialLog in
Avatar of davis
davisFlag for United States of America

asked on

Best method to migrate local data to external SCSI array?

We simply need to migrate (move) data from local drives on a server to an external array (connected to the same server).   The total amount of data is approx 600GB.  What is the best, comprehensive method to move the data to the SCSI connected array and retain security,integrity, etc?  

I suppose XCOPY is an option but there is likely a better solution.  Also, any pitfalls using XCOPY?

thanks for any insight!
ASKER CERTIFIED SOLUTION
Avatar of dooleydog
dooleydog

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
SOLUTION
Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America 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
SOLUTION
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
"Do you have a block of HOURS of downtime to do this?  If so, then XCOPY or ROBOCOPY should do fine.  Many people like Robocopy because it can retry files, but I dislike it because the retry is sequential, meaning if you set it to retry 10 times, it retries 10 times then moves on to the next file.  This retry would be a LOT better if it "marked the file" for retry and tried AFTER it backed up everything else - in that way it would give time for the file to be closed."

Actually, you can use the MIR switch with Robocopy...  You use the MIR switch with robocopy and copy the data to the new location during the day.  This copy will take a long time if you have GB's of data.  Then later, off hours, you can then re-run the Robocopy command with the MIR switch.  In a much shorter time frame, roboy copy will synch the target directory with the souce (deleting item in the target that might have been deleting by users during the day.. and adding new files or changed files).  This technique allows you to prestage your data... and then quickly synch the data at a later time.  (Note: during the second running of robocopy with the /mir switch, it is best to lock out users before running it...this ='s no locked files.  You can do this by changing permissions on the share.)

Fair enough - but I still think a retry as it is basically implemented is not very good.
With this much data, I would probably choose to do the backup method you mention anyway...
Avatar of davis

ASKER

Amazing feedback!  Got the answer and plenty more helpful info...

thanks