Viewing 15 posts - 826 through 840 (of 5,590 total)
I'll be up in the Boston area (Dedham) this weekend... any Threadizens up that way want to get together? Maybe lift a cold one somewhere?
June 26, 2012 at 8:38 am
Sorry for the late response... I'm just getting caught up on some newsletters where I've been too busy to read.
I think that you did a great job in this article,...
June 23, 2012 at 9:31 pm
L' Eomot Inversé (6/20/2012)
June 23, 2012 at 11:21 am
Brandie Tarvin (6/19/2012)
WayneS (6/19/2012)
Brandie Tarvin (6/19/2012)
June 19, 2012 at 1:13 pm
Brandie Tarvin (6/19/2012)
June 19, 2012 at 9:33 am
Stefan Krzywicki (6/18/2012)
WayneS (6/18/2012)
Me, your humble dba, from out of the...
June 19, 2012 at 9:30 am
Evil Kraig F (6/18/2012)
WayneS (6/18/2012)
June 18, 2012 at 6:26 pm
Ladies, Gentlemen, and Threadizens of all shapes and sizes! Come one, come all for the latest news of the day!
Me, your humble dba, from out of the blue, happened to...
June 18, 2012 at 6:15 pm
Thank you Patrick... It is due to responses like yours that makes me want to do this.
June 18, 2012 at 5:58 pm
June 15, 2012 at 11:58 am
Stefan Krzywicki (6/15/2012)
Did you see the most recent Star Trek movie?
I hope so, but you have me wondering... I show it as "upcoming"... are you seeing it somewhere?
June 15, 2012 at 10:32 am
10 billion rows... very impressive.
So, let's take a look at your where clause:
WHERE T1.REC_CODE <> 'O' AND T6.ENGINE_TYPE = 'J'
T6 = CAEP9_NOISE_STRINGENCY_ROUND2_S5.dbo.AIRCRAFT_REPLACEMENT_2020_05, and you're doing a table scan on...
June 14, 2012 at 9:38 am
Okay, I missed the "simple" ... I think Jared has it.
June 13, 2012 at 2:20 pm
INSERT INTO #Backups
([CalendarDate], [ServerName], [DBName], [RecoveryModel], [IsTlogShipped])
SELECT TOP
(DATEDIFF(DAY,CONVERT(VARCHAR,@FirstBackupDate,102),GETDATE()) + 1) DATEADD(DAY,ROW_NUMBER() OVER (ORDER BY [CalendarDate]) -1, @FirstBackupDate) AS [CalendarDate]
,@ServerName
,@DBName
,'D'
,@IsTlogShipped
FROM [dbo].[Calendar]
WHERE @RecoveryModel IN ('D','L')
UNION ALL
SELECT TOP
(DATEDIFF(DAY,CONVERT(VARCHAR,@FirstBackupDate,102),GETDATE()) + 1) DATEADD(DAY,ROW_NUMBER()...
June 13, 2012 at 2:05 pm
Lynn Pettis (6/13/2012)
WayneS (6/13/2012)
... Actually, I just plain forgot to remove it. I think they...
June 13, 2012 at 12:49 pm
Viewing 15 posts - 826 through 840 (of 5,590 total)