Viewing 15 posts - 16 through 30 (of 60 total)
Use a union all transformation to merge the rows and point to one destination.
September 2, 2008 at 4:36 pm
You can try to do a conditional split and check if the column is null before inserting into destination.
There are some null functions in Conditional Split transformation which can help.
try...
September 2, 2008 at 12:37 pm
Please check your mapping in destination
If it says it cannot insert a null value then probabaly the destination mapping is incorrect or the values coming in data flow are...
September 2, 2008 at 11:33 am
90 percent i'm sure it doesn't work
probably give a try and check the results
August 14, 2008 at 3:22 pm
There can be a few cases where the derived transformation can fail like the data can come as string instead of a number. So you can use and conditional operator...
August 12, 2008 at 3:45 pm
Use type Numeric
Change the Data Scale and precision values
August 12, 2008 at 3:40 pm
When u select the connection and check for the properties you can find a connection string
so add this tag in the connection string value
it'll be like
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=data.xls;Extended Properties=Excel 8.0;HDR=YES;IMEX=1
August 11, 2008 at 3:44 pm
I'm sure the query plan will give you a percentage at each checkpoint
so based on the percentages you can determine which operation is taking more time
If it is evenly...
August 11, 2008 at 3:38 pm
can you try to rebuild all the indexes in sql server 2005 if there are any
August 11, 2008 at 3:30 pm
Temp tables can be used in ssis 2005
but for this feature to work you shud set the RetainSameConnection property to true in the Oldedb/Sql Connection.
Once you set this the...
August 11, 2008 at 3:25 pm
Think you shud be using the SingleRow property in execuute sql task and map the output to variables
August 11, 2008 at 3:22 pm
Use IMEX =1 in the connection property string of the excel connection
that'll set the mode to import and all the values will be populated.
August 11, 2008 at 3:20 pm
you can deploy the package as a job using Sql Agent and set the job to run at a specific time
i hope this link helps
August 8, 2008 at 4:10 pm
try adding IMEX = 0 to the excel destination connecting string in the properties attribute
if it works then gud
Properties="Excel 8.0;HDR=YES;IMEX=1"
August 8, 2008 at 4:01 pm
Viewing 15 posts - 16 through 30 (of 60 total)