主题:请教大侠们:谁会用sql中的master..xp_cmdshell存储过程?
我想将sql中查询到的数据转存为txt文件。
EXEC master..xp_cmdshell 'bcp "SELECT au_fname, au_lname FROM pubs.authors" queryout C:\authors.txt -c -q -Sservername -Usa -Ppassword'
可是执行后,提示‘pubs.authors对象无效。’
有什么办法吗?
EXEC master..xp_cmdshell 'bcp "SELECT au_fname, au_lname FROM pubs.authors" queryout C:\authors.txt -c -q -Sservername -Usa -Ppassword'
可是执行后,提示‘pubs.authors对象无效。’
有什么办法吗?