Forum Replies Created

Viewing 15 posts - 2,446 through 2,460 (of 3,348 total)

  • RE: Trust People

    After reading the article referenced in the editorial, I don't really know what its auther wants to tell me. Does he/she think agree we we should trust systems instead of...

  • RE: TRUNCATE in TRANSACTION

    I replied wrong - I saw the rollback after the truncate, assumed the question intended to test my understanding that a truncate can be rolled back, and then replied. I...

  • RE: T-SQL

    john.moreno (1/3/2011)


    Hugo Kornelis (1/3/2011)


    After reading your reply, I started to doubt, so I copied the script, pasted it in SSMS, changed it to work for SQL Server 2005

    Which is a...

  • RE: T-SQL

    Don Avery (1/3/2011)


    Actually, I'm right - this query will return 0 rows for both SELECT statements as it will never run - you cannot insert into a table with and...

  • RE: T-SQL

    Great question!

    I see so many people posting to forums or newsgroups, asking why they can't use IN (@variable) in this way with a comma-delimited list in the variable, that it's...

  • RE: Swap columns

    Nice question. Though I'm surprised at the high percentage of incorrect answers.

    Also, the disclaimer can be removed. This behaviour of the UPDATE statement is how the ANSI standard prescribes it...

  • RE: How many Records Will Get Selected

    deeptidas23 (12/30/2010)


    when we run it on sql server only one record is getting stored in table becoz of check constraint.how come only 3 records??Can anyone explain me after executing in...

  • RE: smalldatetime

    Good (if fairly easy) question, but bad explanation.

    The default for smalldatetime is not Jan 1, 1900; it is NULL. Here is the proof:

    DECLARE @d1 smalldatetime;

    SELECT @d1;

    Also, setting a variable to...

  • RE: Subtle Line Feed / Carriage Return issue

    dbuendiab (12/23/2010)


    I'm sorry for your lost points, guys. If it's a consolation for you, I spent two mornings completely puzzled with this issue, to the point I asked for help...

  • RE: SELECT TOP

    I got the question right, assuming that the submitter was unaware of the fact that there is no guarantee for this behaviour. I was then surprised to see in the...

  • RE: NULL Values and Joins

    This was an ... interesting question.

    I don't call it a good question, because of the complexity - not the complexity of the subject matter, but that of the number of...

  • RE: Simulating memory pressure

    Tom, thanks for your comment. I mostly agree with what you say.

    This was one of my first questions here, and not one I am still very proud of. The idea...

  • RE: Nulls

    mtillman-921105 (12/15/2010)


    The opposite could also be asked... Why do you have missing data?

    Because incomplete data is a fact of life.

    Companies that only do business when all data their database has...

  • RE: Nulls

    mtillman-921105 (12/15/2010)


    Mike Dougherty-384281 (12/14/2010)


    mtillman-921105 (12/14/2010)


    Good question - thanks! NULLs can be hazardous, they should come with a warning.

    In the case of "Null value is eliminated by an aggregate or...

  • RE: Shrinking Databases

    matthew.stone (12/10/2010)


    I say keep the functionality and not a trace flag as I don't what to have to bounce a server to enable.

    Luckily, you can enable trace flags without restarting...

Viewing 15 posts - 2,446 through 2,460 (of 3,348 total)