Viewing 15 posts - 16 through 30 (of 43 total)
Alright, I've got a related question then.
How do you convert sql datetime values to Excel values? It looks like Excel only supports DT_DATE, but when I set...
March 3, 2009 at 1:36 pm
steveb (3/3/2009)
March 3, 2009 at 9:08 am
Interesting - thanks for all the replies! I'll play with it some more today and see what happens!
January 6, 2009 at 7:44 am
Thanks! I'll turn the deadlock flag on....I'm pretty sure it's definitely a code and/or index problem (it's a legacy VB6 app I've inherited), but trying to pinpoint where things...
October 16, 2008 at 12:58 pm
k man (9/3/2008)
Could you just generate the 'Create' scripts, and then do a find replace of 'Create' with 'Alter'...
Hmmmm....it does seem like that would work; I wasn't sure if the...
September 3, 2008 at 9:40 am
GSquared (5/21/2008)
May 21, 2008 at 4:04 pm
Thank you everyone! Interesting points, and it's good to see a different perspective. Thanks for the lesson!
May 21, 2008 at 6:46 am
Nice list! One thing I've been looking for forever, but never found (for free) is some tool to help manage pushing changes from development or testing servers to production...
April 10, 2008 at 7:29 am
Thank you for the interesting article! I'm just starting to try and get real virtualization going as a development environment and have run into similar issues, too. Since...
April 8, 2008 at 7:34 am
Andrew (3/31/2008)
Cute car... I'd really hate to have to open that front door to get in or out in when it's raining, though. 🙂
Hah, I thought the same thing! ...
March 31, 2008 at 7:26 am
Yeah, I've determined that from some more searching. Bah! What a stupid, stupid move. I was able to reinstall the stripped down VS2005 from the SQL install...
March 25, 2008 at 8:58 am
Nice article! I may have to take another look at some of my queries....
So, something like this:
Select
*
FROM
CadencedEventCustomer
WHERE
((FullName1 = 'Ed Jones')...
February 28, 2008 at 7:28 am
Jason Selburg (2/15/2008)
In my understanding, they are functionally the same. The benefit I see is that it's easier to read using COALESCE.
Thanks, that was my thinking, too regarding the 'easier...
February 15, 2008 at 12:06 pm
Ramesh (12/6/2007)
Or something like this?
SELECTTOP 5 T.*
FROM( SELECT itemid, MAX( dateaccessed ) AS SNO FROM tblhits WHERE username = 'testusername' GROUP BY itemid ) T
ORDER BY SNO DESC
Thank you,...
December 7, 2007 at 8:27 am
Doh, I'm on SQL2000 for a month or so longer until we finish the upgrade to 2005....what's the CTE again?
The subquery seems to work, it just takes longer than what...
December 6, 2007 at 11:00 am
Viewing 15 posts - 16 through 30 (of 43 total)