Skip to content

Commit 9b08118

Browse files
committed
Typo
1 parent 7da42fd commit 9b08118

File tree

33 files changed

+33
-33
lines changed

33 files changed

+33
-33
lines changed

docs/design-patterns/design-pattern-data-vault-hub.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ When modeling the Hub tables try to be conservative when defining the business k
6161

6262
To cater for a situation where multiple Load Date / Time stamp values exist for a single business key, the minimum Load Date / Time stamp should be the value passed through with the HUB record. This can be implemented in ETL logic, or passed through to the database. When implemented at a database level, instead of using a SELECT DISTINCT, using the MIN function with a GROUP BY the business key can achieve both a distinct selection, and minimum Load Date / Time stamp in one step.
6363

64-
## CConsiderations and consequences
64+
## Considerations and consequences
6565

6666
Multiple passes on the same Staging Layer data set are likely to be required: once for the Hub table(s) but also for any corresponding Link and Satellite tables.
6767

docs/design-patterns/design-pattern-data-vault-link-satellite-driving-key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Standard Link-Satellites use the Driving Key concept to manage the ending of old
3838

3939
To avoid data redundancy, it is recommended to manage this process into the target table as opposed to using end-dating.
4040

41-
## CConsiderations and consequences
41+
## Considerations and consequences
4242

4343
## Related Patterns
4444

docs/design-patterns/design-pattern-data-vault-link-satellite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This pattern is only applicable for loading data to Link-Satellite tables from:
3333

3434
## Implementation guidelines
3535

36-
## CConsiderations and consequences
36+
## Considerations and consequences
3737

3838
## Related Patterns
3939

docs/design-patterns/design-pattern-data-vault-link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The default and arguably most flexible way is to incorporate this concept as par
5656
Depending on how the Link table is modelled (what kind of relationship it manages) the Link table may contains a relationship type attribute. If a link table contains multiple, or changing, relationships (types) this attributes is moved to the Link-Satellite table.
5757
Ending /closing relationships is always done in the Link-Satellite table, typically using a separate ETL process.
5858

59-
## CConsiderations and consequences
59+
## Considerations and consequences
6060

6161
Multiple passes on source data is likely to be required. In extreme cases a single source table might be used (branch out) to Hubs, Satellites, Links and Link Satellites.
6262

docs/design-patterns/design-pattern-data-vault-missing-keys-and-placeholders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Missing Source Attribute (Non recordable Source) (-6). Used when source fails to
3636
Missing Target Attribute (Non recordable DWH Attribute) (-7). Used for temporal data that falls before the deployment of the attribute.
3737
Deciding between the various types of unknown is a business question that is decided based on how the source database works.
3838

39-
## CConsiderations and consequences
39+
## Considerations and consequences
4040
The Hubs must be pre-populated with the placeholder values (records).
4141
ETL processes loading data into the Integration Area must automatically resolve NULL values to (potentially different) placeholders.
4242
Implementing a full taxonomy of potential unknown values as hard business rules must be weighed against extra complexity while loading Integration Area tables.

docs/design-patterns/design-pattern-data-vault-satellite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you have a Change Data Capture based source, the attribute comparison is not
5353

5454
Use hash values to detect changes, instead of comparing attributes separately. The hash value is created from all attributes except the business key and ETL process control values.
5555

56-
## CConsiderations and consequences
56+
## Considerations and consequences
5757

5858
Multiple passes on source data are likely to be required.
5959

docs/design-patterns/design-pattern-dimensional-time-dimension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Implementation guidelines
1919
Every separate source system has its own directory in the landing area.
2020
Every source directory has an archive directory.
2121

22-
## CConsiderations and consequences
22+
## Considerations and consequences
2323
The decision not to copy the data types from the file definitions but to check and explicitly convert these in the ETL process will mean that explicit checks and data type conversions will have to be added later.
2424
Known uses
2525
None.

docs/design-patterns/design-pattern-generic-control-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ This pattern is only applicable for every process in the data solution.
1414

1515
## Implementation guidelines
1616

17-
## CConsiderations and consequences
17+
## Considerations and consequences
1818

1919
## Related Patterns

docs/design-patterns/design-pattern-generic-data extraction from internal systems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This Design Pattern describes the overarching concepts related to extracting dat
2020
## Implementation guidelines
2121

2222

23-
## CConsiderations and consequences
23+
## Considerations and consequences
2424

2525

2626
## Related Patterns

docs/design-patterns/design-pattern-generic-data-integration-into-a-data-warehouse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
## Implementation guidelines
3636

3737

38-
## CConsiderations and consequences
38+
## Considerations and consequences
3939

4040

4141
## Related Patterns

0 commit comments

Comments
 (0)