Viewing 3 posts - 1 through 3 (of 3 total)
--input string
declare @s-2 as varchar(max)
set @s-2 = '47,48,49,92,93,94,95,96,108,107,37,27'
--input string delimiter
declare @delim as char(1)
set @delim = ','
--variable for output string
declare @o as varchar(max)
set @o = ''
--use tally...
March 12, 2012 at 8:24 am
--create table variable
declare @Table table(Id int identity(1,1), Var1 bit, Var2 bit, Var5 bit, Var7 bit, Var9 bit)
insert into @Table(Var1, Var2, Var5, Var7, Var9)
select 0, 1, 0, 0, 1
union all
select 0,...
January 13, 2012 at 7:04 am
In your Connection properties set:
RetainSameConnection = True
In associated Data Flow Task you may need to set property ValidateExternalMetaData = False
See the following for explanation and walkthrough:
January 9, 2012 at 3:10 am
Viewing 3 posts - 1 through 3 (of 3 total)