I have a SQL View that simply selects a few fields from a database table for a join to a feature class in another. The created view exists in the same database as the feature class, so it could be published to a feature service.This works fine in ArcGIS 10.0, but when I try to return results from the view in ArcGIS 10.1, I'm not seeing any rows. Why might this be? This is my SQL statement. Nothing fancy:USE [GDB_ANR_DDEV]
GO
/****** Object: View [ANR_Admin].[ANRL_UVAInspectionsDue] Script Date: 9/12/2013 7:26:31 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [ANR_Admin].[ANRL_UVAInspectionsDue] AS
SELECT a.PSPAN, yearoflastinspection as [Year Of Last Inspection]
FROM [ANR_Admin].[CADASTRAL_UVAEDIT_POLY] as a
INNER JOIN lands.dbo.[anrvw_InspectionsDue] as b
ON a.PSPAN = b.SPAN