Forum Replies Created

Viewing 15 posts - 106 through 120 (of 158 total)

  • RE: Compare Dates in an iterative manner for a particular set of records

    Why use the cross join?

    SELECT *

    FROM PersonRecord A

    INNER JOIN PersonRecord B

    ...

  • RE: 36 Changes

    For a counterpoint, look at Paul Graham's site, http://www.paulgraham.org, under the essays

    --

    JimFive

  • RE: The September 2008 Car Update

    Also, most cars recharge their batteries with an alternator as we drive, so without the gadgets, some of that power would be wasted.

    Steve,

    That's not strictly true. The more load...

  • RE: The September 2008 Car Update

    Steve,

    Great to see it working out for you. Your numbers at the bottom don't look right, however. It looks like the "conservative" and "realistic" numbers might be swapped.

    --

    JimFive

  • RE: Should He Stay or Should He Go?

    I think one thing that needs to be considered is that Eric is competent. He's not outstanding, but he grinds along and does the job they hired him for....

  • RE: When Is Work, Work?

    First, I would expect the waiver mentioned in the article would hold up as long as the workers were not required to be checking their email outside of work hours....

  • RE: Name value pair (EAV) model

    I do understand that an Index on this theoretical "Bitmask" column would be expensive to maintain, but how is Indexing a Bitmask column any different than say a "LastName" column?...

  • RE: Stored Procedures Reconsidered

    It seems that everyone is taking extreme positions on this topic.

    There is no real difference (performance, security, or maintenance) between using SQL in your DAL and using sprocs via a...

  • RE: Who is "the IT guy?"

    It seems to me that the term "IT guy" implies that Computers are a hobby for the person, not (just) a profession. While that's not all bad it does...

  • RE: Query

    I don't think that the fact that the query compiles is a bug per se. It compiles because subqueries must have access to their parent in order to create...

  • RE: Name value pair (EAV) model

    David,

    You are, of course, correct. The best way to store a choose-many would be just to record each answer in a table like: SurveyID, QuestionId, AnswerID [AnswerText]. ...

  • RE: Function execution

    Declare @Tmp varchar(10)

    set @Tmp = '20080520ABCDEF'

    select CAST(@tmp as datetime)

    webrunner,

    Change that to varchar(8) and it will work.

    '20080520AB' cannot be converted to a date, but '20080520' can.

    --

    JimFive

  • RE: Function execution

    2. SQL isn't a programming language.

    I'd have to dig out my Programming Languages text to see if SQL meets the definition, but I'm pretty sure it does. I vaguely...

  • RE: Function execution

    I think everyone is missing the point of what is happening.

    What is occuring is an automatic type conversion. If I do this:

    Declare @Tmp datetime

    set @Tmp...

  • RE: Name Value Pair - Part II

    I'm going to go out on a short limb here and say: XML is an even worse idea than EAV. EAV Creates a weak data type design while XML...

Viewing 15 posts - 106 through 120 (of 158 total)