Skip to main content

12 docs tagged with "task"

View all tags

Copy All Data from Live Source Database

Connects directly to a live source database with 'ImportDB', then generates one Dataflow task per imported table that copies the data from the source connection to the target connection, with no advance knowledge of the source schema required.

Create Package to run all packages in a Directory

Generates a master package that runs every '.dtsx' file in a given directory in parallel as ExecutePackage tasks, the standard pattern for orchestrating a load phase produced by a per-table generator.

Data Vault Metadata Modelling with Biml

How Biml extends an auto-generated Data Vault to handle business keys, satellite splits by fast-changing attributes, and per-attribute manual overrides driven from metadata.

Embed a Script Task Project Inline

Embeds a complete ScriptTaskProject (assembly references, ReadOnlyVariables, ReadWriteVariables, and 'ScriptMain.cs') directly inside a Script task instead of declaring it under a shared 'ScriptProjects' root, which keeps automation-generated packages self-contained.

Generate a Staging Load Package from a View

Reads INFORMATION_SCHEMA for a configurable source view to optionally drop and recreate the destination table, then emits an SSIS package that truncates the staging table, optionally drops and rebuilds its indexes via stored procedures, and loads it from the view via an OLE DB source-to-destination dataflow with FastLoad.