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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ If you are using Windows, follow the steps below to create an external language
182
182
183
183
1. Create a .zip file containing the extension.
184
184
185
-
As part of the SQL Server setup on Windows, the Java extension **.dll** file is installed in this location: `[SQL Server install path]\MSSQL\Binn\javaextension.dll`.
185
+
As part of the SQL Server setup on Windows, the Java extension **.zip** file is installed in this location: `[SQL Server install path]\MSSQL\Binn\java-lang-extension.zip`. THis zip file contains the **javaextension.dll**.
186
186
187
187
Compress the `javaextension.dll` into a **.zip** file. For example: `javaextension.zip`.
188
188
@@ -191,20 +191,20 @@ If you are using Windows, follow the steps below to create an external language
191
191
```sql
192
192
CREATE EXTERNAL LANGUAGE Java
193
193
FROM
194
-
(CONTENT = N'[Path to .zip file]\javaextension.zip', FILE_NAME ='javaextension.dll')
194
+
(CONTENT = N'[SQL Server install path]\MSSQL\Binn\java-lang-extension.zip', FILE_NAME ='javaextension.dll')
195
195
GO
196
196
```
197
197
198
198
### Create external language on Linux
199
199
200
-
On Linux, you don't need to manually create a **.tar.gz** file. As part of setup, there is already generated a **.tar.gz** file under the following path:
0 commit comments