Table of Contents

SSIS - Container

About

In SSIS control flow, containers:

As you can nest containers within other containers, it permits to create a hierarchy of task.

Containers can be start or endpoints for precedence constraints.

Ssis Container

Type

SSIS packages can contain the following kinds of container:

Task

Each control flow task has its own implicit container.

Sequence

Sequence containers group tasks and other containers.

It enables to:

Ssis Sequence Container

For Loop

For Loop containers performs a loop until a condition is met.

Ssis For Loop Container

The defined variable can be used with the following syntax:

@[User::counter]

Foreach Loop

Foreach Loop containers performs a loop with an collection.

Ssis For Each Loop Container