Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Generate Excel File after Data Extraction

    DECLARE @strsql NVARCHAR(255)

    set @strsql='namefile.xls'

    EXEC sp_makewebtask

    @outputfile =@strsql,

    @query = 'Select * from View1',

    @colheaders =1,

    @FixedFont=0,@lastupdated=0,@resultstitle='objecttitle:'

Viewing post 1 (of 1 total)