Viewing 11 posts - 16 through 26 (of 26 total)
Fenicon,
looks like you just need a subquery.
SELECT X.Fld1,X.Fld2, X.Fld3, X.Fld4, JEST.Fld5, JEST.Fld5 FROM JEST
JOIN (
SELECT QAVE.Fld1,...
September 8, 2009 at 10:40 am
What style are you looking for? Just the date without the time?
There is no way to store just the date inside a datetime column, unfortunately
in 2008 there are a couple...
September 3, 2009 at 1:42 pm
Jacob,
1XX conversions require a four digit year, X conversions require a two digit year. I.E. 101 is the same format as 1, but 101 expects four...
September 3, 2009 at 12:55 pm
Best of both worlds you could append a number to dupes, then put the code in place to not allow duplicates to be saved!
August 31, 2009 at 2:42 pm
Gail, just a fair warning:
If I ever discover the technology and/or power to suck information from another's brain, yours way up there in my list of brains to empty.
August 27, 2009 at 1:16 pm
jcrawf02 (6/18/2009)
Tom Brown (6/18/2009)
June 18, 2009 at 10:12 am
As far as I know, he has no idea what your e-mail address is. When you e-mail someone all you see is their User Name, and it is then sent...
June 15, 2009 at 11:40 am
No love for the ISNULL it seems- can you guys explain the negatives of doing it that way? Thanks 😀
I know there is the small performance hit, is this something...
June 1, 2009 at 2:43 pm
Always an ISNULL for me, interested to hear other's opinions
SELECT * FROM XXX WHERE
BeginDate @Date
June 1, 2009 at 12:55 pm
Off the bat- First post 😀
Also- This might be a little bit sloppy (but everything else in this thread is a bit sloppy thus far :-))
declare @Inttime int
set @Inttime =...
April 28, 2009 at 6:57 am
Viewing 11 posts - 16 through 26 (of 26 total)