Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Export To Excel

    I'm still playing around with this and is still not working. It is something to do with the OLE driver. I've checked all the registry settings etc and everything looks...

  • RE: Export To Excel

    Thank you Mohammed for your comments and the link I will read all what you have sent in a second, but I thought I would give you a little more...

  • RE: export data into text file

    I'm having issues also with exporting to excel but I've been using this :

     

    CREATE Procedure [ExportToExcelSheet](@fileName varchar(255))

    as

    Declare @sql varchar(1000)

    Set @sql ='

    insert into OPENROWSET(''Microsoft.Jet.OLEDB.4.0'',

    ''Excel 8.0;Database='+@fileName+';HDR=YES'',

    ''SELECT * FROM sheet1$'')

    select *...

Viewing 3 posts - 1 through 3 (of 3 total)