fiogf49gjkf0d Nothing is simple. Is it? I am trying to create an Integration Services project in SQL Server 2005 and do it the right way by using the SLX OLE DB provider. I created my data source which went fine. Next I try to create an OLE DB Source using a SQL statement. This is the SQL StatementSELECT YEAR(a.estimatedclose) AS closeyear, MONTH(a.estimatedclose) AS closemonth, ISNULL(a.closeprobability, 0) AS closeprobability, a.estimatedclose, a.salespotential, a.opportunityid, a.status FROM Opportunity a WHERE YEAR(a.estimatedclose) = YEAR(DATEADD(dd, -1, GETDATE())) AND MONTH(a.estimatedclose) = MONTH(DATEADD(dd, -1, GETDATE())) ORDER BY YEAR(a.estimatedclose), MONTH(a.estimatedclose), a.closeprobability, a.estimatedclose When I Parse Query I get a really strange error. If I click Build Query and click Verify SQL I am informed "The command is not supported by this provider."
Which command?
Thanks, John G. |