Issue on Analyzed Column in MS SQL Server Connection
When I am trying to configure a Column Analysis on a email_address column from MS SQL Server connection and while trying to check Patterns > Regex > Internet nodes > Email Address pattern.
I am getting a message that expression is not available for MS SQL Server . Do you want to add ?
If I click yes it is giving me pattern for.....
Oracle : '^+@+\.{2,4}$'
MySQL : '^+@+\\.{2,4}$'
Java : '^+@+\.{2,4}$'
And a "+" button . I think it is for adding a pattern. But what will be the pattern for SQL Server.
There is some difference between Oracle and MySQL. So there may have some difference in SQL Server. Can somebody help me for SQL Server pattern ?
Then you need to adapt the indicator template to the SQL server function. This means that you must add the SQL template for SQL Server in the indicator: Libraries/Indicators/System Indicators/Pattern Matching/Regular Expression Matching
And finally, you need to add the regular expression in the Pattern (you may copy the Oracle one).
Otherwise, the simplest way is the use the java engine in the analysis so that your data are first downloaded and then analyzed (in case you have a lot of data, it's not advised to do that though). By using the java engine, you don't depend on the DBMS server.