Forum Replies Created

Viewing 15 posts - 18,736 through 18,750 (of 22,202 total)

  • RE: SQL Server 2000 Stored Proc. Tuning

    GilaMonster (1/13/2009)


    A single transaction is a single transaction, regardless of whether it's in one huge procedure of split up among several smaller procedures all called from a parent. Locks are...

  • RE: Script out Profiler Template?

    DavidB (1/13/2009)


    However, the template file will be usable in Profiler. If you script it out then you can run it via SSMS or a job and still have the same...

  • RE: How does DTA decide on an index for large join queries?

    DavidB (1/13/2009)


    Understood. Yeah, unfortunately there really is no cut and dry answer when it comes to performance tuning for queries hence why DTA can sometimes struggle. Ultimately what you are...

  • RE: Image is Everything

    Steve Jones - Editor (1/13/2009)


    OK, I'm really confused now. I was going to change the picture to a new shirt, but most people like the shirt.

    Hmmmmm, I think I...

  • RE: Script out Profiler Template?

    Brandie Tarvin (1/13/2009)


    Actually, Grant, I didn't know about this Template scripter. Could you give me that too?

    I was going to make due with what I had, but I'd like to...

  • RE: Monitoring of SQL Server Infrastructure

    And, SQL Server 2008 has a monitoring suite built in, although it's not as sophisticated as the offerings from Quest & Idera and others.

  • RE: Local Variable declaration in SQL 2000 and 2005

    Seth Lynch (1/13/2009)


    Hi

    I suspect it is incomplete and someone put SET in by mistake and left it there.

    The strange thing it that SQL Server 2000 seems to ignore it and...

  • RE: Local Variable declaration in SQL 2000 and 2005

    It looks like incomplete code. I would have thought what was meant was something like:

    DECLARE @fId INT;

    SET @fId =42;

    Of course with 2008 you can:

    DECLARE @fId INT = 42;

  • RE: Monitoring of SQL Server Infrastructure

    Red Gate offers a tool that does a bare-bones, is it up or does it have a problem type of monitoring. Idera has a pretty good tool that does what...

  • RE: The T-SQL Quiz

    Jack Corbett (1/13/2009)


    Where I am at right now, part-time contract for 2 more weeks, there is one "minor" system on 2005, the rest are 2000 except for the Quality system...

  • RE: SQL Server 2000 Stored Proc. Tuning

    nitinpatel31 (1/13/2009)


    Grant Fritchey (1/13/2009)


    Under what circumstances have you seen seperating a statement from one procedure into a seperate procedure lead to deadlocks? That's a new one for me.

    If proper transaction...

  • RE: What source control do you use?

    GermanDBA (1/13/2009)


    Hi Grant,

    I thought it sounded a little complicated the way that they had suggested.

    It also seemed a little silly that MS would bring something like that to market, especially...

  • RE: How does DTA decide on an index for large join queries?

    DavidB (1/13/2009)


    Understood. Yeah, unfortunately there really is no cut and dry answer when it comes to performance tuning for queries hence why DTA can sometimes struggle. Ultimately what you are...

  • RE: How does DTA decide on an index for large join queries?

    GilaMonster (1/13/2009)


    DTA's got two undocumented features that it uses to do evaluations of cost improvement. One is the hypothetical index (an index that has all the metadata and stats of...

  • RE: Script out Profiler Template?

    DavidB (1/13/2009)


    Briefly start the trace and then pause it. Goto File->Export->Script Trace Definition and pick your DB version, and save to a file.

    The reason I asked is because, what...

Viewing 15 posts - 18,736 through 18,750 (of 22,202 total)