Forum Replies Created

Viewing 15 posts - 271 through 285 (of 1,162 total)

  • RE: Are the posted questions getting worse?

    Anyone else eagerly awaiting this?

    Have to say, getting increasingly irate about e-book pricing. Why do I have to pay 50p more, given all the costs of printing, distributing and shipping...

  • RE: SQL Statistics are not updated.

    Statistics are only updated when they need to be. If the data hasn't changed significantly enough to require them to be updated, then it won't bother.

  • RE: Query causing disk space issues

    Hang on, are you running this Select * from <table> from SSMS on the local server?

    The data you see in the results tab has to go somewhere. Remember that SSMS...

  • RE: T-SQL Help Needed

    Evil Kraig F (9/20/2012)


    So does Flipper, Lindsay Lohan, and Hitler.

    ...and this thread becomes a statistic 😀

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (9/19/2012)


    Lynn Pettis (9/19/2012)


    Do you ever feel that no matter how many times you tell someone what the problem may be that they just aren't listening?

    Yep.

    My current drama is...

  • RE: Pulling only today's date from delimited string with select query

    Cadavre (9/19/2012)


    sqlrd22 (9/19/2012)


    That worked great, thank you. I'm slowly learning..

    Glad it worked. Check this link for other formatting options for datetimes. Bear in mind that this is generally slower than...

  • RE: Failure to calculate super-latch promotion threshold

    Given that there's not a single occurrence of this error referenced on Google, I'd assume you're hitting a very unusual condition. It sounds relatively innocuous (the error log does record...

  • RE: T-SQL Help Needed

    GSquared (9/18/2012)


    Last I heard, Google uses a customized version of MySQL for their primary data storage. They rebuilt the engine and modified the ACIDity of transactions towards "eventually consistent",...

  • RE: SSIS file import

    I think it's a UI bug. You have to drop down the Enumerator Selection and re-select "Foreach File Enumerator" and the options will appear.

  • RE: SSIS file import

    I'd just use a For Each File Loop with Filename*.txt as its filter.

    There's a tutorial here - it was written for 2005, but the process is the same for 2008

  • RE: UniqueIdentifier as a Primary Key

    Jeff Moden (9/13/2012)


    I agree. There are enough distinct values where if one of thhe values was a mile, the toal number of values would be about the same...

  • RE: Reorganize Indexes in sql 2008

    Do what? What do you mean by "have no effect"?

  • RE: UniqueIdentifier as a Primary Key

    Jeff Moden (9/12/2012)

    Also, something to be aware of... Books Online is actually incorrect about GUIDs being globally unique (and MS has admitted that fact although I'm on the wrong...

  • RE: Updateable Function Based SQL Index

    You can't directly create an index on an expression, you can only create indexes on columns.

    However, you can achieve something similar using a computed column and indexing it. E.g.:

    ALTER TABLE...

  • RE: ALTER COLUMN fails when changing datatype of PRIMARY KEY

    I suspect that altering the column to another data type internally requires that ANSI_WARNINGS be set to OFF, so it's overriding the setting.

    In your case, you should be dropping all...

Viewing 15 posts - 271 through 285 (of 1,162 total)