Viewing 10 posts - 16 through 25 (of 25 total)
row_number() worked very well. guess, I'm becoming rusty. Thanks very much!
January 14, 2009 at 1:20 pm
Thank you very much Steven. I've been staring at this for the past few hours and to get a very quick answer on a Friday afternoon just made my day....
August 1, 2008 at 3:45 pm
this should work:
declare @sql varchar(8000)
set @sql = ' SELECT NAME, ABC AS ' + @Month1 + ', XYZ AS ' + @Month2 + ', MNO AS ' + @Month3 +...
August 1, 2008 at 10:40 am
I had something similar to this and what I did was established a linked server and query the table as if it is part of sql server.
e.g. select top...
July 31, 2008 at 2:44 pm
check out appdev.com. That's where I got my CDs when I started to learn SQL Server 7.
The SQL Server 2000 DVDs are only 500 bucks. And that set will give...
July 29, 2008 at 9:35 am
Jeff, thank you very much. This is perfect.
Kindest Regards,
Michael
July 28, 2008 at 9:51 am
May I suggest SQL Server 2005 learning CDs/DVDs.
This will get you up to speed fast and you will be posting replies here pretty soon! 🙂
Regards
July 25, 2008 at 5:25 pm
Thanks, but I was able to resolve the issue by using an openquery() where I put the date rules within.i.e. I cased out all the dates.
July 25, 2008 at 5:08 pm
Hi Jeff, thank you. I think this will work. But I also need the filesize & filedates. I can store them in a #temp table.
Best Regards,
Michael
July 25, 2008 at 5:03 pm
Viewing 10 posts - 16 through 25 (of 25 total)