Viewing 15 posts - 151 through 165 (of 284 total)
I've only read the first two pages so forgive me if I say something that was already said later on.
Some have questioned FK relationships based on performance. Yes, there is...
November 20, 2007 at 10:58 am
You can always create a diagram with just the table you want to change. Then when the table is just the way you want it, right click on the white...
November 9, 2007 at 5:33 pm
Factorials are a perfect problem to use when teaching the concept of recursion. The solution is very simple and the definition is already stated in recursive form! ITRW, it is...
November 6, 2007 at 4:10 pm
My first programming position was on a DART system - Data Acquisition in Real Time. I got into the habit of squeezing every ounce of speed from the code. Everything...
October 29, 2007 at 1:39 pm
Sometimes we get data from all kinds of sources that often needs to be converted to a more usable form.
Parsing functions should be a dime a dozen. I would be...
October 26, 2007 at 4:55 pm
For what it's worth, I just want to add my voice to agree with the others. There are too many ways (user functions, calculated columns) to give your users what...
October 26, 2007 at 2:09 pm
Michael Meierruth (10/26/2007)
If you want an answer to that, see my spec a few pages back. It makes sense out of adding a day to Monday that gives you Monday.
I...
October 26, 2007 at 12:07 pm
Here is another function that came out of this particular exercise:
/*
=============================================
Author:
Tomm Carr
Create date:
10/23/2007
Description:
Returns a 1 if the specified...
October 26, 2007 at 11:39 am
This is why I defined in an earlier posting that each date was to be considered the beginning of the work day. That way, if the date you are given...
October 26, 2007 at 10:56 am
Here is my (hopefully) final submission. The trouble with all the previous submissions (including mine) was that they couldn't handle a few days that went over a weekend. Given a...
October 25, 2007 at 8:34 pm
If anyone is interested, here is a function that will return a DateFirst-independent value for the day of the week.
/*
Author:
Tomm Carr
Create date:
10/25/2007
Description:
...
October 25, 2007 at 7:10 pm
Greg Snidow (10/24/2007)
October 24, 2007 at 4:55 pm
Matt Miller (10/24/2007)
October 24, 2007 at 12:24 pm
Peter Larsson (10/24/2007)
Some of you know me by now.I just couldn't resist this one!
Wow, really close. It works with positive values for all starting dates. It only fails when subtracting...
October 24, 2007 at 10:48 am
Sergiy (10/23/2007)
I do it in one go, you do 2 tries.
And my option can be easily converted to set-based version. Can...
October 23, 2007 at 8:05 pm
Viewing 15 posts - 151 through 165 (of 284 total)