Forum Replies Created

Viewing 15 posts - 136 through 150 (of 271 total)

  • RE: Massive time differences in procedure execution

    Hi Gail,

    Thanks for the quick reply, I think your probably right as it is one of them 'jack of all trades' procedure which has some parameters which are optional.

    I'll dig...

  • RE: Determine the amount of memory actually used

    I think I've answered my own question, from all the reading I'm doing, the dmv sys.dm_os_memory_clerks does provide me with the amount of memory currently being used by the instance.

    Nic

  • RE: SQL Server 2008 running 50% faster on desktop than server - what to look for?

    Assuming it's addressing all the resources correctly, is there any difference in the plans? I.e perhaps an index is missing from the server?

  • RE: Suggestions for improving nightly index check

    Hi Marcia Q,

    As mentioned before, your probably best only working on the indexes you need to.

    I have a script (would be happy to pass it over to you) that checks...

  • RE: Help Others, Help Yourself

    Excellent article Tim, and as Jeff noted, "truer words never spoke".

    I think it provides an important reminder (certainly to myself) that we are all part of the cycle - albeit...

  • RE: Data Storage

    Steve Jones - Editor (1/18/2010)


    I tend to agree with #3 as well

    Thanks for the reply Steve.

    3 it is, just thought it best to check, sometimes you cant see the forest...

  • RE: Data Storage

    For anyone who is interested I came across this;

    As my decision was being influenced by the volume of NULL values, it helped to clear a few things up. 😉

    Thanks.

  • RE: Data Storage

    Thanks for the reply.

    Thats how I would typically do it, it's just the fact that some employee's may have attributes (columns) that others may not that makes me thing option...

  • RE: Error: 7886, Severity: 20, State: 1.

    deepak.sahu (12/16/2009)


    Hi All

    I am seeing this error being logged in my SQL 2005 Ent machine

    A read operation on a large object failed while sending data to the client. A common...

  • RE: SQL Browser Connection Problem

    Hi,

    Dont know if you resolved this, but I've had a similar issue, I resolved mine by ensuring the port that the browser is listening on it open. This seemed...

  • RE: Collate command in a T-SQL selection

    As far as i'm aware on the WHERE clause you cant apply a collation to all, it has to be on each one.

    However, you can set the collation for a...

  • RE: Collate command in a T-SQL selection

    yeah it is going to get a little messy. :w00t:

    I'm just wondering is there any other solution, the issue is that your needing to compare different collations!

    so can the collations...

  • RE: Collate command in a T-SQL selection

    No, to my knowledge your going to need to set the COLLATE for each of your statements, I'm not aware of a COLLATE command that would cover all of them.

    Sorry.

  • RE: Collate command in a T-SQL selection

    mark.veitch (11/25/2009)


    DECLARE @sql AS VARCHAR(MAX)

    SET @sql = 'SELECT SRequest.SRequestId FROM dbo.vw_SRequest SRequest

    LEFT JOIN vw_LinkSRequestNameAddress LinkSRequestNameAddress

    .

    .

    .

    + @Whereclause

    + ' GROUP BY SRequest.SRequestId'

    The WHERE clause is passed in as a parameter after being...

  • RE: Rounding - Is there a better way

    Garadin (11/23/2009)


    OP, correct me if I'm wrong here, but let me attempt to explain this better:

    He's not just trying to round up every time. Here's a couple examples:

    --His Original...

Viewing 15 posts - 136 through 150 (of 271 total)