Viewing 15 posts - 12,766 through 12,780 (of 13,876 total)
It seems to make sense, I suppose (no point me asking why it wasn't done that way from the start).
Are the tables/fields in all the databases the same? Are you...
May 30, 2009 at 2:36 am
Instead of adding only 1 new field to the pipeline, add enough char(1) fields to accommodate your binary characters.
Then assign the fields in the script component. This example shows you...
May 29, 2009 at 10:35 pm
I'll show you how to do the conversion part.
Add a new string field to your pipeline - I used 'BinaryString'.
Then add a script component. The line that does the conversion...
May 29, 2009 at 7:32 pm
Does the source contain a string: "2pow3" or an integer: 8?
You say integer, so I will assume 8. Just looking at it now ...
May 29, 2009 at 6:57 pm
Eek! What is the rationale behind combining the databases? Are they all related somehow?
May 29, 2009 at 6:51 pm
zbleslav (5/29/2009)
Phil Parkin (5/27/2009)
zbleslav (5/27/2009)
Hi,First create excel file and make connection and then change property of "Excel Connection Manager" DelayValidation to True.
How does this accommodate the dynamic file-name requirement?
Question was:
"How...
May 29, 2009 at 6:09 am
SSIS requires that you put your data through a sort transformation before using a MERGE JOIN - regardless of whether the source data is already sorted.
Have you investigated the LOOKUP...
May 28, 2009 at 8:10 pm
Greg J (5/28/2009)
I found a similar post here that I've been...
May 28, 2009 at 8:06 pm
For a start, try using single quotes around your literals ...
--edit:
You may first want to create an sp to help. Something like:
Create procedure [dbo].[s_ExecutePackage]
@FilePath varchar(1000) ,
@Filename ...
May 28, 2009 at 7:50 pm
bc (5/28/2009)
May 28, 2009 at 7:37 pm
Yuk, I am amazed that anyone would provide you with a file of this quality.
Is it true that your field delimiter is a space? But then that there is also...
May 28, 2009 at 8:41 am
sachinvinod2k (5/28/2009)
May 28, 2009 at 8:21 am
Maybe add a couple of derived columns, cSex and cDOB (or whatever) which are set correctly and use these.
If there's not enough flexibility in there, a script component could easily...
May 28, 2009 at 7:53 am
Does the SQL Agent user have permissions to access the files?
May 28, 2009 at 12:21 am
Delay validation should be set to True, not False, if the source file does not exist until run-time.
You could approach this a different way. Set up a hard-coded connection to,...
May 27, 2009 at 10:24 pm
Viewing 15 posts - 12,766 through 12,780 (of 13,876 total)