On a large data set, is there any performance advantage to having a view on the server apply some filtering isntead of have the report do it?
For example, table S contains two years of services. I put in the report
Tweak a column width, and click preview and wait two or three minutes to see the effect.
I'm patient--I only have to get it right once. But the users will be looking at it weekly, and they are not geeks, so it must be very friendly.
--
Wes Groleau
For example, table S contains two years of services. I put in the report
Code:
SELECT * FROM S
WHERE GETDATE() - Date_Of_Service < 30
I'm patient--I only have to get it right once. But the users will be looking at it weekly, and they are not geeks, so it must be very friendly.
--
Wes Groleau