Viewing 15 posts - 8,701 through 8,715 (of 13,876 total)
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
abhas (2/4/2015)
Names are well formatted.Thanks
Then you are onto a winner. Try with the derived column idea and post back with any further problems.
February 4, 2015 at 5:53 am
If the names really are formatted perfectly, you should be able to create derived columns to do this for you.
But I'll bet that they are not all quite so well...
February 4, 2015 at 5:12 am
Not possible, as far as I know.
You can parameterize it, if you have 2012+, by right clicking on its data flow task and selecting 'Parameterize' (who'd have thought?) – though...
February 4, 2015 at 4:53 am
vipin_jha123 (2/3/2015)
I am new to the SSIS. I am trying to load multiple source tables from my staging database to corresponding destination table in the data warehouse.
All the source...
February 4, 2015 at 12:54 am
nguyenl71 39244 (2/3/2015)
February 3, 2015 at 10:16 am
katrina78 (2/2/2015)
I understand your frustration, I encounter this a month ago anyway I solved it by downloading Long Path Tool.
Can you elaborate on that please? I'm not sure what that...
February 3, 2015 at 12:20 am
Viewing 15 posts - 8,701 through 8,715 (of 13,876 total)