the simplest way to do it is to run SELECT statement against your table or query and copy/paste results to excel.or you can export a table to excel using EXPORT.or you can even DTS package to save your data to excel.or you can write query to store data in excel using INSERT INTO OPENROWSET:insert into openrowset('Microsoft.Jet.OLEDB.4.0','excel 9.0;Database=C:\test.xls;','select column1,column2,column3 from [Sheet1$]')select column1, columns2, column3 from MyTable