Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: What's Your Backup Speed?

    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...

  • RE: Aliasing a FOR XML PATH result

    /* If you're using SQL2005+ you could try something this */

    ;

    WITH CTE ( Test )

    AS ( SELECT Names

    ...

  • RE: Number of clients per week on average during year

    [font="Courier New"]/* Perhaps you could try something like this - using a Calendar table ? */

    ;

    WITH DailyClientCount

    AS ( SELECT CT.[Date]...

  • RE: Script to get CPU usage

    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,...

  • RE: Dealing with charindex output

    /* If I understand correctly, this may produce the desired result */

    UPDATE @TableA

    SET Clean_City = B.output_city

    FROM @TableA AS A

    ...

Viewing 5 posts - 1 through 5 (of 5 total)