Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone,
Is it possible at the moment to use output like this in the Data Pipeline? My tests are not working.
https://stackoverflow.com/questions/78556016/how-to-get-row-count-of-the-result-from-exists-activity...
If not, how do you recover the number of lines inserted by a Data Pipeline or Copy Data in the Data Pipeline ?
Thank you in advance for your help,
Have a nice day,
Vivien
Solved! Go to Solution.
You get a whole stack of data in the output array of the copy data activity including rows read and rows copied (see attached image)
You can then query this in later steps using syntax like;
Hi @vivien57 ,
Currently in Fabric Data Factory it is not possible to use @activity('Copy data1').output.rowsRead or @activity('Copy data1').output.rowsCopied like Azure Data Factory for dynamic content.
The only alternative is to process the data in Dataflow Gen2 and then transfer the data through Data Pipeline or Copy Data, you can check this official document for more details: Move and transform data with dataflow and data pipelines - Microsoft Fabric | Microsoft Learn
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You get a whole stack of data in the output array of the copy data activity including rows read and rows copied (see attached image)
You can then query this in later steps using syntax like;
Hello,
Thanks for your feedback.
It's weird because it's not available in autocomplete, but it works 🙂 with a different sequence of functions from ADF.
Thanks a lot.
Have a nice day,
Vivien