Viewing 3 posts - 1 through 3 (of 3 total)
The code in my previous post will also strip off the time 😉
December 2, 2009 at 6:01 am
#1086403
The other question is why use more variables and code than needed?
DECLARE @d SMALLDATETIME
SELECT DATEADD(mm, DATEDIFF(mm, 0, ISNULL(@d, GETDATE())), 0)
SELECT DATEADD(d, -1, DATEADD(mm, 1 + DATEDIFF(mm, 0, ISNULL(@d, GETDATE())),...
December 1, 2009 at 1:10 pm
#1086070
Thanks for the reply. No, this is not a named instance. I'm just trying to remotely connect to SSAS on another server. I guess that is just...
May 11, 2009 at 1:06 pm
#992395