Viewing 15 posts - 16,531 through 16,545 (of 26,487 total)
Les Cardwell (3/15/2010)
March 15, 2010 at 11:44 am
Les Cardwell (3/15/2010)
March 15, 2010 at 11:42 am
Alvin Ramard (3/15/2010)
Anybody else see a problem with this statement?DECLARE @selectDate = getdate()-365
Yes, in SQL Server 2008 it is missing the data type. Should be:
DECLARE @selectDate datetime = getdate()...
March 15, 2010 at 11:31 am
When a process is sleeping it simply means this:
Sleeping - Currently running no requests
March 15, 2010 at 11:25 am
I think you are looking for a solution for a problem that doesn't exist.
March 15, 2010 at 11:20 am
bitbucket-25253 (3/15/2010)
Lynn Pettis (3/15/2010)
Grant Fritchey (3/15/2010)
Lynn Pettis (3/15/2010)
Grant Fritchey (3/15/2010)
GSquared (3/15/2010)
Grant Fritchey (3/15/2010)
Oh cool, tossed under another bus. Thanks Alvin.
What year? (My birthday was yesterday, so I'm curious as...
March 15, 2010 at 11:12 am
Ittech03 (3/15/2010)
client_id as Client,
ApplicantFullName as ClientName,
CounselorName as Counselor,
lastapptdatetime,
tdate,
TUDCounselor,
TDDate,
FUD1,
FUD2,
FUD3,
FUD11,
FUD21,
FUD31
From PDT_Counselor_CO_View
where coalesce (complete,0) <>1 or coalesce(tud,0) <> 1
and tdate >= dateadd(dd, datediff(dd, 0, getdate()) - 30, 0)
Order by client_id desc
This is...
March 15, 2010 at 10:32 am
Is the seek on the table or on the index? If you created the requested index on Col4 and included the columns Col1, Col2, Col3 it should be doing...
March 15, 2010 at 10:29 am
Mark-101232 (3/15/2010)
Try thisSELECT DATEDIFF(Year,(@BirthDate,@TargetDate) - CASE WHEN DATEADD(Year, DATEDIFF (Year, (@BirthDate, @TargetDate), (@BirthDate) > @TargetDate THEN 1 ELSE 0 END
Yes, this will work.
Different subject, like your tag line.
March 15, 2010 at 10:15 am
We found an inexpensive sslftp solution that we incorporated using an EXECUTE PROCESS TASK to handle our secure FTP task. Only requirement, we have to maintain that piece of...
March 15, 2010 at 10:11 am
GilaMonster (3/15/2010)
Lynn Pettis (3/15/2010)
Grant Fritchey (3/15/2010)
Lynn Pettis (3/15/2010)
Grant Fritchey (3/15/2010)
GSquared (3/15/2010)
Grant Fritchey (3/15/2010)
Oh cool, tossed under another bus. Thanks Alvin.
What year? (My birthday was yesterday, so I'm curious as...
March 15, 2010 at 10:06 am
March 15, 2010 at 9:55 am
Grant Fritchey (3/15/2010)
Lynn Pettis (3/15/2010)
Grant Fritchey (3/15/2010)
GSquared (3/15/2010)
Grant Fritchey (3/15/2010)
Oh cool, tossed under another bus. Thanks Alvin.
What year? (My birthday was yesterday, so I'm curious as to what the...
March 15, 2010 at 9:51 am
Grant Fritchey (3/15/2010)
GSquared (3/15/2010)
Grant Fritchey (3/15/2010)
Oh cool, tossed under another bus. Thanks Alvin.
What year? (My birthday was yesterday, so I'm curious as to what the actual age difference is.)...
March 15, 2010 at 9:35 am
Viewing 15 posts - 16,531 through 16,545 (of 26,487 total)