Viewing 15 posts - 76 through 90 (of 122 total)
Scorpion Thanks for all your info so far.
What is happening is lots of users connect to a SQL server and start a merge replication.
Unfortunately this is quite a big replication......
January 8, 2003 at 8:28 am
I have been looking for this notification tab but i could not find it !.
Where can i find it ?
January 8, 2003 at 4:33 am
I would say it is always nice to have a default behaviour for a stored proc.
If you dont give it any parameters it will perform the default behaviour.
But when...
January 8, 2003 at 4:17 am
Yep but i still don't know what Resource qeue means
and I still don't know if all this qeuing will cause additional overhead on the server ........
January 8, 2003 at 2:02 am
It is a mix of SNapshot and Merge replication, it is a PULL replication scenario.
But we have some more info on this...... It seams that the sproc sp_MSAgent_stethoscope is causing...
January 7, 2003 at 2:15 am
Sorry forgot the last.....
The Distributor and the publisher is the same machine.....
So there are no Agents running
January 6, 2003 at 8:41 am
Andy thanks a Lot for your comments,
I understand most of it But what do you mean with Log Jam ?
And I understood you correct when you say this shouldn't affect...
January 6, 2003 at 8:34 am
If the cursor is not that big you could always use a memory table....
Works just like a real table but is faster than a cursor...
Declare @Table Table
( id int,
...
December 17, 2002 at 7:22 am
Probably the MAINTPLAN wizzard will put the DB in single user mode and this cannot be done while other connections are in the DB.
The maintplan is executed by the sqlserveragent...
December 17, 2002 at 4:46 am
We foud it already was the Server setting.....NO COUNT...
December 13, 2002 at 7:31 am
What i am really looking for is a tool that can handle the following situation.
There is a Developement database ( let's say release 3.1.0)
There is a Test database (let's say...
December 12, 2002 at 8:52 am
So could we conclude to say.....
If you need to have Dynamic parameters in your sproc
keep the following in mind :
1. If there are a few parameters use seperate stored procedures...
December 11, 2002 at 3:39 am
In a reply on Simon Sabin.
I tested your solution but extended it a little.....
set nocount on
set statistics io on
set statistics time on
exec usp_SelectClientAccountManager 2324,null
exec usp_SelectClientAccountManager null,99
exec usp_SelectClientAccountManager2 2324,null
exec usp_SelectClientAccountManager2 null,99
exec...
December 9, 2002 at 9:06 am
Well this looks a lot like the discussion we had with optional parameters.
Then i Posted this solution.....
I have some experience with this too and i found out that when you...
December 9, 2002 at 8:47 am
If you can stay away from UDF... Build a SP instead. I have had some pretty bad experiences with UDF and you don't know what it is doing because they...
December 9, 2002 at 4:51 am
Viewing 15 posts - 76 through 90 (of 122 total)