Difference between ADO NET source and OLE DB Sourc

2019-04-18 11:50发布

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

标签: ssis msbi
1条回答
Root(大扎)
2楼-- · 2019-04-18 12:33

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.
查看更多
登录 后发表回答