Řešení:
1) Chcete-li odstranit počet řádků („(139 dotčených řádků)“), měli byste použít SET NOCOUNT ON
tvrzení. Viz ref
.
2) Chcete-li odstranit záhlaví sloupců, měli byste použít -h
parametr s hodnotou -1
. Viz ref (část Možnosti formátování)
.
Příklady:
C:\Users\sqlservr.exe>sqlcmd -S(local)\SQL2012 -d Test -E -h -1 -s, -W -Q "set nocount on; select * from dbo.Account" > d:\export.txt.
nebo
C:\Users\sqlservr.exe>sqlcmd -S(local)\SQL2012 -d Test -E -h -1 -s, -W -Q "set nocount on; select * from dbo.Account" -o "d:\export2.txt"