Viewing 15 posts - 10,111 through 10,125 (of 13,874 total)
mister.magoo (2/20/2013)
Sorry, feeling a bit :hehe::w00t:
Truly...
Create a dates table (with weeks in it)
Add a...
February 21, 2013 at 2:09 am
I'd say that the first thing you should try is some query optimisation - maybe you can get the query running fast enough so that you don't need to do...
February 21, 2013 at 2:07 am
There are almost always alternatives, and knowing the pros and cons of each is a really useful thing. In this case, once data is in a staging table I would...
February 20, 2013 at 7:47 am
Resender (2/20/2013)
Tried that and it still executed the flat file destination
I did not say it wouldn't.
My suggestion is to perform the deletion as part of the control flow -...
February 20, 2013 at 7:43 am
Maybe you could come at this from another angle.
Why not put a rowcount transformation underneath the script component and then delete the file in the control flow if [rowcountvariable] ==...
February 20, 2013 at 7:09 am
Jacob Pressures (2/19/2013)
February 20, 2013 at 3:16 am
sunder.mekala (2/19/2013)
why 5 ole db sources?
As i dont...
February 19, 2013 at 11:33 am
sunder.mekala (2/19/2013)
FYI, No Sorting requirements, and flat file formatting is delimeter, Thanks.
I don't know what you mean when you say "..flat file formatting is delimeter," but from what I can...
February 19, 2013 at 10:43 am
Daniel Bowlin (2/19/2013)
How about1.2 - FLOOR(1.2)
Floor returns the largest integer that is less than or equal to the numeric expression
Not true for negatives. Try this:
select -11.2 - floor(-11.2)
But stick to...
February 19, 2013 at 8:36 am
Loads of examples of this all over the Internet, but try this for starters & see whether it helps.
February 19, 2013 at 6:47 am
opc.three (2/18/2013)
February 19, 2013 at 6:42 am
And here's a really obvious (yeah right!) way of making Lynn's example work:
declare @DateVal datetime;
set dateformat mdy;
set @DateVal = '2013-02-14T00:00:00';
select @DateVal;
go
declare @DateVal datetime;
set dateformat dmy;
set @DateVal = '2013-02-14T00:00:00';
select @DateVal;
go
February 19, 2013 at 5:13 am
Are you sure that having a single flat file containing mixed data would be an acceptable solution? Sounds like a real mess to me, but, funnily enough, I had to...
February 18, 2013 at 9:09 am
Your ExecuteSQL task will have associated with it a system variable called ContainerStartTime, scoped only at the task level. Maybe that is worth a try.
February 18, 2013 at 7:29 am
I apologize once again if that will help.
I would have removed this post if it was in my hands, but please give me a chance to explain that I was...
February 15, 2013 at 4:18 am
Viewing 15 posts - 10,111 through 10,125 (of 13,874 total)