首页 > 代码库 > sql server在使用xp_cmdshell

sql server在使用xp_cmdshell

一、sql server在使用xp_cmdshell读取远程服务器上的文件时,要先将远程服务器的目录映射到本地

代码:

exec master..xp_cmdshell  ‘net use P: \\192.0.0.1\c$\ psw /user:username‘

原来C盘的文件就已经映射到本地的P盘了

sql server在使用xp_cmdshell