Forum Replies Created

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

  • RE: Not able to view the data

    Thanks for the reply John.

    It was an issue with the concurrent connections.

    The person who owns the server had set the value to 1.

    It has been reset to Zero using...

  • RE: T-SQL

    This is what we did it the end to achieve the solution:

    declare @STR varchar(50),@z varchar(10),@y int

    set @STR = ','+(select VAL from TEST1 where ID ='3') +...

  • RE: T-SQL

    Thanks a lot!!!

    I'll try this and let you know....

    Thanks..

  • RE: T-SQL

    Thanks Mahesh!!!

    But, how do I convert it into columns?

  • RE: Update & Group By

    Hi,

    Try this...

    Select A.Eno,Datepart(Month,JoinDate),Datepart(Year,JoinDate),count(*)

    From Emp1 A

    Left Outer Join Dept B on A.DeptNo = B.DeptNo

    where A.Eno = '101'

    GROUP BY A.Eno,Datepart(Month,JoinDate),Datepart(Year,JoinDate)

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