Skip to content

Commit e55358b

Browse files
Update using-MATCH_RECOGNIZE-to-analyze-data-in-a-data-vault-effectivity-satellite.md
1 parent 16395dc commit e55358b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

using-MATCH_RECOGNIZE-to-analyze-data-in-a-data-vault-effectivity-satellite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The structure of an [Effectivity Satellite](data-vault-effectivity-satellite.md)
2929

3030
## MATCH_RECOGNIZE and pattern recognition
3131

32-
In relational systems, a row pattern recognition task is to detect a sequence of ordered rows from an input table that match a specified pattern. For example, a financial service provider needs to identify sequences of suspicious transactions that match known patterns of criminal activities; an e-commerce site analyzes the steps taken by customers from landing through a social media referrer to a successful purchase. The MATCH_RECOGNIZE clause in SQL allows users to search for patterns in rows of data using a powerful and expressive syntax that is based on RegEx.
32+
In relational systems, a row pattern recognition task is to detect a sequence of ordered rows from an input table that match a specified pattern. For example, a financial service provider needs to identify sequences of suspicious transactions that match known patterns of criminal activities; an e-commerce site analyzes the steps taken by customers from landing through a social media referrer to a successful purchase. The [MATCH_RECOGNIZE](applied-overview-of-MATCH_RECOGNIZE-clause.md) clause in SQL allows users to search for patterns in rows of data using a powerful and expressive syntax that is based on RegEx.
3333

3434
One way to analyze data in an [Effectivity Satellite](data-vault-effectivity-satellite.md) is to use SQL's [MATCH_RECOGNIZE](applied-overview-of-MATCH_RECOGNIZE-clause.md) clause.
3535

@@ -38,7 +38,7 @@ One way to analyze data in an [Effectivity Satellite](data-vault-effectivity-sat
3838
2. Match longitudinal data against those patterns
3939
3. Identify records that match the patterns
4040

41-
In the MATCH_RECOGNIZE clause the pattern is constructed from basic building blocks, called pattern variables, to which operators (quantifiers and other modifiers) like Kleene Star `*` and Kleene Plus `+` and can be applied. The whole pattern must be enclosed in paranthesis. For example a pattern can be defined as following:
41+
In the [MATCH_RECOGNIZE](applied-overview-of-MATCH_RECOGNIZE-clause.md) clause the pattern is constructed from basic building blocks, called pattern variables, to which operators (quantifiers and other modifiers) like Kleene Star `*` and Kleene Plus `+` and can be applied. The whole pattern must be enclosed in paranthesis. For example a pattern can be defined as following:
4242
```
4343
(paid+ free)
4444
```

0 commit comments

Comments
 (0)