Viewing 15 posts - 9,121 through 9,135 (of 13,881 total)
That is the design.
I'm not going to write the code for you - there are lots of C# loop and copy file examples on-line.
Please have an attempt and then come...
August 22, 2014 at 12:00 am
pcd_au (8/21/2014)
The solution I'm working on requires reading source data...
August 21, 2014 at 11:57 pm
I'd use a Script Task:
1) Read file names from table into an array.
2) For each array element:
a) perform the file-existence check:
i) If true,...
August 21, 2014 at 11:43 pm
Maybe this would be a slightly better WHERE clause (handles NULLs)?
WHERE NOT EXISTS ( SELECT B1.[BedDays]
...
August 21, 2014 at 2:10 am
Koen Verbeeck (8/21/2014)
--Also, the subject line of the notification mail is suddenly full of strange characters.
Agreed - for example, for this thread, I see:
"RE: Avatar / Photo Issues?<!-- 864 --><!--...
August 21, 2014 at 12:38 am
romina (8/20/2014)
MMartin1 (8/20/2014)
Are you still using the looping? I don't think that will help. Just use a SCD transform and select it as a 'Historical Attribute' for the change...
August 20, 2014 at 11:59 pm
Tom Van Harpen (8/20/2014)
I am starting to see some benefits and after we get rolling I'm sure we'll find new and clever ways to use the...
August 20, 2014 at 11:43 pm
How about something like this?
declare @x table (TransId varchar(10))
insert @x
(TransId)
values ('4461'),
('14130')
...
August 20, 2014 at 7:37 am
What do you mean by 'statement'? Package? Proc?
August 20, 2014 at 1:07 am
Some quick questions and thoughts:
Are you migrating to the project deployment model?
Do your projects make full use of shared parameters and connection managers?
Have you changed the variables you want to...
August 19, 2014 at 11:50 pm
coreyjbaum (8/19/2014)
August 19, 2014 at 11:30 am
coreyjbaum (8/18/2014)
August 19, 2014 at 3:23 am
I think this might also work. A bit of a hack though - the split is much more elegant.
select replace(substring(storeNumber,10,7),'-','')
from dbo.StoreNumberTest
August 18, 2014 at 8:09 am
The SCD transformation can perform badly when compared against other approaches.
What type of SCD are you using?
When I refer to a set-based approach, I am referring to performing actions on...
August 17, 2014 at 11:52 pm
Viewing 15 posts - 9,121 through 9,135 (of 13,881 total)