Viewing 8 posts - 31 through 38 (of 38 total)
Free download at the US Census Bureau web site
April 11, 2009 at 11:59 am
The default recursion limit is 100.
You need to add Option (MaxRecursion 32000) to the Query
You can choose a number lower than 32000, but must be at least equal to the...
February 25, 2009 at 7:09 am
Jeff
Thanks for the response and the time measurements. Unfortunately, the MaxRecursion Option cannot be applied inside the function, it has to be applied in the Select statement using the function....
February 21, 2009 at 6:53 am
Below is a function based on recursion for parsing a string with a specfied delimiter
Go
If Object_id('GmtGetTokens') is not null drop Function GmtGetTokens
GO
Create Function dbo.GmtGetTokens(
@AllElse Varchar(8000),
...
February 18, 2009 at 5:54 am
Noel
Perhaps I mis-stated the problem. I am looking for separate contiguous intervals with the same value, not the start and end for any value [as your code provides].
In any...
February 6, 2009 at 6:32 am
I have a somewhat different business application summarized below.
A table with columns Interval and Value. These represent an activity that occurs at each minute of a 24 hour day.
The...
February 4, 2009 at 6:52 am
The Visitor
The Edge of Heaven
The Diving Bell and the Butterfly
The Other Side
Transamerica
Gran Torino
Slumdog Millionaire
January 30, 2009 at 5:48 am
Create function CalculateVerhoeffDigit(@p_input varchar(Max))
returns smallint
As
Begin
Declare @PV_D varchar(100),@PV_P varchar(80),@PV_INV varchar(10)
Declare @lv_c Int, @lv_m Int,@lv_n varchar(255), @lv_i Int,@lv_len Int
Set @PV_D= '0123456789123406789523401789563401289567401239567859876043216598710432765982104387659321049876543210'
Set @PV_P= '01234567891576283094580379614289160435279453126870428657390127938064157046913258'
Set @PV_INV= '0432156789'
Set @lv_c= 0
Set @lv_i= 0
Set @lv_len= Len(@p_input)
Set...
January 23, 2009 at 7:41 am
Viewing 8 posts - 31 through 38 (of 38 total)