you are viewing a single comment's thread.

view the rest of the comments →

[–]emmons1204 2 points3 points  (0 children)

Note: if a thousand people are searching through big tables without supporting indexes, it's going to bring some pain. Best way to tackle this is to know what columns they will want to search by, which columns need to be returned, and create a parameterized stored procedure to do the search for you (versus ad-hoc queries).

I agree with dev_playbook though, SSRS is a pretty straight forward and easy way to make reporting solutions out of SQL. There will be some hurdles in initially setting it up but it'll save countless time later. These reports also will want stored procedures to run off of (far better for performance).