Viewing 11 posts - 1 through 11 (of 11 total)
Ok, I'll try to correct this problem at the end (Excel), and see what they think.
Thanks a lot both.
Luigi
February 21, 2017 at 7:51 am
Is a script task in a SSIS package, where from a datatable I create an output csv file.
And the user does not want to see 0,00 in this...
February 21, 2017 at 7:26 am
For example, if I have the value 1,23 I still have 1,23, but if I get 0,00 I should show 0.
February 21, 2017 at 7:17 am
Perfect, thank you very much Chris.
Luigi
July 27, 2012 at 8:39 am
I need to put everything (values for next and previous) in only one row, if possible.
Luigi
July 27, 2012 at 7:49 am
For example, if I pass the date '2012-07-02 10:00:00'
(more recent than any other record) I'd like to obtain something like this:
PreviousID - PreviousDateRef - NetxID - NextDateRef
25 2012-07-01...
July 27, 2012 at 7:40 am
In the case of one result set:
select id, dateref, groupid from
(
select top 1 id, dateref, groupid from test1 where dateref <= @testvar order by dateref desc
) prev
union all
select id,...
July 27, 2012 at 7:28 am
Thank you Koen, I'll try to disable the cache.
Luigi
December 16, 2011 at 8:22 am
Ah ok, so I have to re-format everything.
Thanks a lot.
Luigi
November 28, 2011 at 1:45 am
Viewing 11 posts - 1 through 11 (of 11 total)