Ver Mensaje Individual
  #6 (permalink)  
Antiguo 19/10/2009, 10:56
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 19 años, 4 meses
Puntos: 39
Respuesta: insertar datos de consulta de sql a un txt

Prueba asi:
Código sql:
Ver original
  1. DECLARE @FileName VARCHAR(50),
  2. @bcpCommand VARCHAR(2000)
  3.  
  4.  
  5. SET @FileName = 'c:\PRUEBA_' + CONVERT(CHAR(8),GETDATE(),10) + '.txt'
  6.  
  7.  
  8. SET @bcpCommand = 'bcp "SELECT * FROM db.dbo.TB" queryout "'
  9. SET @bcpCommand = @bcpCommand + @FileName + '" -c -T -S servidor\instancia -U usuario -P pass '
  10.  
  11.  
  12. EXEC master.dbo.xp_cmdshell @bcpCommand
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.