Viewing 15 posts - 12,481 through 12,495 (of 13,876 total)
Following on from Tim's response, you have to decide what is involved in your migration.
If it's just all 'application' databases, you can forget the system databases - they already exist...
October 29, 2009 at 9:38 am
venkatramreddy (10/29/2009)
Thanks for reply. If I refresh the path of the file in the Job step then it picks the updated package.
:unsure: How disappointing. I still think magic and ghosts...
October 29, 2009 at 9:27 am
But Row_Number() was new in 2005, wasn't it?
Doesn't help that I'm developing on 2005 for a 2000 system ...
October 29, 2009 at 6:10 am
Oh yeah, that's what I want, very nice work, thanks! 😎
Now I'll try to understand how you did that 🙂
Thanks again.
October 29, 2009 at 6:03 am
There are some third-party utilities available which allow you to run a Crystal Report from the command line. So, once you have that working, your problem reduces to building the...
October 29, 2009 at 1:11 am
I hope you did not take offence - none was intended. My comment was meant in fun.
I never even suspected that English was not your native language - you...
October 28, 2009 at 10:33 am
CozyRoc (10/28/2009)
...
These two are one of the best:
...
Hmmm, you might be pretty good at SSIS, but I'm not so sure about your English! 😀
October 28, 2009 at 10:20 am
If no one else answers in the meantime, I will try to set up a test later. There must be a way! What about firing in the number which Excel...
October 26, 2009 at 10:01 am
Sounds like it's going into Excel as text to me.
October 26, 2009 at 9:52 am
So if you remove all display formatting in Excel, what does the field actually contain?
October 26, 2009 at 9:25 am
OK, if your table is called t1, this should do it:
with t as (
select distinct ID, Max(Cost) Cost
from T1
group by ID
)
select t1.ID, max(t1.Cost), Max(t1.ItemNumber) from T1
join T on T1.ID =...
October 23, 2009 at 11:23 am
If you can use SQL Server to do the work:
Select Convert(Varchar(10) , Cast('12-OCT-2009 18:23:20' as Datetime), 103)
--edit - oops, misread your post. That's not a date datatype 🙁 ignore me.
October 23, 2009 at 11:11 am
OK, try
select ID, Max(Cost), Max(ItemNumber)
from ...
Group By ID
October 23, 2009 at 10:49 am
If there is more than one item number, as in the case of
2 30 D
2 30 EE
which item number would you want to select? D, EE or does not...
October 23, 2009 at 10:36 am
Don't do the deinstall, it won't fix this.
Sounds like an Excel driver 'feature', see here[/url]. You could try the solutions offered there. Or ...
Try adding a column to the right...
October 23, 2009 at 10:31 am
Viewing 15 posts - 12,481 through 12,495 (of 13,876 total)