Viewing 5 posts - 1 through 5 (of 5 total)
Thanks so much! For some reason the default showed as black in the options even though it was teal which is why I missed it. I explicitly set...
January 9, 2014 at 8:36 am
I'm not sure how your SSIS package is set up, but you can get that with a query using CROSS JOIN:
SELECT *
FROM (
SELECT DISTINCT Date
...
July 10, 2013 at 6:06 pm
Sure, here it is:
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86)
May 3 2005 23:18:38
Copyright (c) 1988-2003 Microsoft Corporation
Enterprise Edition on Windows NT 5.2 (Build 3790: Service...
February 4, 2009 at 9:16 am
Hi All,
The WITH RECOMPILE didn't seem to help, but I moved my parameters into local variables and (Woohoo!) it's running fast!
Thanks for all of your help! I really appreciate...
February 4, 2009 at 8:57 am
Here is the procedure:
CREATE PROCEDURE usp_NetCollectedByCollector (
@Merchant_ID char(5) = NULL,
@BegDate datetime = NULL,
@EndDate datetime = NULL,
@User_IsCollectionsRep bit = NULL
)
AS
DECLARE @CurrDate datetime
SET @CurrDate = Convert(varchar(32),getdate(),101) + ' 00:00:00'
IF @EndDate IS NULL
IF...
February 4, 2009 at 7:51 am
Viewing 5 posts - 1 through 5 (of 5 total)