You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/language-extensions/tutorials/search-for-string-using-regular-expressions-in-java.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: This tutorial shows you how to use SQL Server Language Extensions a
5
5
author: dphansen
6
6
ms.author: davidph
7
7
manager: cgronlun
8
-
ms.date: 05/22/2019
8
+
ms.date: 05/28/2019
9
9
ms.topic: conceptual
10
10
ms.prod: sql
11
11
ms.technology: language-extensions
@@ -221,13 +221,21 @@ Use [CREATE EXTERNAL LIBRARY](https://docs.microsoft.com/sql/t-sql/statements/cr
221
221
222
222
In this sample, you will create two external libraries. One for the SDK and one for the RegEx Java code.
223
223
224
-
1. Download the **mssql-java-lang-extension.jar** file from the [Microsoft Extensibility SDK for Java for Microsoft SQL Server](../how-to/extensibility-sdk-java-sql-server.md) .
224
+
1. The SDK jar file **mssql-java-lang-extension.jar** is installed as part of SQL Server 2019 CTP 3.0 preview on both Windows and Linux.
225
+
226
+
+ Default installation path on Windows: **[instance installation home directory]\MSSQL\Binn\mssql-java-lang-extension.jar**
227
+
228
+
+ Default installation path on Linux: **/opt/mssql/lib/mssql-java-lang-extension.jar**
229
+
230
+
The code is also open sourced and can be found on the [SQL Server Language Extensions GitHub repository](https://github.com/microsoft/sql-server-language-extensions).
231
+
232
+
The following article provides more information about the [Microsoft Extensibility SDK for Java for Microsoft SQL Server](../how-to/extensibility-sdk-java-sql-server.md) .
225
233
226
234
2. Create an external library for the SDK.
227
235
228
236
```sql
229
237
CREATE EXTERNAL LIBRARY sdk
230
-
FROM (CONTENT = '<path>/mssql-java-lang-extension.jar')
238
+
FROM (CONTENT = '<OS specific pathfrom above>/mssql-java-lang-extension.jar')
0 commit comments