Viewing 15 posts - 16 through 30 (of 60 total)
Interesting reading. Was that a deliberate reference to Alices Restaurant, Massacre (twenty-eight color graphs with circles and arrows and a paragraph on the bottom of each one)?
July 5, 2011 at 2:28 pm
Oops - got my aliases a bit screwed up there ... I should have checked a bit more before posting;
SELECT sales.Project, rep1.DisplayName, rep2.DisplayName, rep3.DisplayName, rep4.DisplayName, sales.Spend
FROM [Table 1] sales
LEFT JOIN...
June 19, 2011 at 11:21 pm
All issues with normalisation aside, something like the following query should give you the result you are after for the table structures given;
SELECT sales.Project, rep1.DisplayName, rep2.DisplayName, rep3.DisplayName, rep4.DisplayName, sales.Spend
FROM [Table...
June 19, 2011 at 11:19 pm
I don't know mathematical theory, or philosophy, or physics - or epistemology for that matter - but what a great thread. Thought provoking and entertaining. I would add my own...
June 7, 2011 at 3:43 pm
I have not run the complete DDL and data through, but looking at your CASE statement for the ORDER BY it looks a bit odd;
CASE WHEN @sortorder1 = 'ASC' AND...
December 5, 2010 at 12:30 pm
Tom.Thomson (8/21/2010)
But since it doesn't rotate, it's rotational speed is 0 radians/sec or 0 rpm or 0 whatever unit you are using. So the correct value is 0, not N/A.
I'm...
August 21, 2010 at 5:25 pm
I theory, it seems there might be a case for 2 or more NULLs simply to provide clarity and eliminate different people guessing at the intended usage - after all,...
August 19, 2010 at 2:31 pm
I don't think you can avoid it - there will always be people who need access to sensitive data and it simply comes down to people having a strong-enough moral...
August 1, 2010 at 9:41 pm
I like the idea of grouping tables/scripts/functions etc. into logical groups with some sort of naming convention.
My only comment is - keep it simple/obvious/intuitive.
Several years ago I inherited a database...
July 27, 2010 at 11:38 pm
"pebkac" (problem exists between keyboard and chair) ... we call that a "picnic" problem (problem in chair, not in computer)
🙂
May 12, 2010 at 2:01 pm
One of my favourites first came up many years ago during a project to put a GUI front-end on a legacy character-based system - basically putting a nice front-end over...
May 9, 2010 at 2:32 pm
That's thinking outside the square - even as a developer/SQL-admin, I have to admire his ingenuity.
😛
April 19, 2010 at 11:17 pm
Correct - those INSERT statements would require the user to have Insert permissions on the SQL table. It does eliminate the need to create a linked table in Access.
One option...
April 12, 2010 at 1:56 pm
I have often used the QueryDef object to amend the SQL-statement for an Access query before using in a report. It's usually just 2-3 lines of VB code to replace...
April 11, 2010 at 2:16 pm
Your problem is not limited to those using French - apostrophes occur all over the place - in names, like O'Malleys Bar, or ownership, as in David's car.
SQL can handle...
April 8, 2010 at 10:47 pm
Viewing 15 posts - 16 through 30 (of 60 total)