Connecting through ODBC

Did anyone try fetching data from any database which is connected through ODBC. If so can you please share the details. In the data flow task of SSIS there is a facility for only oledb and not thru ODBC.




Answer this question

Connecting through ODBC

  • Murre

    From what I understand, ODBC was not implemented by MS in SSIS.

    See thread here



  • jony

    ODBC works as a source but not a destination.
  • Kiran05

    An ODBC Destination was not implemented due to time constraints, but you can certainly read from a database via ODBC.

    You need to use the ODBC Provider which is a member of the ADO.Net connection types. You then need to use the DataReader source to query your database.

    Larry Pope

  • Connecting through ODBC