Viewing 15 posts - 16 through 30 (of 70 total)
Aaron N. Cutshall (7/24/2009)
Terri (7/24/2009)
July 24, 2009 at 11:51 am
Aaron N. Cutshall (7/24/2009)
July 24, 2009 at 11:39 am
Well, i have not been counting but maybe I read 30-40 books a year, mostly fiction. I will read 4-5 books on vacation or travel, but it will...
July 24, 2009 at 7:24 am
ajaykshanker (7/22/2009)
July 22, 2009 at 1:02 pm
In our web application we can search for a User by a portion of the name or logonid as follows
SELECT UserSID
,LoginID
...
July 21, 2009 at 8:44 am
andrewd.smith (7/1/2009)
REVERSE is one of the less performant string functions in TSQL, so this alternative expression calls REVERSE only once.
SELECT RIGHT(@nam, CHARINDEX(' ', REVERSE(@nam)) - 1)
Bear in mind that this...
July 6, 2009 at 10:12 am
Good explanation Jeff. A small point, your solution fails if there is more than 1 space between the 2 words. e.g 'Lincoln Lincoln' has length 16. So...
June 10, 2009 at 9:14 am
We have triggers that update audit tables. In order to avoid the problem your are describing we do not use an identity column in the audit table. Instead...
June 5, 2009 at 7:03 am
When I give up a machine at work I either wipe the hard drive myself or give it to the tech support group to wipe the hard drive to remove...
May 28, 2009 at 6:39 am
I had one Fortran course as an undergrad and one PL/I in grad school. I got a Ph.D. in Math and taught at university for 10 years, first math,...
May 5, 2009 at 7:33 am
I work for state government for the past 25 years and salaries are a matter of public record. I could go to the library and look them up but...
January 16, 2009 at 9:00 am
mhaskins (1/9/2009)
January 9, 2009 at 9:01 am
andrewd.smith (11/24/2008)
SELECT DATEADD(DAY, DATEDIFF(DAY, '19000101', GETDATE()) / 7 * 7, '19000101') AS followingMonday,DATEADD(DAY, DATEDIFF(DAY, '19000101',...
November 24, 2008 at 9:16 am
GilaMonster (11/6/2008)
November 7, 2008 at 7:03 am
Adam Bean (10/7/2008)
Hey Terri, any thoughts on how to add some better logic in by randomizing the deptname a little better to avoid same deptname groups (teams)?Thanks
Well, it IS random...
October 8, 2008 at 10:09 am
Viewing 15 posts - 16 through 30 (of 70 total)