Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon DynamoDb Database

Is it possible to create more than one databases in one aws dynamodb account ? e.g one database for university who manages university tables and one database for school who manages school tables. Thanks.

like image 538
Mian Avatar asked Jan 17 '26 04:01

Mian


1 Answers

The other answer is correct but the more complete answer is that DynamoDB operates with tables and items. There is no concept of a "database" per se, as that would imply relating multiple tables, which would go against the non-relational aspect of DynamoDB.

So, long story short, yes, you can create multiple tables, that each is part of a different application, all in the same AWS account, and/or region. But the logical relationship (such as belonging to the same application, or storing related data) must all be modelled at the application level. DynamoDB doesn't care. It doesn't even care much about the schema of items in the same table, much less about different tables.

like image 183
Mike Dinescu Avatar answered Jan 19 '26 19:01

Mike Dinescu



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!