-- fast way that relies on the internal data structure
SELECT cast( floor( cast( getdate() AS float ) ) AS datetime ) AS date_only
-- slower way that does not rely on internal data structure
SELECT convert( datetime, convert( nchar(10), getdate(), 126 ) ) AS date_only