Home > database >  Can i create database per user on AWS RDS for MYSQL?
Can i create database per user on AWS RDS for MYSQL?

Time:09-07

I'm creating an application where each business will have;

  1. owner which is a user at some-business-name database,
  2. Some information about the business (This part will actually change my app's UI)
  3. employees(Also users same as owner)
  4. permissions (for employees. permissions for owner can't changed)
  5. customers (Every business have customers) ... and such

I need a new database for each business with a unique business name for database name

Is there a limit to the number of databases in AWS RDS for MYSQL? if so how can i solve this problem?

NOTE: I have to create this application using aws

CodePudding user response:

Take a look at the FAQs for RDS, looking at the "How many databases or schemas can I run within a DB instance?" section. According to that:

RDS for MySQL: No limit imposed by software

  • Related