Viewing 15 posts - 8,701 through 8,715 (of 13,882 total)
Can you tell us the full data types of all the columns involved please?
Edit: have a look here. It is likely that you are experiencing rounding errors at a very...
February 9, 2015 at 10:46 am
Here's how I would do it.
Add a lookup to your package and use it to determine Insert vs Update.
If it's an Insert, send it directly to the target table.
If it's...
February 9, 2015 at 10:37 am
rocky_498 (2/9/2015)
I am using so far two transformations ( Derived Column, Data Conversion)
Plus I am using SCD..
That would be next question. If I pick Second Option...
February 9, 2015 at 10:29 am
What sort of transformations do you have in mind?
Will you be doing just inserts, or inserts and updates, or inserts, updates and deletes?
February 9, 2015 at 10:22 am
Guitar_player (2/9/2015)
February 9, 2015 at 4:50 am
Guitar_player (2/9/2015)
We will have project connections in our connection manager , so i right click on them and clicked on "Parameterize" option
and selected the connection string...
February 9, 2015 at 4:27 am
Guitar_player (2/9/2015)
my parameter doesnt contain any expression
But does an expression contain the parameter?
February 9, 2015 at 4:08 am
Does your package contain an expression with a sensitive parameter?
February 9, 2015 at 3:35 am
Does this thread help?
February 9, 2015 at 3:22 am
Guitar_player (2/9/2015)
I need another help from you , currently in our project we have given as "DoNotSaveSensitive" as the Encrypt level , suppose if the...
February 9, 2015 at 3:10 am
A little off topic, but it would be interesting to know why you would choose to convert from CSV to Excel prior to doing an import. I would usually suggest...
February 8, 2015 at 6:39 am
Can you explain what you are expecting this row to do please?
CAST(ROW_NUMBER() OVER (PARTITION BY DIA.reference ORDER BY dia.entry_date+dia.entry_time) AS datetime) 'TEST'
February 6, 2015 at 5:20 am
If you can find the command-line syntax, you should be able to use an Execute Process task to do this.
Here is a possible way of doing it.
February 5, 2015 at 3:17 am
You might be able to use this technique:
declare @T1 table (Id int)
insert @T1
(Id)
values (1),(2),(3);
with vals(x) as (select ',' + cast(Id as...
February 4, 2015 at 6:27 am
abhas (2/4/2015)
SUBSTRING(Name,1,FINDSTRING(Name,",",1) - 1)
but not able to identify FirstName as Ramesh. M...
February 4, 2015 at 6:12 am
Viewing 15 posts - 8,701 through 8,715 (of 13,882 total)