Viewing 7 posts - 76 through 82 (of 82 total)
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
May 26, 2006 at 11:18 am
Will it work in multiuser environment???
May 17, 2006 at 9:51 am
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...
May 2, 2006 at 9:59 am
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)
May 1, 2006 at 3:06 pm
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...
May 1, 2006 at 11:11 am
Create a format file using bcp and use the same in ur BULK INSERT
March 28, 2006 at 5:07 pm
I can help you if you could send me the code that you have used for trigger?
March 28, 2006 at 12:29 pm
Viewing 7 posts - 76 through 82 (of 82 total)