Azure Synapse: Show where Integration Pipeline is called - integration

I have a huge Azure Synapse project with visual integration pipelines. How can I see in which other pipelines a selected pipeline is called/triggered - how can I find the callers?

Azure Synapse: Show where Integration Pipeline is called
In synapse pipeline, Select the pipeline.
Click properties in that pipeline.
And then select Related.
Pipelines which depends on the selected pipeline will be listed.

Related

What are the possibilities to call APIs in SSIS (Microsoft SQL Server Integration Services)?

I am looking for the different ways how within SSIS APIs can be called (e.g. getting data from a JSON file) or by calling APIs objects in SSIS can be accessed or configured (e.g. triggering an SSIS package).
Since I'm relatively new to SSIS and also have no hands-on experience with APIs in general, it's a bit hard to figure out the topic for me. What I have already found out through research is:
You can call an API from your own code within a script task, but for that you need .NETor C# experience. (source)
There are third party tools like ZappySys, KingswaySoft or CozyRoc that provide so called Custom Tasks in SSIS, which are programmed by the third party themselves in .NET or C# (commercial).
Interfaces like APIs are one of the key requirements when it comes to data integration tools? It seems to me that SSIS is "lagging behind" here.
Doesn't SSIS provide standardized tasks that allow the user to communicate with APIs like JSON, REST or Webhooks in a simple (no code) way?
I'm sorry to say, SSIS is lagging behind in terms of integration functionality. Most of features required in a modern platform are in Azure data factory.
Your research of using a script component or 3rd party component is your only option.

How to use Azure DevOps Analytics View to query data while creating SSIS package

I'm looking to query against Azure DevOps analytical views through an SSIS package to ETL data to an on-prem SSAS. I've tried connecting with the OData source in VS2019 using SSIS, but it doesn't seem to be working. Any help would be greatly appreciated!!
If my understanding is correct, you want to use OData to query Analytics for Azure DevOps in SSIS.
Your requirement could be split into two questions:
How to use OData to query Analytics for Azure DevOps?
How to use the OData Source in SSIS?
To exercise an OData query for Analytics in Azure DevOps, you must be granted the View analytics permission. To write OData queries against Analytics, check out the OData Query Quick Reference. You could get start writing and testing OData queries from the link below:
https://learn.microsoft.com/en-us/azure/devops/report/powerbi/odataquery-connect?view=azure-devops
Regarding how to use the OData Source in SSIS, you can refer to the following links:
https://learn.microsoft.com/en-us/sql/integration-services/data-flow/tutorial-using-the-odata-source?view=sql-server-ver15
https://learn.microsoft.com/en-us/sql/integration-services/data-flow/odata-source?view=sql-server-ver15
You could check the documentations to get start or share more details if there is a specific query or error.

is there a single management console for multiple WSO2 Carbon based products?

Since all WSO2 products are based on the same plattform (Carbon), I was wondering if there's a way to configure a single management console for multiple products, such as Data Service Server, Application Server, ESB, etc...
What I want to have is a common console to access, manage, and monitor multiple WSO2 products.
Any information that can lead me to my objective will be appreciated.
If you run multiple product servers you can't access them from the same management console. But you can install relevant features to a single product, so that all the services can be managed through single management console.
Ex: Install DSS features on ESB
[1]http://wso2.com/projects/carbon/provisioning-wso2-carbon-with-equinox-p2/
[2]http://dileepajayakody.blogspot.com/2012/05/how-to-install-features-via-feature.html
[3]http://kalpassupblog.blogspot.com/2012/05/how-to-install-wso2-dss-features-on.html

Stored procedures in SSIS Packages

We are doing a huge Data Migration Project using SSIS packages. We were insisted on not using stored procedures in SSIS packages. Can you please suggest whether we should be using stored procedures in SSIS packages or not? What are the advantages of using stored procedures?
It is correct that merge statements can easily be used in SSIS and your directive to encapsulate everything in SSIS is not necessary, as SQL processing aggregations faster than SSIS, for example. Further, if you are not deploying to SSISDB or have proper logging wrappers or email alerts, then troubleshooting your ETL is going to be more difficult via the SQL agent than otherwise as the errors are frequently more cryptic - thus the SSISDB and its reports in 2012. SSIS can be extremely powerful, however.
Here is a fairly blatant benchmark that will tell you never to use the out of the box SCD ever in SSIS. Taskfactory however does have a nice deployable which does basically merges behind the scene.
SSIS has more powerful functions than Stored Procedures.
However you can easily use Execute T-SQL Statement tasks in SSIS for existing tasks, and then build out from there.
SSIS is superior at the vast majority of ETL
Below Via Microsoft
Microsoft Integration Services is a platform for building enterprise-level data integration and data transformations solutions. You use Integration Services to solve complex business problems by copying or downloading files, defining business logic, sending e-mail messages in response to events, updating data warehouses, cleaning and mining data, and managing SQL Server objects and data. The packages can work alone or in concert with other packages to address complex business needs. Integration Services can extract and transform data from a wide variety of sources such as XML data files, flat files, and relational data sources, and then load the data into one or more destinations.
Integration Services includes a rich set of built-in tasks and transformations; tools for constructing packages; and the Integration Services service for running and managing packages. You can use the graphical Integration Services tools to create solutions without writing a single line of code; or you can program the extensive Integration Services object model to create packages programmatically and code custom tasks and other package objects.
A stored procedure in SQL Server is a group of one or more Transact-SQL statements or a reference to a Microsoft .NET Framework common runtime language (CLR) method. They can be called from within SSIS just the same as the unencapsulated SQL statement. For more information about it, please see: http://msdn.microsoft.com/en-us/library/ms190782(v=sql.110).aspx

Consolidate JUnits on to a single portal

I would like to consolidate all my jUnits onto a single web portal (like fitnesse) and build them every night for a consolidated report. Are there any opensource tools available for it ?
I think you need continuous integration system, such as CruiseControl and Hudson. You could write Ant script to compile and run your test cases periodically.