Viewing 15 posts - 11,341 through 11,355 (of 13,871 total)
praveensc2003 (6/12/2011)
why do you want to write script . It can be done easily using FileSystemtask.
I'd like to see that. Please provide details of how the FST can create Excel...
June 12, 2011 at 1:28 pm
Randheer (3/13/2011)
so get...
June 10, 2011 at 5:06 am
I'm interested to know how you avoided getting a meta-data error as a result of the expected columns being missing on the dodgy row?
June 10, 2011 at 2:38 am
It would be useful to know why though, as it's an unusual request. Instead you have avoided the question and simply restated your original post.
June 9, 2011 at 7:15 am
catherine (6/9/2011)
CurrentValue1 = 39340.00CurrentVaule2 = 49340.00
CurrentValue3 = 29370.00
CurrentValue4 = 0 or Null
CurrentValue5 = 0 or Null
....etc
therefore the max point would be the value from CurrentValue3
select Coalesce(NullIf(CurVal5,0), NullIf(CurVal4,0), NullIf(CurVal3,0), NullIf(CurVal2,0), NullIf(CurVal1,0))
should...
June 9, 2011 at 5:08 am
The last current value with a non 0 value/null held
I've tried, but I don't know what that means. Is there a date in there from which to determine 'last'? Is...
June 9, 2011 at 4:56 am
alexanderbebe (6/9/2011)
Later, i tried by renaming the excel file from xls to xlsx but i am getting the error as "Could...
June 9, 2011 at 2:13 am
Please include a screen shot of the control flow - perhaps just after it has failed to demonstrate where it failed.
Also include the text of the error.
June 8, 2011 at 1:37 pm
Have you considered using SSIS to do this? It could handle the commits as you wish.
June 8, 2011 at 9:07 am
Thanks for the blog link - I learnt something useful today.
June 8, 2011 at 3:23 am
GilaMonster (6/8/2011)
All indexes, if they can be used, reduce the IO cost for queries. That's the whole point of an...
June 8, 2011 at 2:40 am
hl6a (6/7/2011)
Is it possible to use precedence contraint to bypass a task? For example, the control flow starts with task A, checks an expression, if true, run B then...
June 7, 2011 at 10:08 am
Another problem is where Tax_Period is a stored as a string (which it appears to be), and not a numeric, as exemplified below:
DECLARE @Tx1 VARCHAR(5), @tx2 VARCHAR(5)
SET @tx1 = '21'
SET...
June 7, 2011 at 7:59 am
Note also that custom formatting in Excel has no effect on the data which is stored or extracted - it is a display format effective only in the Excel application.
June 7, 2011 at 7:36 am
davidsalazar01 (6/6/2011)
Chris,--
Is that Craig Chris or Phil Chris? 🙂
We need to know what you will be doing with the dates before we suggest the best solution.
June 6, 2011 at 10:29 am
Viewing 15 posts - 11,341 through 11,355 (of 13,871 total)