I am using my sql in one system powerbi in another system. I entered the server id with port number. But it is throwing some error. How to enable remote connection in mysql? And how to connect it to power bi
I tired to enable remote connection but i don't know how to do
Related
I want to connect power bi to a MySql db that is on an a remote server and allows only localhost connection. I know power bi does not support ssh by itself so I can't use it like in Workbench. Is there any workaround to connect powerbi to a remote mysql db?
I can do it on my machine as follows:
Choose Get Data > SQL Server from the Home tab
Type localhost into the Server field
Click OK
Specify Credentials
Click Connect
I have a Web App running on Azure. I can connect to the DB with Visual Studio and sending/retrieving data on my app works fine.
However, I can not connect to the MySQL db using MySQL Workbench.
The error that I have is
Lost connection to MySQL server at 'reading initial communication packet', system error: 54
I have whitelisted my IP on the azure portal and opened the port 1433 on my computer. I don't understand why can't I connect using MySQL Workbench while having no problem with Visual Studio.
EDIT:
Here is how i have setup MySQL Workbench:
And Here is my Azure portal:
I'm using port 1433 because that is the port given on the Azure Portal, but also in this tutorial: Connect to Azure DB using MySQL Workbench
Ok - now that you included screenshots: You're trying to use MySQL Workbench to connect to a SQL Database (which is SQL Server as a service, not MySQL).
Edit: 8/15/2017
Azure now offers Azure Database for MySQL which is currently in public preview.
In your specific case, you created a SQL Database, which cannot be manipulated with MySQL Workbench.
I want to add a MySQL instances that is running as a RDS service through Amazon Web Services as a Linked Server in Microsoft SQL Server Management Studio.
Does anyone know of any information on how I can set this up?
What I want to be able to do is query data from my MySQL server from the local Micorsoft SQL server and then combine the data into other queries.
SELECT *
FROM OPENQUERY(MySQL_Link, 'SELECT *
FROM users
WHERE name = 'test')
Do you already have the ODBC connection set up to connect to the instance?
Unable to connect to remote mysql server using unixodbc, libmyodbc
I would think that once you have that working, you would be able to use the same process for creating a linked server to MySQL
I hope this is helpful.
I have an application which connects to SQL Server 2008 via windows service.Basically,windows service pics up a configuration file to get connection details like instance name , user name & password.Currently this windows service is failing to start with following error message :-
A network-related or instance-specific error occurred while establishing a connection
to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server
is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
Application server and DB server are different machines.I can connect to SQL Server via SSMS from application server without any issue. Also I created a UDL on app server and it also connected fine to DB server. Any help here is much appreciated.
Check the account under witch windows service is running- most possible that account is not allowed to make connections to other computers.
I want to connect to a MySQL database but the only connection available is a telephone line, a dial-up connection. I'm using vb.net 2005 Express for my project. All local connections are working the only problem is how can i get the server to connect, like IP to connect to establish a connection.
Thanks!