Viewing 3 posts - 1 through 3 (of 3 total)
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...
March 31, 2007 at 6:04 am
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...
March 30, 2007 at 4:39 am
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 *...
March 29, 2007 at 5:14 pm
Viewing 3 posts - 1 through 3 (of 3 total)