Viewing 15 posts - 1,036 through 1,050 (of 1,988 total)
September 8, 2017 at 1:03 pm
From a hardware perspective as long as I have reasonable processing power on my laptop(retail mine is less $400 and works fine i'm also sure my company got some kind...
September 8, 2017 at 8:33 am
August 31, 2017 at 9:33 am
What staggered me at my last two companies was that four graduates that...
August 31, 2017 at 7:36 am
August 30, 2017 at 12:11 pm
Heh.. you posted this in the 2012 forum as well, i though i responded there. It looks like there's an answer there that'll work in 2008 as well.
August 30, 2017 at 9:14 am
What about this?
select id ,Doctype, [DocName] , min(priority) PRIO,max(startdate) STDT , LAST_DOC.LAST_DOC
from #t
CROSS APPLY(
SELECT LAST_VALUE(FinalDOC) OVER(PARTITION BY id,Doctype, [DocName] ORDER BY [priority]...
August 30, 2017 at 8:55 am
I would not put up my personal money for anything outside of maybe incidental costs like food, anything like hotels, plane tickets, software trials etc..... should be put on a...
August 29, 2017 at 9:51 am
Wwhat about this?
WITH TEMP_CTE AS(
SELECT ID, ProductCode, Quantity - 1 AS Quantity FROM Test
UNION ALL
SELECT ID, ProductCode, Quantity - 1 FROM...
August 25, 2017 at 1:57 pm
August 25, 2017 at 12:33 pm
You should be able to take this out altogether.
WHERE Invoice.InvoiceDate BETWEEN @StartDate AND DATEADD(MS, -1, DATEADD(D, 1, CONVERT(DATETIME2, @EndDate)))
Your temp table already controls the filtering as it's already populated with the date range you...
August 25, 2017 at 11:21 am
August 25, 2017 at 9:48 am
vincentshanecurtis - Thursday, August 24, 2017 11:42 AMFuck off all of you
Let me guess, you also can't figure out how to turn...
August 24, 2017 at 12:04 pm
Viewing 15 posts - 1,036 through 1,050 (of 1,988 total)