Forum Discussion
SAP ECC Data Ingestion using Pipeline into DataWarehouse
- 1 year ago
HIi CeeVee33
Here are the responses to your follow-up questions:
Q) With copy into and merge, can I use Pipeline for it? If not, then what should be used?
A) Pipelines in fabric do not natively support “copy into” or “merge” directly.
However, you can use Notebook (PySpark or T-SQL) activities within the Pipeline to execute these statements.
Another option is to use a stored procedure in the warehouse that performs copy into or merge, and call this stored procedure from the Pipeline.
Q) Is Data Lake the same as Lakehouse?
A) A data lake is a storage layer that holds raw and processed data.
Lakehouse is a structured approach on top of the Data Lake that integrates data
warehousing features (like tables, SQL queries) with the flexibility of a Data Lake.
Q)Can I use Dataflow Gen2? If so, how do I configure incremental load in Power Query?
A)Yes, you can use Dataflow Gen2 to ingest data into the Lakehouse or Warehouse.
For increamental refresh in Power Query, follow these steps:
Define Date/Time Filter: In Power Query, add a filter on a date column to select only new or modified rows.
Enable Incremental Refresh:
In the Dataflow settings, go to Incremental Refresh & Real-Time Data.
Define the Range (e.g., load data from the last X days).
Choose Detect Data Changes (if a LastModified column exists).
Publish and ensure your destination supports incremental loading.
Develop ABAP reports within SAP ECC to extract data into a staging area such as Azure Blob Storage or Azure Data Lake.
From there, use COPY INTO to efficiently load the data into Fabric Data Warehouse.
If the above information is helpful, please give us Kudos and mark the response as Accepted as solution.Best Regards,
Community Support Team _ C Srikanth.
Hi CeeVee33
Thank you for being part of the Microsoft Fabric Community.
- Yes, SAP ECC can be used as a data source, but direct INSERT operations are not supported.
- Error: Incorrect syntax near "," This error typically occurs when the pipeline attempts to create a new table, but the generated SQL syntax is incompatible with Fabric’s table structure.
- Error: "INSERT is not a supported statement type" Fabric Data Warehouse does not support direct INSERT statements for loading data into Delta tables. Instead, it requires bulk-loading methods such as 'COPY INTO' or 'MERGE'.
- If you require more control over data extraction, you can develop ABAP reports in SAP ECC to extract the required data into a staging area such as Azure Blob Storage or Azure Data Lake.
Note for reference: Data Factory documentation in Microsoft Fabric
If the above information is helpful, please give us Kudos and mark the response as Accepted as solution.
Best Regards,
Community Support Team _ C Srikanth.
- CeeVee331 year ago
Advocate II
Hey v-csrikanth - thank you very much for responding.
I must confess, I'm new to Fabric and Azure world too. I've used PBI in the past, but thats about it.
Few followup questions -
With Copy INTO and Merge, can I use Pipeline for it? If not, then what should be used?
Data Lake that you refer is it the same as Lakehouse?
Can I use Data Flow gen2? If so, I cant seem to figure out how to adding a query for incremental load in Power Query.
Any links to known sites will also be helpful, if it is a big list of questions.
Thanks