Viewing 15 posts - 496 through 510 (of 4,820 total)
What do computers and rapper, fifty cent have in common?
2 bits = 50 cents
October 4, 2018 at 12:00 pm
October 4, 2018 at 11:57 am
October 4, 2018 at 11:44 am
October 4, 2018 at 11:37 am
Well, if you think that spilling 3 months of data into tempdb to begin with is better, try it... I'm not sure that's the case. A lack of indexes is...
October 4, 2018 at 11:28 am
October 4, 2018 at 11:06 am
Without knowing why they wanted a Linked Server in the first place, I'd resist creating a 2nd one. What are they doing with it? What SQL instances do the reporting...
October 4, 2018 at 10:21 am
The problem is GETDATE(). It's not going to return the first of the month. Try this:
DECLARE @Today AS date = GETDATE();
DECLARE @FirstOfTheMonth AS date = DATEFROMPARTS(YEAR(@Today), MONTH(@Today),...
October 4, 2018 at 9:57 am
October 4, 2018 at 9:46 am
October 4, 2018 at 8:30 am
So what's stopping you from using two columns instead of just one, and not wasting an additional column at all ?
October 4, 2018 at 7:49 am
Viewing 15 posts - 496 through 510 (of 4,820 total)