Viewing 15 posts - 10,201 through 10,215 (of 13,874 total)
What's your data source?
If it's an RDBMS of some sort, you could always change it to a query containing a UNION:
select [good stuff]
union
select [vapour stuff]
January 21, 2013 at 11:49 am
You're on the right track, I think.
But what I would do is create a try ... catch block and attempt to do the convert to date in the 'try' bit....
January 21, 2013 at 11:43 am
I'd probably leave the package exporting to a fixed file name and add a final File System Task (or Script Task if you prefer to write a bit of code)...
January 19, 2013 at 9:24 am
Have you tried using a data conversion component?
January 18, 2013 at 3:16 am
--Statement 2
select * from @Table1
where (column2 != 'AP' or column3 != 'U')
January 17, 2013 at 3:30 pm
After your Excel source, add a data conversion component.
Use it to convert your problematical column to DT_STR. You will see at this point that you are able to specify the...
January 17, 2013 at 5:47 am
I would guess that you have created a column in your dataflow called 'Copy of SSN' and that the error is occurring because you have mapped this column to one...
January 16, 2013 at 6:13 am
Nice error message. What's your question exactly?
January 16, 2013 at 5:58 am
aaron.reese (1/15/2013)
Staging tables?What is this - SQL7? 😛
I would like to hear your reasons behind this comment. In many circumstances, a staging table SSIS solution will be one or...
January 15, 2013 at 1:22 pm
The fact that you need to check all of the rows in the file before deciding whether to commit any of them makes a one-pass solution a little difficult.
I'd be...
January 15, 2013 at 7:18 am
Koen Verbeeck (1/15/2013)
Phil Parkin (1/15/2013)
You missed the obvious question: why use a script component to do lookups when there is already a dedicated lookup component?
To quote the OP:
to perform additional...
January 15, 2013 at 3:50 am
Koen Verbeeck (1/15/2013)
You can use SQLCommand or other relevant classes.
You missed the obvious question: why use a script component to do lookups when there is already a dedicated lookup component?
January 15, 2013 at 3:42 am
kenambrose (1/14/2013)
If using oledb destination in data flow task, the data access mode property...
January 14, 2013 at 11:34 pm
Viewing 15 posts - 10,201 through 10,215 (of 13,874 total)