patternsqlMinor
sqlcmd: no rows affected
Viewed 0 times
rowssqlcmdaffected
Problem
When I run
But when I run from
it returns as 0 rows affected.
What could be the problem?
exec dbo.subprogram from SQL Server Management Studio, it executes and returns result as many rows affected.But when I run from
cmd C:\Users\mssadmin>sqlcmd -S servername -d databasename -q "EXIT( exec dbo.subprogram)"it returns as 0 rows affected.
What could be the problem?
Solution
If you really want to return the number of rows, You need to create a text file A.SQL:
Because EXIT must be at the beginning of a line, so you can't use -Q. Then you call:
Then the returned values by EXIT will be in ERRORLEVEL... You can query with:
exec dbo.subprogram;
:EXIT(select @@rowcount)Because EXIT must be at the beginning of a line, so you can't use -Q. Then you call:
C:\> SQLCMD -S servername -d database -i A.SQL -o A.OUTThen the returned values by EXIT will be in ERRORLEVEL... You can query with:
C:\> ECHO %ERRORLEVEL%Code Snippets
exec dbo.subprogram;
:EXIT(select @@rowcount)C:\> SQLCMD -S servername -d database -i A.SQL -o A.OUTC:\> ECHO %ERRORLEVEL%Context
StackExchange Database Administrators Q#25786, answer score: 4
Revisions (0)
No revisions yet.