Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 020e5e7

Browse files
committed
edit
1 parent 993bfce commit 020e5e7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/language-extensions/java-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: What is Java Language Extension?
3-
description: In SQL Server 2019, Java, Python, and R are supported language extensions.Language Extensions are a feature of SQL Server used for executing external code. Relational data can be used in the external code using the extensibility framework.
3+
description: In SQL Server 2019, Java, Python, and R are supported language extensions. Language Extensions are a feature of SQL Server used for executing external code. Relational data can be used in the external code using the extensibility framework.
44
author: cawrites
55
ms.author: chadam
66
ms.date: 10/06/2020
@@ -25,7 +25,7 @@ Language Extensions uses the extensibility framework for executing external code
2525

2626
External languages are defined with [CREATE EXTERNAL LANGUAGE](https://docs.microsoft.com/sql/t-sql/statements/create-external-language-transact-sql). The system stored procedure [sp_execute_external_script](https://docs.microsoft.com/sql/relational-databases/system-stored-procedures/sp-execute-external-script-transact-sql) is used as the interface for executing the code.
2727

28-
Language Extensions provides multiple advantages:
28+
Language Extensions provide various advantages:
2929

3030
+ Data security. Bringing external language execution closer to the source of data avoids wasteful or insecure data movement.
3131
+ Speed. Databases are optimized for set-based operations. Recent innovations in databases such as in-memory tables make summaries and aggregations lightning, and are a perfect complement to data science.
@@ -40,7 +40,7 @@ Language Extensions provides multiple advantages:
4040

4141
### Step 2: Configure a development tool
4242

43-
Developers typically write code on their own laptop or development workstation. With language extensions in SQL Server, there is no need to change this process. After installation is complete, you can run Java code on SQL Server.
43+
Developers typically write code on their own laptop or development workstation. With language extensions in SQL Server, there's no need to change this process. After installation is complete, you can run Java code on SQL Server.
4444

4545
+ **Use the IDE you prefer** for developing Java code.
4646

@@ -58,7 +58,7 @@ Execute Java code from within T-SQL script:
5858

5959
## Limitations
6060

61-
+ The number of values in input and output buffers cannot exceed `MAX_INT (2^31-1)` since that is the maximum number of elements that can be allocated in an array in Java.
61+
+ The number of values in input and output buffers can't exceed `MAX_INT (2^31-1)` since that is the maximum number of elements that can be allocated in an array in Java.
6262

6363
## Next steps
6464

0 commit comments

Comments
 (0)