Page 1 of 1

SYSTEM -S

Posted: Tue Mar 17, 2015 6:33 am
by GomezL
I had a project where I needed to Move a Large amount of Data to a new location.

We use Business Rules in Client Server monde on a Windows Server.

Sys -s Robocopy "F:\EDI_DATA\CLIENT_FOLDER\INCIDENT_NO" "F:\Purged_Incidents\INCIDENT_NO" /S /Move

The above command in BR Launches a Robocopy command, and moves data from the source to the destination.
Robocopy is the “Dos or System Command” to copy things quickly.

“-s” makes the command run on the server
/S = Subdirectories
/Move = Move (Delete original).

The end result is that the copy executed directly on the server, and ran very quickly!

Luis