Viewing 10 posts - 376 through 386 (of 386 total)
D Smith (1/9/2009)
January 9, 2009 at 11:30 am
crussell (1/9/2009)
January 9, 2009 at 11:23 am
I believe that you need to dress to fit the situation. In my position, we wear casual business dress (dockers & polos) with jeans on Friday. However, regardless...
January 9, 2009 at 6:59 am
Similar to Sergio's solution, mine breaks down an age into quarterly periods (three months), also accounting for leap year, so partial ages can be compared:
ALTER FUNCTION [dbo].[fnCalcAge] (@DOB datetime, @CurrentDate...
June 30, 2008 at 5:54 am
This is a variant of the version that I use. I've modified it to use the same arguments as the one given in the article. I liked the...
April 21, 2008 at 6:38 am
Thanks, I'll look into it. I did find that I can create a table of entries of all rule children (tests and rules) using a recursive CTE. That...
February 1, 2008 at 12:24 pm
I know that a CTE is only used in the following statement, but in this case I have 2 CTE's defined (the 1st feeding the 2nd). The INSERT statement...
February 1, 2008 at 9:50 am
I realize that it's quite local, but the problem I have is that within the CTE is a recursive call to the same UDF that has the CTE. Therefore,...
February 1, 2008 at 9:35 am
I just did and you wouldn't believe what I discovered! :hehe: Apparently, if the SP begins with anything else other than "sp_", then I can't run it in...
December 6, 2007 at 2:34 pm
I was trying to avoid that if possible because the entire SP relies on being in the correct database. If it's not possible to switch the database within an...
December 6, 2007 at 2:03 pm
Viewing 10 posts - 376 through 386 (of 386 total)