Forum Replies Created

Viewing 14 posts - 16 through 29 (of 29 total)

  • RE: Optimize hint has huge implications. Why?

    The original query's construct, somehow, allowed SS to rely on the statistics alone and not look at the query from a new perspective. The OPTIMIZE hint steered it in the...

  • RE: Optimize hint has huge implications. Why?

    Cool stuff, Craig.

    I'd like to delve deeper into your observations before I update the statistics thereby destroying this particular scenario. Earlier I did pull FileSummaries into a table variable with...

  • RE: Optimize hint has huge implications. Why?

    Of course, I should have attached the OPTIMIZED execution plan, too. Just an oversight, but here it is. This completed in 38 seconds.

    The almost 1 trillion rows that it...

  • RE: Life is Short

    So sorry to hear about your loss.

    I have been a pilot since 1967 and have lost some friends this way, too. I'll keep looking for details especially from FAA/NTSB....

  • RE: Life is Short

    What happened with the plane crash, Steve?

  • RE: Less Pay, More Convenience

    One can understand that employers would be reluctant to allow someone with whom they have no trust-relationship to work at home. There are a multitude of distractions at home, such...

  • RE: Varchar and the data dictionary

    Oh, I agree, varchar(max) is totally another beast. My point was that an empty 255 wouldn't cause any increase in disc usage compared to a varchar(10), for example.

    Some folks...

  • RE: Varchar and the data dictionary

    I agree, but I don't think that there is more data to move. If a varchar(255) contains only 10 characters, say, it will only be 10+2 that will be moved....

  • RE: Reclaiming freed space

    I clicked the correct answer but it still said that I was wrong and cited an option I didn't click.

    Then, it is not "than", it is "then".

    It's a...

  • RE: doubt about triggers

    If you want "before" you must use "instead" and then perform the functions you want to do before the update/delete/insert is performed and then perform the update/delete/insert in code. That's...

  • RE: Introduction to DTS in SQL Server 2005

    Pity it was poorly written, had wrong references, skipped steps, and assumed that the reader knows all the missing steps.

  • RE: Alter table script in SQL server 2005 Express

    Now that's a useful piece of information, although perfectly logical. Thanks for sharing.

  • RE: Alter table script in SQL server 2005 Express

    Correct. Even if you use Enterprise Manager or Management Studio, it will create a new table, import all the data and attributes, and then drop the old table. No magic...

  • RE: Alter table script in SQL server 2005 Express

    It IS important in which order columns are specified in a table. Having varchar columns preceding fixed-length columns place an undue burden on the server because of the overhead of...

Viewing 14 posts - 16 through 29 (of 29 total)