Viewing 8 posts - 1 through 8 (of 8 total)
Create induviual Package configuration for each Connection manager in a package . And make connection manager name same in all the package and choose the Same configuration file for the...
April 7, 2011 at 4:19 am
may be you can use this
Declare @mgrid int,@empid int
set @empid=234
declare @hir table ( empid int,mgrID int, title varchar(255))
select @mgrid= ManagerID from dbo.Employee where EmployeeID= @empid
while (@mgrid is...
March 23, 2011 at 1:28 am
siamak.s16 (11/9/2010)
How do I dump a table from an object variable into a flat txt file using SSIS 2008.
What you mean dump a table from an object variable.?
Can you...
November 9, 2010 at 2:22 am
you can try assemblies ..but COM assemblies were deprecated in SQL Server 2008 Analysis Services (SSAS)
November 4, 2010 at 9:48 am
How xml data is stored in table.?
oledb source and destination to move data from database to another if its stored in table
November 3, 2010 at 2:57 am
My suggestion to you is create two package instead of single package trying to do everything in one package
two packages are
1) First package will identify the error data and...
November 3, 2010 at 1:52 am
HI Greg,
you can try a work around by putting a conditonal split just after the flat file soruce and checking for condtion like
FINDSTRING([ActionDate ],"|",1) <= 0 (you can...
November 3, 2010 at 1:17 am
hi,
if its not a highly transactional table try creating a clustered index on timestamp. unique index on the key coloumn.
September 22, 2010 at 2:34 am
Viewing 8 posts - 1 through 8 (of 8 total)