SSIS documentation Reference

2019-09-12 07:30发布

问题:

Where is the reference documentation for SSIS Script components? For example, Script Components inherit from a class called UserComponent and the overridden function has a local variable of type: input0buffer. I am struggling to find documentation that explains what these types are. I am new to SSIS.

I realise that SSIS packages are created in BIDS.

The Script Components I am using are written using VB.NET. Is SSIS Script Components an extension of VB.NET?

Update I now realise that the UserComponent class is generated at runtime as explained here: http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.pipeline.scriptcomponent. I still don't understand hpw to find the functions that it implements e.g. Input0_ProcessInputRow.

回答1:

Most of what you need to develop script components and tasks appears here: Developer's Guide (Integration Services)



标签: vb.net ssis