Generar un archivo plano desde sql

Buenas alguien que me ayude por favor estoy intentando generar un archivo plano este es mi codigo.
alter PROCEDURE sp_consultarVendedorActivo
AS

DECLARE @NombreArchivo varchar(200)
DECLARE @sCommand varchar(8000)
--set @NombreArchivo = 'VendenActivos.cvc'
SET @sCommand = 'bcp "EXEC LAUMAYER.DBO.VENDEN" L:\TEMPORAL\Activos -S GEN-SERVER \ EMMSDE -t ~ -c -T'
EXEC xp_cmdshell @sCommand

--EXEC sp_consultarVendedorActivo

pero al ejecuatar la ultima linea me aparece este error
output
Copy direction must be either 'in', 'out' or 'format'.
usage: bcp {dbtable | query} {in | out | queryout | format} datafile
[-m maxerrors] [-f formatfile] [-e errfile]
[-F firstrow] [-L lastrow] [-b batchsize]
[-n native type] [-c character type] [-w wide character type]
[-N keep non-text native] [-V file format version] [-q quoted identifier]
[-C code page specifier] [-t field terminator] [-r row terminator]
[-i inputfile] [-o outfile] [-a packetsize]
[-S server name] [-U username] [-P password]
[-T trusted connection] [-v version] [-R regional enable]
[-k keep null values] [-E keep identity values]
[-h "load hints"] [-x generate xml format file]
[-d database name]
NULL

You need to parse "queryout" to bcp