Forum Replies Created

Viewing 15 posts - 17,566 through 17,580 (of 22,214 total)

  • RE: Logical Scan fragmentation increasing

    It could be something you have to monitor. Do you have an idea as to why you're getting so many page splits? Does the table have a clustered index that's...

  • RE: record insertion

    There are great articles right here on SQL Server Central. Just type something like 'index design' in the search box and then limit the scope to articles. There are a...

  • RE: T -Sql 2005: Calling multiple Sprods in single Sprod using RETURN Help

    You can take advantage of the default return value from procedures like this (untested code):

    DECLARE @retval int

    EXEC @retval = ProcA @param1='a',@param2='b'

    IF @retval = 0

    BEGIN

    EXEC ProcB

    EXEC ProcC

    END

  • RE: Logical Scan fragmentation increasing

    How much data is in the table, specifically how many pages?

    For very small tables, less than 10 pages, you might not see any change in fragmentation, even after a rebuild...

  • RE: Bad plan getting cached - due to StatementOptmEarlyAbortReason=timeout?

    Yeah, that sounds familiar. I'd suggest recompiling after the data load and avoid using query hints. Since you know it's going to happen, take care of it that way. Also,...

  • RE: record insertion

    Without details it's not possible to give you specific advice. In general, make sure you have a clustered index on the table. Make it as narrow as you can, but...

  • RE: How and where to start SQL DBA training

    Track down a copy of Brad McGehee's "How To Be An Exceptional DBA." It's a great read. For a fantastic introduction to the concept of being a DBA, I recommend...

  • RE: Stored Proc Activity-Usage

    You need to use a server-side trace. You can build this manually using the T-SQL commands or you can use the SQL Profiler tool to build it for you. This...

  • RE: T-SQL query vs same query in SP performance issue

    Thanks for posting the answer. It's always good to know when I got something right.

  • RE: Are the posted questions getting worse?

    Bruce W Cassidy (4/28/2009)


    [font="Verdana"]This morning I had an idea. After I had had a bit of a sit down to recover from that novel feeling, and to reassure myself...

  • RE: Index

    There are several articles on Gail Shaw's blog[/url]. There are several good articles here on SQL Server Central, just search in the window in the upper right. For real depth...

  • RE: Are the posted questions getting worse?

    GilaMonster (4/28/2009)


    Grant Fritchey (4/28/2009)


    Hmmm... Now I am confused.

    You and me both. I started writing a blog post on this, explaining that there could be serial and parallel plans in cache....

  • RE: Are the posted questions getting worse?

    Hmmm... Now I am confused. I remember seeing that in action, but when you run RECONFIGURE WITH OVERRIDE the cache gets cleaned out, so I couldn't have done it playing...

  • RE: Are the posted questions getting worse?

    I did it in the execution plan book. Let me look it up...

    Damn, found a typo. I'm blaming you becuase I wouldn't have seen it otherwise...

    Crap... Evidently I just lied......

  • RE: Query Performance

    Looks like your statistics might be a tad off. The index seek operation that is taking up 86% of the cost shows an estimated 1 row, but is returning 65000....

Viewing 15 posts - 17,566 through 17,580 (of 22,214 total)