SYSTEM -S

More advanced topics discussed.

Moderators: Susan Smith, admin, Gabriel

Post Reply
GomezL
Posts: 258
Joined: Wed Apr 29, 2009 5:51 am
Contact:

SYSTEM -S

Post 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
Post Reply