Forum Replies Created

Viewing 15 posts - 91 through 105 (of 252 total)

  • RE: DBCC command turning up repeatedly in Profiler

    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. 😉

  • RE: DeadLock

    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. 😉

  • RE: Tuning Time

    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. 😉

  • RE: Connections May Be Forcibly Closed...

    Perhaps another process is making the connections? 

    RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉

  • RE: Job Tokens - $(ESCAPE_NONE(JOBID))

    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. 😉

  • RE: Preventing database blocking in SQL 2000

    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. 😉

  • RE: Preventing database blocking in SQL 2000

    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. 😉

  • RE: Preventing database blocking in SQL 2000

    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. 😉

  • RE: Preventing database blocking in SQL 2000

    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. 😉

  • RE: Order by not functioning properly?

    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. 😉

  • RE: Order by not functioning properly?

    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. 😉

  • RE: Low Page Life Expectancy High Buffer Cache Ratio

    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. 😉

  • RE: Trigger Audit Trails - who deleted my record?

    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. 😉

  • RE: DBCC sqlperf(waitstats) OLEDB Problem

    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. 😉

  • RE: Inertia

    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. 😉

Viewing 15 posts - 91 through 105 (of 252 total)