Viewing 15 posts - 466 through 480 (of 505 total)
maybe there is a null or empty string
try this in the derived column
ISNULL( TextField ) || TextField == "" ? NULL(DT_I4) : (DT_I4) TextField
January 28, 2009 at 1:18 pm
use a derived column and create a new column using the formula such as (DT_I4) TRIM( FieldNameOfStringData )
January 28, 2009 at 10:36 am
I'm glad you got it working, looks like I was a bit off base on that one.
Just to clarify, you have a data flow with an OLE source, set to...
January 28, 2009 at 10:14 am
You mention an OLE Source but not an OLE Destination.
My guess is you are reading data from one table and want to insert to another.
Forgive me if I'm being to...
January 23, 2009 at 5:16 pm
I like the idea of moving the files and we currently use the file watcher in one of our ETL's, works great. If you can't move the files, here's a...
December 23, 2008 at 6:59 am
I feel like we're beating a dead horse at this point but I need to add on to what ...curril said.
I was in the same boat 2 years ago, the...
December 23, 2008 at 6:11 am
Project Real from Microsoft is a good resource for understanding business intelligence - http://www.microsoft.com/technet/prodtechnol/sql/2005/projreal.mspx#EEAAC
Also Adventure works has a DW example
December 20, 2008 at 6:18 am
I do the same thing Paul said. Here's the technique I use when dealing with assigning surrogate key values to my fact records for unknown members. I set up every...
December 20, 2008 at 6:04 am
This was a pretty old post and since then I just use a fully formed sql statement to get the data. I am pretty sure the Pervasive OLEDB provider does...
December 10, 2008 at 5:56 am
What does each record in the table represent?
Is it 1 record per invoice, per order, per line item?
November 25, 2008 at 10:38 am
Ok,
I should not have assumed by what I saw in perfmon.
I have always assumed doing something like a merge join would actually issue a command to sql which would do...
November 25, 2008 at 10:26 am
After watching the performance on this is appears that dtexec.exe uses very little memory and cpu.
I never gave this much thought but DTEXEC is generally issuing commands to SQL so...
November 25, 2008 at 9:43 am
Not sure what the problem is?
Sounds like you want to interate through a list of flat files and put that data into tables.
If so setup a file connection with...
November 25, 2008 at 6:54 am
I have it working now. Thanks so much for the help.
Here is a summary of what I did:
First deployed the SSIS package to the server using SQL Server storage
Usign DTEXECUI.exe...
November 21, 2008 at 8:17 am
Viewing 15 posts - 466 through 480 (of 505 total)