Viewing 15 posts - 16 through 30 (of 104 total)
Jeff Moden (7/7/2014)
jfogel (7/7/2014)
July 7, 2014 at 9:08 am
Jeff Moden (7/7/2014)
david.holley (7/7/2014)
SELECT [Value]
FROM [sysNumbers]
...
July 7, 2014 at 8:49 am
If you're working with a specific range of numbers, for example 1980 to 2020, simply add that to the WHERE statement.
SELECT [Value]
FROM [sysNumbers]
WHERE Value BETWEEN...
July 7, 2014 at 6:02 am
"We always test and when we do, its in production."
January 3, 2014 at 11:45 am
Disney uses a AS/400 based PMS which uses sequences on every record. I never started a conversation as to it purpose, but I'm assuming that it provides a means of...
January 3, 2014 at 9:40 am
That was my first thought. Then it occurred to me that 1) there are columns in the table that aren't required and 2) there could be columns in the file...
January 2, 2014 at 7:06 pm
I'm now entertaining the idea automagically presenting a list of fields relevant to the import that the user is attempting and the status of each field.
Field ...
January 2, 2014 at 3:45 pm
Sweet! It's mostly up and running.
December 30, 2013 at 9:32 pm
Thank you for that very thorough reply that sounds a lot like an article on here (hint). I think that my frustration is the general lack of practical examples. I...
December 29, 2013 at 5:19 pm
I was thinking holidays where a business is closed and then just US holidays. Of course, it'd also be nice if MS were to do something whereby they published worldwide...
April 24, 2013 at 7:29 am
Woah! My brain just exploded (a la Mars Attacks!). That'll take some time to digest. It didn't occur to me until just now that most major US holidays observed by...
April 24, 2013 at 5:38 am
{Obvious newbie-ness comment deleted}
April 17, 2013 at 8:36 am
Would wrapping the SELECT inside another work if the specific order is a concern? Something like...
SELECT @NewString = @NewString + NameInitials FROM
(SELECT NameInitials FROM Employees WHERE OfficeId = 1001 ORDER...
April 7, 2013 at 6:52 am
jjturner (4/5/2013)
Otherwise...
April 5, 2013 at 2:33 pm
jjturner (4/5/2013)
April 5, 2013 at 1:42 pm
Viewing 15 posts - 16 through 30 (of 104 total)