Viewing 2 posts - 1 through 2 (of 2 total)
I use appraoch #2 and that working fine for me...
SQL Server 2012 does not support Linked Server to SQL Server 2000, workaround[/URL]
January 29, 2014 at 4:50 am
#1684244
Solution for your problem may be something like that:
SELECT
PeopleID
,Name
,COALESCE([1],0) AS Score1
,COALESCE([2],0) AS Score2
,COALESCE([3],0) AS Score3
...
January 27, 2014 at 8:11 am
#1683568