Tagged Questions
The xp-cmdshell tag has no wiki summary.
5
votes
1answer
8k views
Getting execute permission to xp_cmdshell
I am seeing an error message when trying to execute xp_cmdshell from within a stored procedure.
xp_cmdshell is enabled on the instance. And the execute permission was granted to my user, but I am ...
3
votes
4answers
88 views
Run a console application from SQL Server after table update trigger asynchronously?
I am having trouble with finding the best way to solve my issue, please keep in mind I am open to better ways of going about this task.
What I need to do is, after a row's value in my table is ...
3
votes
3answers
359 views
Detect if bat file is running via double click or from cmd window
I have a bat file that does a bunch of things and closes the cmd window which is fine when user double clicks the bat file from explorer. But if I run the bat file from a already open cmd window as in ...
3
votes
5answers
104 views
I'm missing something
declare @servername varchar(2000)
set @EmriServerit=(select @@servername)
declare @dbname varchar(2000)
set @dbname ='Test1'
declare @Dir varchar(2000)
set @Dir='F:\dataclient.sql'
exec ...
2
votes
2answers
1k views
Microsoft SQL xp_cmdshell doesn't like filenames with spaces. Can I replace the space with something else?
I have this TSQL code that dumps data from tables using BCP. It looks complicated, but it simply creates a @command string to be executed once for each table, then BCP dump the table records to disk. ...
2
votes
2answers
663 views
Export registry in plain text format
My object is to export the Windows registry in txt format using a batch file.
If I use either of the following two lines from a batch file:
REG EXPORT C:\t.txt "HKEY_CURRENT_USER\Software"
REGEDIT ...
2
votes
3answers
624 views
Reading a text file with SQL Server
I am trying to read in a text file from an SQL query (SQL Server 2005) but am not having any luck at all. I've tried various things with EXEC and xp_cmdshell, but all aren't working. This is the ...
1
vote
1answer
87 views
permission was denied on the object xp_cmdshell
I am getting Execute permission was denied on the object 'xp_cmdshell'.
Here's the situation, I have a stored procedure called ExportFile.
I am calling the stored procedure via SqlCommand from a web ...
1
vote
1answer
64 views
Can a SSIS package called using xp_cmdshell enlist in a SQL Server transaction?
I have a very basic SSIS package with one data flow task (from an OLE DB Source to a Flat File).
The TransactionOption property is set to Required and I have tried the IsolationLevel option set ...
1
vote
0answers
148 views
Trying to delete folder contents using SQL Server 2008 R2
I am executing xp_cmdshell from the SQL query editor to delete a file in a folder but getting a two rows as result; the first row contains a message "The system cannot find the file specified." and ...
1
vote
2answers
109 views
How to run a Stored Procedure as Sysadmin?
I don't want to grant the user Sysadmin role.
Is there any way to run a specific stored procedure as Sysadmin or as a user that is sysadmin?
The stored procedure is in MSSQL 2005 and has xp_cmdshell
...
1
vote
1answer
96 views
Console app doesn't print when executing with xp_cmdshell under sql server agent proxy
I have a requirement to automatically print an ssrs report to a specific printer on the network whenever a new row is inserted into a database table. There is a trigger on the database table which ...
1
vote
2answers
3k views
How to break inner loop in nested loop batch script
MY goal is to compare two files line by line and capture the changes. For that i am using two nested loops. I am stuck with braking the inner loop on some condition.
I am using label outside the ...
1
vote
2answers
448 views
Store file output into variable
I want to store output of text file into a variable. So i can pass the whole file as parameter.
I am using windows 2003 server
The text files having multiple lines like
10.20.210.100 fish
...
1
vote
3answers
97 views
Problem in setting variables
I am using xp. I am facing problem in using Variables.
I am using following code
@echo off
set var = "srting"
When i check the value of var using %
set %var%
Environment variable %var% not ...
1
vote
1answer
256 views
tsql Loop with external query
I am looping through all my databases and aggregating the results into an aggregates database.
In my loop I call
master.dbo.xp_cmdshell osql C:\whatever.SQL
As the loop progresses, the cmdshell ...
1
vote
2answers
142 views
Check services at startup of SQL Server
I am trying to check the state of services when SQL Server is started. I am using xp_cmdshell and 'sc query SQLServerAgent | FIND "STATE"' for example to load the output to a global temp table. It ...
1
vote
2answers
350 views
What is wrong with this recursive Windows CMD script? It won't do Ackermann properly
I'm trying to get to calculate the Ackermann function. A description of what I'm trying to achieve is at http://rosettacode.org/wiki/Ackermann_function.
Using the test script, Test 0 4 gives me 5 ...
1
vote
4answers
1k views
CMD Script: How to close the CMD
I have created a small command that will let me launch Internet Explorer. However, I wish to close the small command prompt that shows up when I launch IE. How can I do this? This is my current code:
...
1
vote
4answers
441 views
Copy a file from one dir to another by date
I have this SQL Job (in SQL Server 2005) that creates a backup every six(6) hours, the backup's filename is based on the timestamp so that it will create a unique filename(dbname_yyyymmddhhmmss.bak), ...
0
votes
1answer
16 views
SQL Server 2000 xp_cmdshell
Using SQL Server 2000 I am trying to use this command in Query Analyzer
xp_cmdshell 'del c:\delete-me-file.txt'
and I'm getting this error:
Server: Msg 2812, Level 16, State 62, Line 1
Could ...
0
votes
0answers
22 views
Unable to excute a Third Party application in SQL Server 2008 on a Windows Server 2008
I need assistance with a problem which I've been struggling for 3 days now.
We have a C# sharp application which currently runs on a windows 2003 server within a SQL server 2005 environment using the ...
0
votes
2answers
83 views
how can i access a file/folder over network through XP_CMDSHELL in sql server 2008?
I am trying to access a folder/directory using 'EXEC MASTER..XP_CMDSHELL' it works for the local file/folder, how ever it can not access the folder over network.
EXEC MASTER..XP_CMDSHELL 'c:\Images' ...
0
votes
0answers
268 views
Access to the remote server is denied because the current security context is not trusted
When I execute the below stored proc I get an error:
ALTER PROCEDURE [dbo].[procExcelQuotebyItem]
(
@OrderNumber INT
)
WITH EXECUTE AS 'CSS\CS00SQL0004 SQL'
AS
BEGIN
SET NOCOUNT ON
DECLARE ...
0
votes
0answers
177 views
how to export sql data to txt file on another computer by xp_cmdshell
I want to export sql datas to a .txt file on another computer. The permission of that computer is everyone. But when I try to run my code :
exec master..xp_cmdshell 'bcp " SELECT [IPAddress]+ '' ...
0
votes
0answers
94 views
how to export data to .txt file with headers by xp_cmdshell
I want to export query result to a txt file with headers. Already I can export but without headers.
Here is my code:
exec master..xp_cmdshell 'bcp "select IPAddress,MACAddress,LeaseExpires from ...
0
votes
1answer
410 views
xp_cmdshell write file directory to a text file
how do I write my file directory to a text file? The directory I want to use is C:\
The code I have now is
exec xp_cmdshell 'dir *.exe & echo > file_directory.txt';--
It's not writing to a ...
0
votes
1answer
345 views
xp_cmdshell copy command seldom fails
I am running SQL Server 2005 on Windows Server 2003 machine.
I have a requirement to accumulate small text files into a bigger one.
So I use
exec xp_cmdshell @sql
where @sql=
'copy ...
0
votes
1answer
243 views
call xp_cmdshell with xml parameter
It was created console application that has two param: one is a command like "send" and second is a xml string like "<Messages><msg>My message</msg></Messages>". Console ...
0
votes
4answers
69 views
Problem in using variables
Actually I want to pas the content of txt file to if condition
I am trying the following
set /p var = < file name
if not %var% == “string” goto x else goto y
But it's not working .
When I ...
0
votes
1answer
638 views
Calling stored procedure from web application on UNIX throwing error on xp_cmdshell
Hey all, I'm pulling my hair out on this one.
I've checked all my permissions, on both the database server (SQL Server 2000) and the file system to ensure that what I am trying to do should be ...
0
votes
1answer
1k views
MS SQL 2000 - Parameters in DTSRUN using xp_cmdshell
I am running the following:
master..xp_cmdshell 'dtsrun /S ricmssql02 /U admindw /P letmein /N "scott - debug"'
but also send parameters. I am seeing the following to do that:
/A ...