Nov 16, 2004 #1 eja2000 Programmer Nov 30, 2003 209 NG how can i copy files across the network from one PC to another using TSQL? Thanks
Nov 16, 2004 #2 mrdenny Programmer May 27, 2002 11,595 use xp_CMDShell to run copy. For Example: Code: xp_CMDShell 'copy c:\autoexec.bat \\server2\c$\autoexec.bat' Denny --Anything is possible. All it takes is a little research. (Me) Upvote 0 Downvote
use xp_CMDShell to run copy. For Example: Code: xp_CMDShell 'copy c:\autoexec.bat \\server2\c$\autoexec.bat' Denny --Anything is possible. All it takes is a little research. (Me)