Viewing 15 posts - 3,571 through 3,585 (of 5,103 total)
when you create the trace, in the Filter Tab select DatabaseID Like "Yourdatabase ID"
AND check Exclude system IDs
June 24, 2005 at 9:57 am
just keep in mind that if the proc already perform insert ... exec in it you won't be able to do it from the outside (nesting)
June 24, 2005 at 9:54 am
I think you already answer your own question:
create function dbo.udf_concat_products (@Center int )
returs varchar(400)
as
begin
declare @str varchar(400), @delimiter char(1)
SET @delimiter = ','
SELECT @str =COALESCE(@str + @delimiter, '') + Product
FROM...
June 24, 2005 at 9:12 am
May I suggest that you compute the AVG at "INSERT Time" and then materialize those if the Number of AVG types is Fixed
June 24, 2005 at 8:02 am
the thing with the queues is that traffic is still there and is another technology to the pile (SP, set up etc). Doable though!
In my last incursions in the SCADA...
June 23, 2005 at 3:20 pm
Just hope you don't run that proc too often. Recompilation is CPU intensive when done frequently
June 23, 2005 at 2:56 pm
I worked as a SCADA engineer a long time ago. Your solution is to transfer info the other way around.
1.The Pooling stations register with the server.
2.There is a trigger that...
June 23, 2005 at 2:47 pm
OK... OK...
Create the job as you normally would
script the job out
in BOL look at the parameter:
@freq_subday_type of sp_add_jobschedule
the possible values are :
0x1
At the specified time
0x4 Minutes...
June 23, 2005 at 2:31 pm
What happens is that it will wait for the next minute mark effectively running at 1min and 50sec ![]()
June 23, 2005 at 2:06 pm
There is an undocummented way of doing it
but why do you need a job to run that often?
June 23, 2005 at 2:01 pm
I don't see how you use the inserted table (if you need it at all)
If you don't need that just run the sp directly
oh and I am also interested in...
June 23, 2005 at 1:58 pm
Viewing 15 posts - 3,571 through 3,585 (of 5,103 total)