Questions tagged [federated]

Federated processing is a delegation of method invocation calls to trusted third party APIs or web services.

Federated processing transparently maps requests from multiple locations to return a single response. A federated data source can be queried directly even though the data is not stored locally.

References

111 questions
9
votes
1 answer

Is is possible to create a FEDERATED on VIEW for mysql

How can I create a FEDERATED on VIEW which placed on remote server? I'm using MySQL.
Tioma
  • 2,120
  • 9
  • 35
  • 52
6
votes
2 answers

Howto add Azure AD as AWS Cognito Federated IdP

G'day Everyone. I have a Web application running with AWS S3, RDS, Lambda and API Gateway using an AWS Cognito user pool as login service. This is working good so far. But now i would like to integrate it with Azure ID. Does someone has a good…
EnlightMe
  • 200
  • 2
  • 9
6
votes
3 answers

Enable Federated engine in MySQL 5.6 Windows

I am trying to enable Federated engine in MySQL. I did followed some post and blogs and i edited my-default.ini [Location: C:\Program Files\MySQL\MySQL Server 5.6] by adding federated keyword under [mysqld]. [mysqld] federated Later i have…
Naveen
  • 159
  • 5
  • 18
5
votes
1 answer

How to set custom attribute in federatedSignIn in AWS Cognito/Amplify

I need to create some custom attributes while registering user. I can do that successfully (Vue) with: methods: { async signUp () { const { username, password } = this.form; try { this.error = ''; await…
4
votes
1 answer

Can't create an AD account because the directory is federated (AADB2B_0001)

We're trying to invite users (including those from different ADs) to ours in order to give them access to our enterprise app. We are using the AD to manage the app's users and permissions. We send them an email to join our AD as a guest…
4
votes
1 answer

how to access postgres from mysql?

Is it possible to access a Postgres database from MySQL, so that I could run a single query that does joins across tables in both databases? For example: SELECT * FROM postgres.db1.table1 as t1, mysql.db2,table2 WHERE t1.id=t2.id;
verse
  • 236
  • 4
  • 9
4
votes
2 answers

Windows 7 Federated Search - How to make it send search requests to my .net assembly

I am trying to display search results in the windows 7 explorer thru the federated search feature, from a local .net assembly. (not from a web service) I have found various tutorials, but all of them are for web services. Earlier I thought that it…
Vaibhav Garg
  • 3,630
  • 3
  • 33
  • 55
3
votes
0 answers

Tableau Bigquery access issue with Google Sheet federated table

I have a View (Table A) in Big Query which was created from a Google Sheet. It updates live which is perfect. I have then connected that View to another View (Table B) in Bigquery. Let’s call this combined View, Table C. In Tableau Desktop I try…
3
votes
1 answer

What is a Federated Configuration?

I am confused at this sentence found on the RabbitMQ site, Google wasn't much help: https://www.rabbitmq.com/ "RabbitMQ can be deployed in distributed and federated configurations to meet high-scale, high-availability requirements." What does it…
sallyp
  • 226
  • 3
  • 12
3
votes
1 answer

MySQL - Does Federated Engine have to be enabled on both servers?

I am attempting to run a single MySQL query, joining two databases on two servers. I am aware of the potential poor performance, but would like to test regardless. The purpose of this test, I am working on a Windows domain, with a development…
JustBaron
  • 2,319
  • 7
  • 25
  • 37
3
votes
1 answer

Slow SELECT ... LIMIT without WHERE clause on federated table

I've got a problem concerning the federated table engine: I created a federated table pointing to a reasonable large remote table (about 800.000 rows, row size 211 Bytes, MyISAM). When sending the following query: SELECT * FROM TABLE LIMIT 0,30 the…
Zarrouk
  • 31
  • 6
3
votes
1 answer

mysql create federated all table in database or federated database

I want to federated all tables from database or federated database. Can I do that in mysql? The thing is, I have mysql events at night in server A but for some reason that events weren't finished yet in the morning (It should finished). So, to make…
Agata
  • 67
  • 1
  • 1
  • 7
3
votes
1 answer

Azure multi tenant security - Azure Federated SQL, certs etc

I'm trying to get some advice on how to approach a security architecture on Azure. Background: We are looking at building a multi-tenant app on Azure that needs to be extremely secure (personally sensitive data). The app will be accessed by standard…
3
votes
5 answers

Variables in Create Statement

I am trying to use some variables in a creation script for database setups. I am not exactly sure how to use them. Please explain how to properly format my code. Below is the code I try, and the error I get: SET @username = 'xxxx'; -- store number…
Justin Giboney
  • 3,271
  • 2
  • 19
  • 18
2
votes
1 answer

How to trigger SPLIT's and DROP's when sharding in SQL Azure

I am setting up a system running on Windows Azure for which I expect high volume of data and high traffic. In order to handle it, I am designing a Federated database. I am interested in having the application itself SPLIT (or DROP) federated…
DDRider62
  • 753
  • 6
  • 17
1
2 3 4 5 6 7 8