an extended stored procedure provided by SQL Server, which launches a Windows command shell to run a specified command.
I am trying to read in a text file from an SQL query (SQL Server 2005) but am not having any …
sql-server sql-server-2005 xp-cmdshellI am seeing an error message when trying to execute xp_cmdshell from within a stored procedure. xp_cmdshell is …
sql-server database xp-cmdshellI have been searching the web some and it seems like the only way to get the results from XP_…
sql-server stored-procedures xp-cmdshellI'm using xp_cmdshell within a database trigger to launch a exe file. xp_cmdshell is enabled(it can execute …
sql-server windows sql-server-2008 permissions xp-cmdshellI am trying to delete a file from a directory inside windows using the following query, exec xp_cmdshell 'del "…
sql sql-server xp-cmdshellHeyy, I'm trying to use BCP to export a SP result to a text file using this query: EXEC xp_…
sql bcp xp-cmdshellI am trying to move all .zip in a specific folder to another folder. the source folder is located on …
sql sql-server sql-agent-job xp-cmdshellI know this command will create a directory: EXEC master.sys.xp_create_subdir 'C:\testing\' But how do …
sql sql-server directory xp-cmdshellI've been trying to work on taking the result of a large and multiply-joined SELECT statement, and email the query …
sql sql-server-2008-r2 bcp xp-cmdshellI try to enable xp_cmdshell in SQL Server. So I ran: EXEC master.dbo.sp_configure 'show advanced options', 1 …
sql-server sql-server-2008-r2 xp-cmdshell