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
Automatic commit: Move 'hana-clients-hdbsql', 'hana-cloud-alerts', 'hana-cloud-alerts-autopilot', 'hana-cloud-dl-clients-node', 'hana-dbx-export-import' from QA to Production (#18572)
Copy file name to clipboardExpand all lines: tutorials/hana-clients-hdbsql/hana-clients-hdbsql.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -480,10 +480,10 @@ Remembering and entering IP addresses, ports, user IDs and passwords can be diff
480
480
481
481
1. HDBSQL can [run commands](https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/6097e699826343d0879244185d680a0d.html) interactively, or non-interactively. A few examples are shown below.
482
482
483
-
```SQL
484
-
SELECT * FROM HOTEL.CUSTOMER; -- interactive
485
-
hdbsql -U USER1UserKey "SELECT * FROM HOTEL.CUSTOMER"; -- non-interactive
486
-
hdbsql -U USER1UserKey -I hotel.sql -- batch file
483
+
```SQL
484
+
SELECT * FROM HOTEL.CUSTOMER; -- interactive
485
+
hdbsql -U USER1UserKey "SELECT * FROM HOTEL.CUSTOMER"; -- non-interactive
486
+
hdbsql -U USER1UserKey -I hotel.sql -- batch file
487
487
```
488
488
489
489
2. [Substitution variables](https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/18ce51f468bc4cfe9112e6be79953e93.html) can used to pass parameters.
Copy file name to clipboardExpand all lines: tutorials/hana-cloud-alerts-autopilot/hana-cloud-alerts-autopilot.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ The following steps demonstrate how to subscribe to the SAP Automation Pilot ser
37
37

38
38
39
39
>If the Automation Pilot service does not appear, it may be that the entitlement needs to be added to the subaccount. To do so, navigate to the subaccount, select **Entitlements**, **Configure Entitlements**, **Add Service Plans**, select **Automation Pilot**, and add a plan such as free or standard.
Copy file name to clipboardExpand all lines: tutorials/hana-cloud-alerts/hana-cloud-alerts.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -303,11 +303,11 @@ In this step, ANS will be configured to act on the incoming notifications by sen
303
303
304
304
See also [Managing Actions](https://help.sap.com/viewer/5967a369d4b74f7a9c2b91f5df8e6ab6/Cloud/en-US/8a7e092eebc74b3ea01d506265e8c8f8.html) for details on other available action types.
305
305
306
-
9. Provide a **Name** and then scroll to the additional properties section.
306
+
9. Provide a **Name** and then scroll to the **Advanced Action Properties** section.
Copy file name to clipboardExpand all lines: tutorials/hana-cloud-dl-clients-node/hana-cloud-dl-clients-node.md
+31-30Lines changed: 31 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,8 @@ If Node.js is not installed, download the long-term support (LTS) version of Nod
48
48
49
49
[ACCORDION-BEGIN [Step 2: ](Install the data lake Relational Engine client for Node.js)]
50
50
51
+
In addition to the Node.js driver covered in this tutorial which is `@sap\iq-client`, there is also the [SQK Anywhere](https://github.com/sqlanywhere/node-sqlanywhere) driver. The @sap\iq-client driver supports newer Node.js versions and includes a promise library.
52
+
51
53
1. Add the dependencies to the driver.
52
54
53
55
```Shell (Microsoft Windows)
@@ -143,40 +145,40 @@ If Node.js is not installed, download the long-term support (LTS) version of Nod
143
145
```Shell
144
146
node nodeQuery.js
145
147
```
146
-

147
148
148
-
Note the above app makes use of some of the data lake Relational Engine client Node.js driver methods, such as [connect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/13e47ad9748d4d4d9536a0518b8ecd67.html), [exec](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/1bec2bc5259d4e9da54a2e1908f246ee.html) and [disconnect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/8dee077765f5476b8b481ab1de864f14.html).
149
+

149
150
150
-
Two examples showing the drivers methods being used asynchronously are shown inthe next two steps.
151
+
Note the above app makes use of some of the data lake Relational Engine client Node.js driver methods, such as [connect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/13e47ad9748d4d4d9536a0518b8ecd67.html), [exec](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/1bec2bc5259d4e9da54a2e1908f246ee.html) and [disconnect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/8dee077765f5476b8b481ab1de864f14.html).
151
152
152
-
>To enable debug logging of the SAP IQ Node.js client, enter the following command and then rerun the app.
153
+
Two examples showing the drivers methods being used asynchronously are shown inthe next two steps.
153
154
154
-
>```Shell (Microsoft Windows)
155
-
>set DEBUG=*
156
-
>node nodeQuery.js
157
-
>```
155
+
>To enable debug logging of the SAP IQ Node.js client, enter the following command and then rerun the app.
158
156
159
-
>```Shell (Linux or Mac)
160
-
>export DEBUG=*
161
-
>node nodeQuery.js
162
-
>```
157
+
>```Shell (Microsoft Windows)
158
+
>set DEBUG=*
159
+
>node nodeQuery.js
160
+
>```
163
161
164
-
>
162
+
>```Shell (Linux or Mac)
163
+
>export DEBUG=*
164
+
>node nodeQuery.js
165
+
>```
165
166
166
-
> The value of the environment variable DEBUG can be seen and removed with the commands below.
167
+
>
167
168
168
-
>```Shell (Microsoft Windows)
169
-
>set DEBUG
170
-
>set DEBUG=
171
-
>set DEBUG
172
-
>```
169
+
> The value of the environment variable DEBUG can be seen and removed with the commands below.
173
170
174
-
>```Shell (Linux or Mac)
175
-
>printenv | grep DEBUG
176
-
>unset DEBUG
177
-
>printenv | grep DEBUG
178
-
>```
171
+
>```Shell (Microsoft Windows)
172
+
>set DEBUG
173
+
>set DEBUG=
174
+
>set DEBUG
175
+
>```
179
176
177
+
>```Shell (Linux or Mac)
178
+
>printenv | grep DEBUG
179
+
>unset DEBUG
180
+
>printenv | grep DEBUG
181
+
>```
180
182
181
183
[DONE]
182
184
[ACCORDION-END]
@@ -265,17 +267,16 @@ Asynchronous programming enables non-blocking code execution which is demonstrat
Notice that asynchronous method calls use callback functions. See [JavaScript Asynchronous Programming and Callbacks](https://nodejs.dev/learn/javascript-asynchronous-programming-and-callbacks) for additional details.
279
+
Notice that asynchronous method calls use callback functions. See [JavaScript Asynchronous Programming and Callbacks](https://nodejs.dev/learn/javascript-asynchronous-programming-and-callbacks) for additional details.
279
280
280
281
[DONE]
281
282
[ACCORDION-END]
@@ -376,9 +377,9 @@ The Node.js driver for the data lake Relational Engine client provides support f
The above code makes use of the [promise module](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/5410af3b00414269988301ba78d38e43.html). Additional details on promises can be found at [Understanding JavaScript Promises](https://nodejs.dev/learn/understanding-javascript-promises).
382
+
The above code makes use of the [promise module](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/5410af3b00414269988301ba78d38e43.html). Additional details on promises can be found at [Understanding JavaScript Promises](https://nodejs.dev/learn/understanding-javascript-promises).
0 commit comments