Viewing 5 posts - 1 through 5 (of 5 total)
20-mins (190GB in 221s @ 880MB/s - my Client's most important database)
Windows Server 2008 R2 Enterprise x64 (VM 4vCPU 14GB)
SQL Server 2008 R2 Enterprise x64
Native backups via Ola Hallengren
Compression
Checksum
8-stripes
BufferCount 64
Blocksize...
November 4, 2016 at 5:40 am
/* If you're using SQL2005+ you could try something this */
;
WITH CTE ( Test )
AS ( SELECT Names
...
January 17, 2013 at 6:07 am
[font="Courier New"]/* Perhaps you could try something like this - using a Calendar table ? */
;
WITH DailyClientCount
AS ( SELECT CT.[Date]...
June 8, 2012 at 10:57 am
Just an idea, if you can live with the loss of precision, you could try dividing both @ts_now and [timestamp] by 1000 inside the [number] argument of the DATEADD function,...
March 30, 2012 at 2:50 am
/* If I understand correctly, this may produce the desired result */
UPDATE @TableA
SET Clean_City = B.output_city
FROM @TableA AS A
...
September 23, 2010 at 6:01 am
Viewing 5 posts - 1 through 5 (of 5 total)