Viewing 15 posts - 91 through 105 (of 252 total)
We also use a linked server and have seen the same errors in a trace log today. I was not looking for it, but we moved a database to...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 19, 2008 at 1:19 pm
Hi. Since you are using SQL Server 2005, you can use Notification Events and Service Broker. You don't have to do all the wiring yourself if you define...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
March 17, 2008 at 9:26 am
I would not assume that poor code scales linearly. With double the users or data, do you need another 2 or 32 servers?
If you want to just add another server to...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 17, 2007 at 3:40 pm
Perhaps another process is making the connections?
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 8, 2007 at 9:59 am
Maybe CONVERT(uniqueidentifier, $(ESCAPE_NONE(JOBID))) will work. If not, try assigning the value to a local variable first or printing it out before passing it to the procedure. Something in http://technet.microsoft.com/en-us/library/ms175575.aspx might help. ...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 8, 2007 at 9:37 am
There is always a bottleneck. Waiting on resources is normal in any process that is not blocked. The root blocker can be idle, running, or waiting on a resource and not be blocked. The...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
May 1, 2007 at 1:20 pm
I'm working on it in my spare time - which is short today.
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
May 1, 2007 at 1:11 pm
Much of the code has been hacked from stuff I've found here on sqlservercentral. It would only be fair for me to share it; however, I will need to check with my boss.
I've...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
April 27, 2007 at 12:47 pm
The process is not really blocking itself - one thread of the process is blocking another thread of the same process. There will be one thread that is either the...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
April 27, 2007 at 10:20 am
In the last case you are ordering by the "numbers" 1 and 2, 2 and 1, or 2 and 1. These numbers are not aliases to columns, just values. For...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 31, 2006 at 6:06 am
In the last example, rather than trying to alter the ORDER BY syntax with one case statement, use a case statement for each element in the ORDER BY
ORDER BY
CASE @OrderBy...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 30, 2006 at 10:18 am
Out of curiosity, would a backup-restore (using a disk backup for speed) defrag a db?
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 24, 2006 at 11:04 am
Sometimes the only information available to identify the source of the process will be the net_address (MAC). As a last resort, it can be used to track down the network card...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 24, 2006 at 9:57 am
The IO_COMPLETION is about 10% and 40% of the wait in the two ten minute durations. The CXPACKET and PAGELATCH_SH are about 75% and 55% in the same two durations. Are the...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 23, 2006 at 10:23 am
Also, everything we perceive is basically electromagnetic in nature. If EM fields behave in such a way to appear to compress and slow down, then the human machine based on...
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
August 23, 2006 at 10:03 am
Viewing 15 posts - 91 through 105 (of 252 total)