Output result of query to existing file
am 09.05.2007 10:07:05 von mamin
Hi,
I need to output result of my query to txt file. So I'm using -o
parameter, for example:
osql.exe -s (local) -d database1 -U sa -P sa -i 'c:\\queryFile.sql' -o
'c:\\output.txt'
But it clears existing output.txt file first and then outputs the
result, while I need to append the result of my query without clearing
existing file content. Is it possible ?
Re: Output result of query to existing file
am 10.05.2007 00:17:01 von Erland Sommarskog
(mamin@o2.pl) writes:
> I need to output result of my query to txt file. So I'm using -o
> parameter, for example:
>
> osql.exe -s (local) -d database1 -U sa -P sa -i 'c:\\queryFile.sql' -o
> 'c:\\output.txt'
>
> But it clears existing output.txt file first and then outputs the
> result, while I need to append the result of my query without clearing
> existing file content. Is it possible ?
Use >>, the standard append operator in the command-line environment.
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downlo ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books .mspx