Forum Replies Created

Viewing 15 posts - 19,906 through 19,920 (of 22,202 total)

  • RE: Error messages

    You've got two options. Set up TRY/CATCH and then return the error message that you want the user to see:

    BEGIN TRY

    RAISERROR('Major error in TRY...

  • RE: Sudden performance issues

    And possibly introduced others.

    You do know that NOLOCK can cause duplicate data to be displayed, not just data that's in flux? I think that after FAST 1, NOLOCK is...

  • RE: How to get columns list of Local Temporary Table?

    Maybe I'm dense (ok, I am, but humor me), but if you're the one creating the temporary tables, don't you know the column names already?

  • RE: Must declare the scalar variable "@STARTDATE".

    Since you are new to this, please take a piece of advice.

    Don't use dynamic SQL.

    Especially since you're just getting started. Do the work to figure out how to...

  • RE: long running stmt, cpu 100%

    The best thing you can do is set up regular monitoring of your data. You can get third party tools like Idera's Diagnostic Manager or the new one from SQL...

  • RE: Suggestion on Updating Statistics

    GilaMonster (7/22/2008)


    Grant Fritchey


    You can also need to update statistics on smaller tables where large percentages of the data changes regularly.

    Wouln't the auto update take care of that?

    I've found that...

  • RE: Parallel Processing Query in Sql Server 2008

    Your previous post scared me. I wasn't entirely kidding about sticking a fork in myself as a comarison. Using CLR is of questionable benefit in most situations. This one is...

  • RE: Pls help to solve this query

    So what do I do with these pork chops? Sharpen the bones & throw 'em like a boomarang?

  • RE: Load test, Performance Test

    Replaying Trace does work. It's a bit of a pain to set up, but it does work. However, a Trace is dependent on you already having a database and application...

  • RE: Soft Skills

    I liked "DBAs of Dawn" better.

  • RE: Load test, Performance Test

    I've done a ton of testing of SQL Server 2000 and 2005. I've never tried load testing replication before, so I'm not sure of anything that would help you there.

    The...

  • RE: long running stmt, cpu 100%

    It's not normal for a single procedure to take all the resources, no. But if the query is really poorly written or designed, it certainly could happen.

    I'd make sure you...

  • RE: Soft Skills

    Nice post. Good set of rules. But now we'll have to refer to you as Jeff Isaac Rbar Moden. You're starting to sound like a Civil War general.

  • RE: Joining Tables without PK's

    Is it safe to assume that MovementIdentifierContext, MovementIdentifier and MovementIdentifierContext, while not unique as noted, combined identify a given Movement? Or is it just the IdentifierContext and IdentifierComposite fields, those...

  • RE: Running an Update on a Production Table in High volume OLTP environment

    There's not enough information in the question to give you specfic answers, but some general thoughts I would have when faced with the general situation...

    Can you test the update against...

Viewing 15 posts - 19,906 through 19,920 (of 22,202 total)