-->

Difference between ADO NET source and OLE DB Sourc

2019-04-18 11:47发布

问题:

Can anyone say the Difference between ADO NET source and OLE DB Source in SSIS 2008 ?are they both same in any context ?

回答1:

With small datasets there is little difference between ADO NET source and OLE DB Source in SSIS 2008. The difference between them is how they communicate with their underlying data sources. OLEDB talks directly to OLEDB compliant sources, but ADO .NET source talks through a .NET provider. The only reason you should use the ADO.NET source is:

  • There no OLE DB providers available.
  • If you need data access from within a script task.
  • If you need to pass a data source to a custom component.


标签: ssis msbi