0

Is it possible to have a high-level with a diagram of tables, their columns and their jointures.

In MySql Workbench, it would look like this:

enter image description here

Is there any way to create this with lambdas or any other way ?

Mathieu
  • 4,587
  • 11
  • 57
  • 112
  • Can’t you use MySQL Workbench to connect to Aurora MySQL and generate it that way? – Matthew Pope Jul 24 '19 at 16:42
  • 1
    Connections workbench to aurora serverless is unfortunately far from easy and tried all here (https://stackoverflow.com/questions/51716530/aws-aurora-mysql-serverless-how-to-connect-from-mysql-workbench with no success) – Mathieu Jul 24 '19 at 18:00

1 Answers1

0

I think your underlying problem is that you were unable to connect your workbench to the cluster. I would recommend getting that to work rather than trying to work around with a query that can provide you some sort of ascii art for the table structures.

Connecting to VPC only services is a pretty common use case, I've quoted some steps here [1] [2]. Do try them out and see if you can establish workbench connectivity to your cluster.

[1] https://stackoverflow.com/a/57230236/3069919 [2] Connect to Neptune on AWS from local machine

The-Big-K
  • 2,672
  • 16
  • 35