Viewing 5 posts - 1 through 5 (of 5 total)
Jeff Moden (3/6/2009)
March 10, 2009 at 8:27 am
andrewd.smith (3/6/2009)
I did a DATEADD function to add 86399 seconds to the dates, making them the equivolent of 23:59:59, since that seemed to me to be the easiest way to...
March 6, 2009 at 2:21 pm
An internal solution to our problem was found. Below is the code we used...
Thanks for everyone's help!
DELETE FROM DELRCRD
FROM ReportingTable DELRCRD JOIN
(SELECT REVIEWID, MAX(LOCALRVWUDATE) AS MAX_DATE FROM ReportingTable
GROUP BY...
February 10, 2009 at 8:01 am
I think this willl work. The code design has been kept true to its original state.
DECLARE @RPTStart INT, @RPTEnd INT, @LOC CHAR(50)
Set @RPTStart = 1090101
Set @RPTEnd = 1090131
Set @RPTStart...
February 4, 2009 at 1:07 pm
Luke L (2/2/2009)
First, I'd have a talk with the dev team for the front end. Perhaps this...
February 4, 2009 at 12:18 pm
Viewing 5 posts - 1 through 5 (of 5 total)