Forum Replies Created

Viewing 7 posts - 76 through 82 (of 82 total)

  • RE: Problem with Sequence Number

    Here is another solution

    DECLARE @test-2 table

    (

    tstval varchar(30),

    sortorder as case charindex('.', tstval)

    when 0 then tstval

    else substring(tstval,1,charindex('.', tstval)-1) + '.'+ REPLACE(substring(tstval,charindex('.', tstval) + 1, LEN(tstval)),'.','')

    end

    )

    insert into

  • RE: Generating a Sequential Pattern

    Will it work in multiuser environment???

  • RE: Difficult count??

    select

    IsNull(firstName+ ' ','') + IsNull(MiddleName+ ' ','') + IsNull(LastName,'') as Name,

    CASE E.Id

    WHEN -1 THEN "Games Missed"

    WHEN 13 THEN "Desc for 13"

    WHEN 14 THEN "Desc for 14"

    WHEN 15 THEN "Desc for...

  • RE: Division problem in a where clause...

    select

    count(lbd.his_user_id)

    from

    #LBD lbd INNER JOIN #TIT tit ON

    lbd.his_user_id = tit.his_user_id

    AND

    convert(varchar(10), lbd.schedule_start_date, 101) = tit.date

    AND

    tit.ID_Num = 1

    WHERE

    lbd.schedule_start_date >= '4/4/2006' AND

    lbd.schedule_start_date = .80)

  • RE: Difficult count??

    select

    IsNull(firstName+ ' ','') + IsNull(MiddleName+ ' ','') + IsNull(LastName,'') as Name,

    CASE E.Id

    WHEN -1 THEN "Games Missed"

    WHEN 13 THEN "Desc for 13"

    WHEN 14 THEN "Desc for 14"

    WHEN 15 THEN...

  • RE: Bulk Insert Loading problem

    Create a format file using bcp and use the same in ur BULK INSERT

  • RE: Do SQL supports multithreads in triggers?

    I can help you if you could send me the code that you have used for trigger?

Viewing 7 posts - 76 through 82 (of 82 total)