Skip to content

Commit 7880014

Browse files
authored
Merge pull request #108852 from linda33wj/master
Fix doc issue and add troubleshooting tips
2 parents af13ee0 + 375d292 commit 7880014

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

articles/data-factory/connector-azure-sql-database-managed-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ The following sample shows how to use a stored procedure to do an upsert into a
523523
```sql
524524
CREATE TYPE [dbo].[MarketingType] AS TABLE(
525525
[ProfileID] [varchar](256) NOT NULL,
526-
[State] [varchar](256) NOT NULL
526+
[State] [varchar](256) NOT NULL,
527527
[Category] [varchar](256) NOT NULL
528528
)
529529
```

articles/data-factory/connector-azure-sql-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ The following sample shows how to use a stored procedure to do an upsert into a
517517
```sql
518518
CREATE TYPE [dbo].[MarketingType] AS TABLE(
519519
[ProfileID] [varchar](256) NOT NULL,
520-
[State] [varchar](256) NOT NULL
520+
[State] [varchar](256) NOT NULL,
521521
[Category] [varchar](256) NOT NULL
522522
)
523523
```

articles/data-factory/connector-sap-business-warehouse-open-hub.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: data-factory
1111
ms.workload: data-services
1212
ms.topic: conceptual
1313
ms.custom: seo-lt-2019
14-
ms.date: 09/04/2019
14+
ms.date: 03/24/2020
1515
---
1616

1717
# Copy data from SAP Business Warehouse via Open Hub using Azure Data Factory
@@ -240,6 +240,11 @@ When copying data from SAP BW Open Hub, the following mappings are used from SAP
240240

241241
To learn details about the properties, check [Lookup activity](control-flow-lookup-activity.md).
242242

243+
## Troubleshooting tips
244+
245+
**Symptoms:** If you are running SAP BW on HANA and observe only subset of data is copied over using ADF copy activity (1 million rows), the possible cause is that you enable "SAP HANA Execution" option in your DTP, in which case ADF can only retrieve the first batch of data.
246+
247+
**Resolution:** Disable "SAP HANA Execution" option in DTP, reprocess the data, then try executing the copy activity again.
243248

244249
## Next steps
245250
For a list of data stores supported as sources and sinks by the copy activity in Azure Data Factory, see [supported data stores](copy-activity-overview.md#supported-data-stores-and-formats).

articles/data-factory/connector-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ The following sample shows how to use a stored procedure to do an upsert into a
444444
```sql
445445
CREATE TYPE [dbo].[MarketingType] AS TABLE(
446446
[ProfileID] [varchar](256) NOT NULL,
447-
[State] [varchar](256) NOT NULL
447+
[State] [varchar](256) NOT NULL,
448448
[Category] [varchar](256) NOT NULL
449449
)
450450
```

0 commit comments

Comments
 (0)