I was wondering if there is a way to get everything (all records) from a database? Then the user will have the option to save that file as an excel spreadsheet.
I was looking at DTS (data transformation service) is this the same thing?
Is there a specific query that can be sent through PHP to the database, would that be too much load on it?
I did some volume analysis and figured that the largest the database will ever get will be no more than 40mb.
So Ideally what I want to achieve is this.
- Query "get everything from database"
- My PHP "recieves query result"
- My PHP "transforms it into an excel file"
- Prompt user to save excel file
Is this possible?
Thanks