I try to connect to another server and database for transfer data purposes.
But unfortunately the image below appear. May I know the reason and can show me how we can create connection to that server?
My current server using latest version (MySQL 8) and other database that I want to connect using MySQL 5(something like that). Please advice Thank you.
IMAGE :
MySQL-8.0 doesn't support the "old password" mechanism from MySQL-4.X. Update the database driver and it will hopefully connect correctly.
Related
I'm trying to learn PL/SQL language. On my mac laptop (macOS Monterey, M1) I have the following set up:
MySQL Workbench running a test database
and SQL*Plus installed in the terminal
My question: How do I connect to my local MySQL Workbench database via sqlplus?
I imagine I need a user/pass and to specify localhost 3306 as the connection endpoint... but where do I find these things, how do I set them up? I've looked at Oracle documentation but haven't found the answer.
Any help would be greatly appreciated! This is study for a SQL interview. Thanks in advance.
-Sebastian
Either you need to use MySQL Workbench as a client for MySQL Server, or else you need to use SQL*Plus as a client for Oracle Server. These are two different brands of database (although they are both owned by Oracle Corporation) and the clients cannot connect to each other's database.
Your statement of connecting to MySQL Workbench using SQL*Plus makes no sense anyway, since both of these are clients.
I know the question I am about to ask is a very stupid once but I am new to MYSQL so please bear with me. Want I want to do is create a database on my local machine and also access/manipulate it from their. I thought MYSQL WB was the all in one tool to do this i.e it will also allow me to create a database and also make a MYSQL server from which to access it. But I came to know the Workbench is just a front end and you need to have a some kind of a seperate MYSQL server module for it to access.
The problem is I can't seem to find any link for a simple a server module on the MYSQL download site.
http://dev.mysql.com/downloads/ .
It has one Cluster Server but I don't think this is what I am looking for. If anyone could provide a link to the MYSQL server module using which I could connect MYSQL Workbench on my local host, and the steps to connect them that would be great.
The one your looking for is named MySQL Community Edition. The current version is 5.6.14. Just select your platform (mac, linux or windows) and follow the installation guide.
If you wish to have php/mysql then you can download xampp. It includes all the necessary tools. Or if you wish to install it separately then follow this for Windows,
http://dev.mysql.com/downloads/installer/
I'm running a wordpress blog on Windows Azure Website (free).
I've tried to create another blog and use other database. As I'm using a free mode, it denied me to create a new database, so I chose to use the same.
It didn't work and I decided to delete this second site. But now, I can't access my first site.
The error message is : "Error establishing a database connection".
Is there a way to handle this?
No.
You can't restore a deleted MySQL database. Especially in preview feature.
Actually I contacted ClearDB, because they are responsable for MySQL databases running in Azure, and they restored my DB.
Currently I'm working on access database(.mdb) but I wanted to transfer to mysql database. Currently I'm working on windows 7 machine and installed mysql from http://www.mysql.com/downloads/installer/ .
I opened Mysql workbench and created a new EER MODAL ?? as shown in this screenshot . But I still couldn't figure out which one is the database and how to use it. Heres another screenshot of the table modal , and how to save the database to a location when I want.
PS: I'm totally new to mysql and I use access databases and I still don't know if I'm in the right way. Please suggest me if not. thanks
You have the MySQL server running on your local machine. To access it, you would connect to localhost:3306 (I think you have your port set to 3306 from the screenshot I see).
Your second screenshot is the database you are connected to in SQL workbench and what tables it contains. If you give some information on how you are going to be using the DB, I can give you some more information to point you in the right direction.
You don't have to create a new ERR Model. Just make a new connection and New server instance & you are done. If possible do try to install Wamp too.
So I have been given the host, username, and login information for a MySQL Database. I need a client that I can use to log in to the Database remotely and create/update tables and edit all the data.
I found the MySQL Administrator client provided by them, but it seems you can do everything BUT edit the actual data with it.
Is there anything like this?
Would I be able to use SQL Server Express (or something similar), to connect to a remote server online and do all of this?
with the mysql administrator, you normally get the mysql query browser, which sounds like what you want :)
If you're using OS X or Linux, you can install the mysql client and connect via the console. There are plenty of GUI clients for OS X and Windows (SqlYOG is a good, free one that I've used), just search Google for "mysql client ".
MySQL Workbench works great for me. It allows me to connect to some remotely hosted databases that I have via ssh.
I highly recommend SqlYog Community Edition which inkedmn also mentioned. It handles database administration and query building, and similar enough to SQL Server Management Studio that you won't feel completely lost.