Forum Replies Created

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

  • RE: Need Windowed Partitioning Help

    Very Clever on the datediff stuff. Thanks for the rest as well. It appears to be what I needed.

    Thanks,

    Brian

  • RE: Help Converting query -- Do I need a cursor?

    Thank you.

  • RE: Help Converting query -- Do I need a cursor?

    That is exactly what I wanted. Thank you so much. Could I get a bit of an explanation as to why it works as it does. I've...

  • RE: Help Converting query -- Do I need a cursor?

    --Build Employee Table.

    CREATE TABLE #Employees(

    [Id] [int] IDENTITY(1,1) NOT NULL,

    [EmployeeID] [nvarchar](30) NULL,

    [EmployeeName] [nvarchar](50) NULL,

    [EmployeeSSN] [nvarchar](50) NULL)

    INSERT INTO #Employees(EmployeeID, EmployeeName, EmployeeSSN) values ('01-003-0001', 'Graham, Jarvis', '***-**-4830')

    INSERT INTO #Employees(EmployeeID, EmployeeName, EmployeeSSN) values...

  • RE: Help Converting query -- Do I need a cursor?

    Here it is:

    --Build Employee Table.

    CREATE TABLE #Employees(

    [Id] [int] IDENTITY(1,1) NOT NULL,

    [EmployeeID] [nvarchar](30) NULL,

    [EmployeeName] [nvarchar](50) NULL,

    [EmployeeSSN] [nvarchar](50) NULL)

    INSERT INTO #Employees(EmployeeID, EmployeeName, EmployeeSSN) values ('01-003-0001', 'Graham, Jarvis', '***-**-4830')

    INSERT INTO #Employees(EmployeeID, EmployeeName,...

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