简体   繁体   中英

Creating MySQL Schema from AWS RDS

Is it possible to create a MySQL Schema from a running AWS-based RDS database? I am a newbie and not sure whether there is a tool like what is available in MySQL workbench type dashboard to create schema at ease?

I am also new to this but I recently created a MYSQL database on AWS RDS. (I am new to MySQL and AWS).

The answer is yes, we can create schemas. However, as much as I understand, there is no concept of schema in MySQL. There is one database where you create the different database objects and then we just query those using one user or the other. Edit:: Database and Schema are same thing as per the comments. So yes, we can create schemas and then users to access them.

Anyways, you can use the MySQL workbench to connect your AWS RDS database. Or you can do the same using any coding language. For both the above options, make sure your database is created with 'Publicly accessible' option enabled.

Refer to this - https://aws.amazon.com/getting-started/hands-on/create-mysql-db/

If you follow all steps, your database on AWS should work like one installed locally on your machine.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM