Skip to main content

14 docs tagged with "table"

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.

Creating a Dimension Modeled by Connection, Database, and Schema

Defines a 'DimProduct' Dimension with key/non-key attributes, attribute-to-attribute relationships, and a multi-level hierarchy ('Categories' rolling up Category, Subcategory, and ProductName), demonstrating how a Dimension references a Schema, which references a Database, which references the underlying Connection.

Fast Targeted Table Import (BimlStudio Preview)

BimlStudio preview script that imports one or more named tables from a given database, walks every schema looking for the match, writes the resulting Biml under the database's 'Tables' directory, adds the file to the live project, sets the schema to the database default, then calls a follow-up script to add UsedByCycle tags.

Finish Table Import Script

BimlStudio script that finishes a freshly imported Table: resets the schema to the database's default, renames the Biml file to local convention, moves it to the database's Tables directory, and calls a follow-up script to add UsedByCycle tags.

Flat File Format

Declares a standalone FlatFileFormat asset with typed columns and per-column delimiters that can be referenced by one or more FlatFileConnection objects.

Import Database Assets into Biml with ImportDB

Calls 'AstOleDbConnectionNode.ImportDB()' from a class feature control block, then re-emits the imported Schemas and Tables as Biml via 'GetBiml()' so the model mirrors the live database.

Initial Historical Load into SQL Server PDW (APS)

Lists every base table from sys.tables and emits a per-table SSIS dataflow that pumps rows through the 'SqlServerPdwDestination' adapter, the path used for an initial historical load when migrating to SQL Server Parallel Data Warehouse / Analytics Platform System.

Pick a Dataflow at Runtime Based on the File Header

Reads the first line of a delimited file as a single 'FileInfo' string, routes it through a Conditional Split that compares against known header signatures, counts rows on each branch, then uses a precedence-constraint expression on a non-zero row count to fire the matching per-layout Dataflow task.

Table

Table editor in BimlStudio

Transformer - Check if column exists and add if not.

Extends the add-default-columns transformer pattern with a 'GetColumnList()' membership check on TargetNode so the transformer only emits new Column definitions when they are not already present, avoiding duplicate-column errors when the same transformer runs across tables that already have some of the columns.