I have in hands a few Azure SQL databases in which I want to perform analytics and visualization.
My problem is that the data I want to use for visualization is stored in different databases, in the same server. Let's say we have the following structure:
Company-Azure-Server.net
Clients_DB
Table_Companies
Table_Citizens
Followers_DB
Table_FollowRelationship
I want to analyse the relationship between Citizens, Companies and their FollowRelationship.
This architechture made no sense to me in a data analysis perspective, since it is not taking advantage of the relational nature of the relational database.
Nevertheless, I was told they have a strong preference in keeping it this way for performance sake of accessing it with microservices, rather than combining it all in a single database.
Now, I know that with SQL Server, cross-database queries would be no problem, With Azure SQL though, it becomes a lot more complicated.
My question then is:
What data analysis and visualization tools ate there that are able to perform these cross-database queries with Azure SQL? Preferably open source, since we are a startup