Viewing 15 posts - 181 through 195 (of 398 total)
For single result, you could try something like this,
declare @res varchar(50)
set @res=''
select @res=@res+product_name + ', ' from order_item
where orderid = '001234'
select @res
If you need for eatch orderid, develop a function based...
May 6, 2004 at 7:49 am
Another way to handle it (in a long run, upgrade may kill the issue) is a window schedule job (at command) to call it.
May 6, 2004 at 7:33 am
An insert trigger can handle it.
May 5, 2004 at 9:44 am
There is an option in job schedule Start whenever the CPU(s) become idle. It also
depends how long the job runs.
May 5, 2004 at 5:51 am
The job will disable itself if sheduled run one time.
Is this the only job get disabled daily? If not, schedule a job to enable it.
May 5, 2004 at 5:48 am
select clientID, count(*) from table
group by clientID
having count(*) > 1
May 4, 2004 at 5:44 am
Application role is designed for it.
May 4, 2004 at 5:02 am
Set @baby_srch_string = ''
WHILE @int_srch_id IS NOT NULL
BEGIN
SELECT @baby_srch_string = @baby_srch_string+srch_val +Char(9)
from ##srch_val
JOIN srch_elmt_assoc on srch_val_id = srea_sche_id
Where srch_val_id in (Select srch_val_id from ##Srch_val where srch_val IS NOT Null)
AND...
May 3, 2004 at 5:34 am
select taskid from task a
inner join assigment b on a.taskid=b.fk_taskid
where a.status = 1 and datediff(mm, b.ass_stopdate, getdate())>4
May 3, 2004 at 5:16 am
Article PSS ID Number: 268481 discribes the same error. Check it out.
April 30, 2004 at 4:31 am
Charindex has start_location argument.
In your case the statement would be
select charindex('[', col, charindex('[', col)+1) from table2
assume col is the name of the column.
April 29, 2004 at 8:28 am
False, null, null, null works for me.
If worksheet is OLS, would it be
select * from ExcelSource...OLS$
April 29, 2004 at 8:13 am
Agree with you.
Have you tried "False, Null, Null, Null", it may well be the case.
April 28, 2004 at 7:18 am
Viewing 15 posts - 181 through 195 (of 398 total)