Viewing 5 posts - 1 through 5 (of 5 total)
Thanks, I had not found that one. I did read this one as well:
http://support.microsoft.com/kb/828526
But I'm not knowing how to plug the rows and columns into the equation, and...
May 15, 2012 at 12:28 pm
Thanks Daniel,
I would like to be able to use a calculation in a report textbox. The main problem I'm having right now is the Excel GROWTH formula. I've not found...
May 15, 2012 at 10:00 am
Seems the left out rows problem may have been an SP issue. When experiencing the missing row problem we were running SP1. Since we have installed SP3 (SMS 2008), we...
January 25, 2012 at 10:09 am
Is this because SQL Server stores dates as a numeric value? Then CONVERT to VARCHAR() would cause an implicit conversion?
April 8, 2010 at 1:58 pm
I frequently use SELECT CAST(FLOOR(CAST(<yourDateHere> AS FLOAT)) AS DATETIME)
Interestingly, rounding happens near midnight. The following returns '2010-04-08 00:00:00.000':
DECLARE @Date DATETIME = '2010-04-07 23:59:59.999'
SELECT CAST(FLOOR(CAST(@Date AS FLOAT)) AS...
April 7, 2010 at 10:33 am
Viewing 5 posts - 1 through 5 (of 5 total)