Viewing 15 posts - 106 through 120 (of 158 total)
Why use the cross join?
SELECT *
FROM PersonRecord A
INNER JOIN PersonRecord B
...
November 12, 2008 at 6:49 am
For a counterpoint, look at Paul Graham's site, http://www.paulgraham.org, under the essays
--
JimFive
October 22, 2008 at 8:14 am
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...
September 30, 2008 at 6:09 am
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
September 29, 2008 at 6:28 am
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....
September 26, 2008 at 9:39 am
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....
September 9, 2008 at 8:14 am
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?...
August 7, 2008 at 7:59 am
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...
July 30, 2008 at 8:50 am
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...
June 26, 2008 at 6:48 am
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]. ...
May 22, 2008 at 6:17 am
webrunner,
Change that to varchar(8) and it will work.
'20080520AB' cannot be converted to a date, but '20080520' can.
--
JimFive
May 20, 2008 at 2:43 pm
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...
May 20, 2008 at 2:40 pm
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...
May 20, 2008 at 1:49 pm
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...
May 20, 2008 at 1:27 pm
Viewing 15 posts - 106 through 120 (of 158 total)