Forum Replies Created

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

  • RE: SQL Battleship

    Great Script and has a lot of features that new SQL developers can use as a learning tool.

    First Game: Loss in 34 shots. But I was hunting down my last...

  • RE: Aggregate/Group Query with CASE

    Why dont you just do it as a sub query?

    DECLARE @StartYear CHAR(4);

    DECLARE @EndYear CHAR(4);

    DECLARE @StartMonth SMALLINT;

    DECLARE @EndMonth SMALLINT;

    DECLARE @TopN SMALLINT;

    SET @StartYear = 2014

    SET @EndYear = 2014

    SET @StartMonth = 1

    SET @EndMonth...

  • RE: A Quick Tour of sp_ExecuteSQL

    Great Article, but I did notice something weird in my testing.

    I started with the first example which was a simple select * from a table and that worked without...

  • RE: Too many parallel nested transactions

    We have the most recent service pack (sp4). I am going to start by testing the MAXDOP, i know it will not fix the source of the issue but at...

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