Viewing 15 posts - 9,886 through 9,900 (of 10,144 total)
I have to admit, when I saw
Wally Wallington...(Thanks Curtis Curtington)
it crossed my mind that this was an early April Fools prank, but no, not at all. Very impressive...
March 20, 2008 at 4:56 am
Tomm Carr (3/19/2008)
Yes. But in reading your original post, I thought that's what you wanted when you said, "regardless if they have data for them."
Yep Tomm, you're right: But the...
March 20, 2008 at 4:44 am
Tomm Carr (3/19/2008)
select
from whatever-to-get-original-resultset
union
select
from...
March 19, 2008 at 4:26 pm
Hi Art
Does the query give you the results you are expecting and have you checked that they are correct? Can you post the whole query please?
Cheers
ChrisM
March 19, 2008 at 2:00 pm
Ahmad Osama (3/19/2008)
Thanks chris.. y dont u write an article for the same....:)
You're welcome, Ahmad. Hope it helps. I'm sure people will chip in with their expertise in the areas...
March 19, 2008 at 1:49 pm
Brandie Tarvin (3/19/2008)[hr
Oooohhh. Idea!!! :exclamationmark: Let's build our own maturity test. We've already got some of the basics in this very thread (RPG / Exotic Foods / Etc.)......
March 19, 2008 at 11:30 am
Art
If you switch your LEFT JOIN to dbo.OrderFormLineItem for a derived table which performs the aggregate to obtain the most recent shipping date, then you could get lucky and lose...
March 19, 2008 at 10:50 am
jburkman (3/19/2008)
Four years teaching master's level Oracle Application Development
Erm, Oracle Application Developer? The only one of these I know is rarely off-piste at around £500-£700 per day. Yep, them's British...
March 19, 2008 at 8:48 am
Hi Ahmad
Your original question arises so frequently that it it would be worth answering your last question in a formal manner, as a permanent reference. But for now, as I...
March 19, 2008 at 4:00 am
Tim Mitchell (3/18/2008)
Geoduck.... I think my wife drove one of those back in college. Great gas mileage...
Nope, that was a Moden 😛
March 18, 2008 at 1:54 pm
It comes down to using a tool you feel comfortable with to do the job really doesn't it?
Jeff, you like playing with macros in Excel - I used to...
March 18, 2008 at 1:47 pm
Roy Ernest (3/18/2008)
Since the topic is already there, has anyone had Bat? You know , the...
March 18, 2008 at 12:17 pm
Good luck, Ahmad!
To be honest, this isn't how I write to Excel using SQL Server, as I mentioned earlier. I use TSQL to copy/rename an Excel template, then server linking...
March 18, 2008 at 11:06 am
Use derived tables in preference to temporary tables, and as Grant states, avoid using DISTINCT:
SELECT *
FROM FIRSTTABLE s
INNER JOIN (SELECT PKID
FROM SECONDTABLE
GROUP BY PKID) d
ON d.PKID = s.PKID...
March 18, 2008 at 8:43 am
Viewing 15 posts - 9,886 through 9,900 (of 10,144 total)