(SSIS with SQL 2012)
I have a data flow that had as its first step an OLE DB with SQL Command:
EXEC dbo.spGetPIData 'Finance', '1'
WITH RESULT SETS (
( label VARCHAR(250) NOT NULL,
date DATETIME NOT NULL,
value DECIMAL(18,9) NULL))
The stored proc in SQL is making a call to a OSISoft PI Historian. I have examples from previous projects (before my time) that used this exact stored proc with the same format, however they used an Execute SQL Task and sent the result set to a variable object. Is there something I'm not configuring right in the OLEDB task? I've tried all the different datetime types and I keep getting the same error.