The best way to strip the time portion from a datetime is like this:
cast(current_timestamp as date)
I used to use and advocate a process that looked like one of the following two lines:
cast(floor(cast(getdate() as float)) as datetime)
dateadd(dd,0, datediff(dd,0, getDate()))
But now that Sql Server has the Date type, which does not hold a time component, there is little reason to use either of those techniques.
One more thing to keep in mind here is that this is still going to bog down a query if you need to do it for two datetime values for every row in a where clause or join condition. If possible you want to factor this out somehow so that it's pre-computed as much as possible, for example using a view or computed column.
Finally, note that the DATEDIFF function compares the number of boundaries crossed. So the datediff in days between '2009-09-14 11:59:59' and '2009-09-15 00:00:01' is 1, but the DATEDIFF in days between '2009-09-15 00:00:01' and '2009-09-15 11:59:59' is still zero. Note that it doesn't really care at all about the time portion there. Depending on what your query is trying to do, you might be able to use that to your advantage.
DATEDIFF, then see if it's a bottleneck or not be examining the query plan. If it's a problem, seek an alternative. – Welbog Sep 15 '09 at 14:21