Skip to main content
Skip table of contents

Development

The Development module in DATPROF Subset is where users create and refine their Subset specifications. This involves defining the structure and rules that dictate how data will be extracted from the source database for the subset.

Development Tab overview.png

Key activities within the Development module include:

  • Selecting the Start Table: This serves as the central point from which related data is extracted based on relationships in the database schema.

  • Creating a Start Filter: Filters define the criteria for selecting records from the Start table, ensuring only the relevant data is included.

  • Classifying Metadata: Users can review and categorize the metadata, setting relationships and rules for the additional tables to be included in the subset.

Before starting development, ensure that the source metadata has been successfully imported, as it forms the foundation for the Subset configuration.

Start table

The Start table is the foundation of a Subset specification in DATPROF Subset. It determines which data will be selected from the database by serving as the central point of extraction, with additional data pulled in based on its Foreign Key relations with other tables. Selecting a Start table is a mandatory step in the Subset development process.

Typically, the Start table represents a central entity in the application, such as the Customers table in a CRM system. This ensures that the subset captures the core dataset and its related entities, maintaining relational integrity throughout the process.

Development Start Table.png

 

The Start table can be selected in the middle part of the screen by selecting the table from the Start table drop-down box.

Define a Filter

To limit the size of a Subset the Start filter needs a filter. This filter is a ‘where clause’ of a SQL query. This query will be executed on the Start table. It is possible to use all standard SQL conditions that can be used on the particular database. The columns of the start table should be referenced without table name and schema name.

Example

where last_name like 'A%'


If you change the Start table the Filter will disappear, but the filter will be preserved. Re-selecting the previous Start table will reload the original filter associated with this table. Choosing the Start table is one of the most important Subset choices to be made, because this determines what data will be selected from the database and can impact the resulting dataset quite heavily.

Because all queries for selecting data are executed on the Target database, all table names mentioned in the Filter will be looked for in this database. Therefore, the table name should be fully specified to guarantee the right result. The methods for this differs between Oracle, MS SQL and DB2.

Oracle

Within the same database the specific schema should be mentioned.

This looks like:

<schema>.<tablename>

Example

SOURCESCHEMA.CUSTOMERS

Using a remote database a database link should be used.

This looks like:

<schema name>.<table name>@<database link name>

Example

SOURCESCHEMA.CUSTOMERS@dblink

The Start table has it's name available as an ALIAS.

MSSQL

Within the same instance the database and user should be mentioned

This looks like:

[<database name>].[<schema name>].[<table name>]

Example

[SOURCEDB1].[dbo].[customers]

Using a remote instance, the OpenRowSet method should be used.

This looks like:

OPENROWSET(‘DRIVER’, ‘ConnectionString’, ‘Query’)

Example

OPENROWSET(‘SQLOLEDB’, ‘Server=ATLAS,1433;Uid=srcuser;Pwd=srcuserpwd;’, ‘select * from [SOURCEDB1].[dbo].[CUSTOMERS] where Sal > 5000’)

Microsoft offers comprehensive information about the usage of OpenRowSet.

DB2

The following syntax can be used when working within the same database:

<schema name>.<table name>

Example

GASWARE.CUSTOMERS

Using another database, a nickname of the remote table should be used. DATPROF Subset generates this nickname by prefixing the table name with DSB_.

The syntax will look like:

<schema name>.DSB_<table name>

Example

GASWARE.DSB_CUSTOMERS

Start table properties

The Start table properties in DATPROF Subset allow users to define specific behaviors and configurations that influence how the Start table is saved and/or created on the Target database. To access these settings, click Properties to open the menu, which is divided into four tabs:

Tab: Columns

Start Table Properties Columns.png

This tab shows the columns / fields of the selected table. These can be altered on:

  • Primary key: by right clicking on a specific field the PK setting can be toggled. Often this remains unaltered, but in some cases tables don’t have a PK in the Source, but it is desirable to add this in the Target database.

  • Not on Target: This setting indicates whether a column is present in the Target database. This could mean that the table has / gets another structure than in the Source database.
    Running in (Re-)fill mode will nullify this field.
    Running in (Re-)Create mode implies this column will not be created in the Target database.

  • Expression: This can be used to insert an expression to add to the field in the Target database. This option can handle all available SQL expressions the database allows.

    Example

    ‘xxx’ : fills this column on every row with "xxx"  
    UPPER(first_name) :  Changes all values in the column first_name to uppercase. I.e. "Bob" would become "BOB". 

A column can be removed from the Metadata by selecting the column and hitting Delete on the keyboard. At first glance this is the same as selecting the checkbox ‘not on target’. The difference is that by deleting this the Metadata will be out of sync with the Source database, and after synchronizing Metadata this column will reappear. If you intend to keep using a specific instruction set with a rapidly changing source database, selecting 'not on target' would be a better solution.

Tab: Foreign Keys

Start Table Properties Foreign Keys.png

This tab shows all Foreign Keys belonging to this table as present in the Metadata. During classification the Foreign Keys between the tables are required for the classification “Subset”.

It is possible to add, change or delete a Foreign Key:

  • Add Foreign Key: When a table in the database has a relation with another table, but there is no Foreign Key defined in the database, then this can be added. This occurs when table relations are defined in the application layer as opposed to the database.

  • Edit: This is a variation on adding a Foreign Key, only now the already existing data can be edited.  

image2019-1-15_14-38-23.png

Adding a Foreign Key is required if the database does not provide for Foreign Keys. Without Foreign keys Subset does not know how to select data from tables and will always classify tables as Full.

By adding or editing a Foreign Key The Constraint Editor will open.

You create the Foreign key on the Child table. You must select the table holding the parent key.

Condition

In DATPROF Subset, you can add a condition to a Foreign Key, allowing for more granular control over data relationships during the Subset process. Beware that this is not valid DDL, so this foreign may/can never exist in the database. (See notes below on the "Don't Create" option)

The condition is useful when the child table has relations with multiple parents where the Foreign Key columns are the same but an additional field in the child table distinguishes the values belonging to either of the parent tables. The condition is meant for queries on the Child table.

Parent_Child_Condition.png

  • Delete: When not all tables and / or Foreign Keys have to be present in the Target database, they can be deleted. This only applies to the (Re-)Create Deployment Strategy.

For every Foreign Key three options are available.

  • Don't create: If the (Re-)Create Deployment Strategy is chosen, this setting prevents the creation of the Foreign Key on the Target database. This often applies to manually added Foreign Keys that only are needed within DATPROF Subset. Foreign Keys that are already present in the Target environment will not be deleted from this database when any Deployment Strategy is picked, except for (Re-)Create.

 When adding a condition to a Foreign Key this option is always checked. Setting a condition is not a valid DDL statement. It is DATPROF functionality only.

  • Functional consistent:  This option forces DATPROF Subset to select all Child-records belonging to the present Parent-records based on this Foreign Key. This can be an addition to the contents of the Child table compared to the designated start filter.
    Functional iteration can trigger additional technical iterations, to enforce referential integrity.

  • Direction: This option enables the user to enforce the direction in which certain tables are subsetted.
    Three options which are used as hints for the Process algorithm. 

    • Parent → Child: First select the Parent table of the FK and use that to select the data in the Child table. This will make the relation functional consistent.  Use this if the process model shows the Child before the Parent but you want all child records of the the parent.

    • Child → Parent: First select the Child table of the FK and use that to select the data in the Parent table. 

    • Do not use FK: When having multiple FKs with one parent only one is used for iteration. That might be the one you do not require, Tune this by deselecting the FK.

Tab: References

In the references tab all references of the selected tables are visualized. When using the context menu on a table you can open up the properties of that table or move tables to other classifications.

Start Table Properties References.png

Tab: Comment

Start Table Properties Comment.png

Example

GASWARE.DSB_DWH_PRODUCTS_HIS

This tab gives users the option to add comments to a table. The comments added here will show up in the Comments report.

Tab: Advanced Settings (Oracle)

image2018-6-6_17-5-4.png

SplitLimit

Specifying the Split Limit breaks up long running database transactions into blocks of the specified rows thus preventing database problems in the temporary tablespace. 

The default value is 0 meaning no splitlimit. Adjust only when having problems.

EnableHints

DATPROF Subset uses some hints to perform efficient Bulk transactions. Sometimes you might want to disable these. Uncheck this box.

The default value is checked on.

The following advanced settings only have effect when running subset in non-legacy mode.

AppendQueryHints → AppendQuery.template

AppendUniqueQueryHints → AppendUniqueQuery.template

AppendUniqueTechQueryHints → AppendUniqueTechQuery.template

FunctionalAppendQueryHint → AppendQuery.template


TechnicalAppendQueryHints

Tab: Advanced Settings (DB2 for LUW)

image2018-6-7_9-10-45.png

SplitLimit

Specifying the Split Limit breaks up long running database transactions into blocks of the specified rows thus preventing database problems. More specific, with the temporary tablespace.

For LUW this is done for the temporary tables and the insert into the target table.


Classification

Classification.png

The “classification” of tables in part determines the contents of the Subset. Classification means that per table is determined whether the data of a table will be read and in what way this is done.

Making a classification takes place in the lower part of the screen, and is done per imported schema. The schema is selected using a drop-down box.

There are four possible classifications: Subset, Full, Empty or Unused.

Every table has only one classification. Newly imported tables are by default classified as Unused.

The classification of tables can be changed in several different ways.

  • By dragging the selected tables to the desired classification.

  • By right clicking the selected table and selecting ‘Move to’ to move the table to the desired classification.

  • Selecting multiple tables, and then left-clicking ‘Move to’ to move the tables to the desired classification.

  • By using the Suggest function

  • Through the detail screens of a table

  • From the data model and process model visualizations.

The result of the classification can be refined even more through changing the table properties.

Classification: Subset

Tables classified as “Subset” will be filtered based upon the results of the filtered Start table.

For an actual Subset it is imperative that the Foreign Keys are present to derive the data for directly or indirectly connected tables. If not present these Foreign Keys need to be manually added.

By clicking the “Validation” button the current classification can be validated.

Validate Classification.png

An unrelatable Subset table will give a non-blocking warning. To prevent this warning the classification has to be altered or an additional relation has to be added by hand.

Unrelatable tables will not be filtered and thus will be added completely.

Unrelatable Table.png

Classification: Full

Tables classified as “Full” will be copied completely. Often, tables classified as Full are tables containing master data, application data or control data.

By clicking the “Validate” button the current classification can be validated.

Classification full.png

A table with Full classification referencing the Start table or a table having the classification Subset, Empty or Unused will give a non-blocking warning. To prevent this warning, the classification has to be changed or the relation must be removed.

Classification: Empty

Tables classified as “Empty” will be truncated on the Target database. Normally this classification is used for tables where the data from the Source database is not needed on the Target database, but the physical table has to be present. This often applies to logging tables.

By clicking the “Validate” button the current classification can be validated

Warning Potential Referential Integrety Problems.png

A table classified as Empty referencing a table classified as Start, Full or Subset will give a non-blocking warning. To prevent this warning the classification has to be changed or a the relation has to be deleted.

Classification: Unused

Tables classified as “Unused” will be ignored during the subsetting process. This classification can be seen as a work list for the configuration of DATPROF Subset.

Tables in the Target database that shouldn’t be altered, e.g. configuration tables, will often be classified as Unused.

It is not possible to validate Unused tables.

After importing or synchronizing Metadata newly added tables will be marked with a yellow star. This marking will be removed after saving and reopening the project.

Newly Added Table.png

Suggest

The “Suggest” function can support users in classifying the imported Metadata. DATPROF Subset is able to analyse the Unused tables based upon the relations, and give a classification suggestion whether a table should be classified as “Full” or “Subset”. The Empty classification will not be suggested.

The binocular icon on the bottom right of the screen will open the Suggest classification options.

Suggest Classification.png

The opened screen gives the option to select all Unused tables or only the newly added tables. By selecting All schemas the suggestion will include the unclassified tables of all schemas in the project. By default only the active schema will be used. By clicking “Suggest” the data model will be analysed and a classification will be suggested.

The following rules apply to Suggesting a classification:

  • A table (in)directly related to the Start table will be classified as Subset.

  • A table without any relation will be classified as Full.

  • A table that only serves as a reference for other tables will be classified as Full.

After this a list with suggestions will be shown, in this list a user can change the given suggestion by selecting another classification from the drop-down box.

Suggest Classification edits.png

Confirm the selected suggestion by clicking Apply. 


Table Details

After classifying the tables the result of the Subset can be further refined by changing the Table properties. These properties will become visible by clicking the table with the right mouse button and selecting Properties.

This opens a screen with multiple tabs. From this screen it is also possible to change the current classification.

Unrelatable Table.png

Tab: Columns

This tab contains the same functionality as explained before in the Start Table chapter of this page.

Tab: Foreign Keys

This tab contains the same functionality as explained before in the Start Table chapter of this page.

Tab: Dependencies

Table Details Dependencies.png

This tab shows where dependencies have been made and which table will precede / succeed the current table. The complete overview is called is Process model, this can be visualized via the Menu option “Visualize”.

By clicking “Edit” the Dependencies Editor shall open.

Table Details Dependencies editor.png

From this screen a schema can be selected, and per schema its tables:

  • Tables selected from the left column will precede the current, green, table.

  • Tables selected from the right column will succeed the current, green, table.

The lower part of the screen visualizes the current selection.

(info) It is important to realize that whenever a FK exist between two tables and you also specify a dependency,  the FK relation is ignored. In effect the child table is fully selected. An additional filter might help you here.

Tab: additional filter

Table Details Additional Filter.png

From the screen the result can be further refined by adding a filter. This works in similar fashion as the Start filter; like a ‘where clause’ from a SQL query. This where clause can include all standard SQL conditions for the used database.

Tab: Comment

This tab consists of a text box that the user can freely use to store information about the table or any other aspects of how this table relates to the greater Subset project.

Table Details Comments tab.png

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.