Viewing 9 posts - 1 through 9 (of 9 total)
Thanks Joe.
In the short term, I cannot change the DDL based on where we are in our development cycle. I heartily agree that the recursive approach is confusing (one...
July 29, 2011 at 5:59 am
My apologies vis-a-vis etiquette:
CREATE TABLE [dbo].[ancestor](
[id] [bigint] NOT NULL,
[parent_id] [bigint] NOT NULL,
[language_id] [int] NULL,
[level] [int] NULL,
[ctr] [int] NULL,
[total] [int] NULL
) ON [PRIMARY]
go
alter table ancestor add constraint pk_ancestor primary key clustered(id,parent_id)
go
insert...
July 28, 2011 at 10:41 am
Thanks Jeff. Thank confirmed both my suspicion and how recursion loop is defined.
July 15, 2011 at 5:52 am
I also too the function route
create function uf_mixed (@p_col varchar(max))
returns varchar(max)
as
begin
declare @lgth int, @ctr int, @found varchar(1), @v_col varchar(max), @nxt int
select @lgth = LEN(@p_col), @ctr = 1, @found =...
October 19, 2010 at 9:11 am
I was unaware of Health Check. I'll definitely check it out.
Thanks, Mark
August 1, 2007 at 7:42 am
This is pretty neat. As advertised, it installs really quickly and I'd envision it to be a handy back pocket tool. One question: Has anyone used it to logon to...
June 27, 2007 at 7:21 am
Hi BankaR,
I added this code in an ActiveX script at the top of my package:
For i = 1 to oPackage.Tasks.Count
' Verify that this task is a transformation task...
May 20, 2005 at 11:27 am
Good Article. I wish there was something like it when I first started doing portable DTS work.
Chalk me up as another fan of UDL and INI files.
To add to...
May 20, 2005 at 6:03 am
Thanks Phill
This seems to make the most sense to me.
I can loop around the steps looking at ExecutionStatus and ExecutionResult fairly easily. It seems like a constant loop would...
March 2, 2005 at 2:12 pm
Viewing 9 posts - 1 through 9 (of 9 total)