Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 6,486 total)

  • RE: Parsing large XML string in stored procedure

    I'll second the "upgrade to 2005" opinion. That being said, once you DO, consider changing the behavior to take in a SINGLE "large" XML with all of the records...

  • RE: Switching to Simple Mode for Reindex and then back to Full Recovery

    A few thoughts:

    - The point of being in FULL recovery is to do point in time restores. If you DON'T want to do point in time restores, then...

  • RE: Indexed views : Not the same behavior in Express Vs Standard Editions

    The caveat I usually have with the NOEXPAND hint is about the same as I would with most hints like that: sometimes they hurt more than they help. In...

  • RE: disabled component to install

    Keep in mind that you may find that "compatibility" extends only to the client tools and main database engine components if you do NOT have "professional" (or in Vista's case...

  • RE: SELECT DISTINCT returns random duplicate rows

    Without some examples and possibly the offending code - it's probably going to be tough to see what the issue is. Can you post some specifics?

    Also - what build...

  • RE: trigger question

    An UPDATE is going to cause an exclusive lock no matter what. Of course - it should be only for the length of time it takes to actually update...

  • RE: Change Where clause causes HUGE performance problem

    Unless I'm missing something, you're setting up a query that ultimately can't be optimized using regular indexes.

    Indexing isn't going to help when you're doing a WHERE clause with a leading...

  • RE: how t orun JOB continuosly

    ALZDBA (10/22/2008)


    rbarryyoung (10/22/2008)


    At my blog (in my signature, below) you will find my slide set and code examples of traps to avoid when setting up service Broker.

    Very nice presentation indeed...

  • RE: 36 Changes

    roger.plowman (10/22/2008)


    If you deploy 36 times in one week it means (assuming your coders are coding and testers are testing 24/7) you're deploying every 4.6 *hours*.

    Even with scripting languages...

  • RE: SQL Server 2000

    Jeff Moden (10/21/2008)


    Oh yeah... I forgot to mention that, Matt. Thanks for the reminder,

    Shifting gears a bit here... What a PITA.... I hate it when they do stuff like...

  • RE: Problem with Group by

    Since you're not showing some fields you're using hte group by - there's no obvious way to resolve the duplicates. The bottom line is that you need to come...

  • RE: SQL Server 2000

    Jeff Moden (10/20/2008)


    Nicely done, Greg. And, if you want the date/time to change no matter which column is updated, just remove the IF...

    CREATE TRIGGER tr_your_trigger_name

    ON [YourTable]

    FOR INSERT,UPDATE

    AS

    IF @@ROWCOUNT =...

  • RE: 36 Changes

    Actually - that kind of pace is what you'd expect on a continuous integration scenario. At least to all environments except for Prod (where you probably want it a...

  • RE: Do not use IN

    There's no hard and fast rule about never using IN, so be careful when you see such absolutes being advanced. In 2005 especially - take a look at the...

  • RE: Open Access for Report Execution

    You should be able to go into IIS admin, and just reset the web folder this is based on to "anonymous access". Keep in mind that this may get...

Viewing 15 posts - 2,356 through 2,370 (of 6,486 total)