You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT table_schema "restaurantevents",
ROUND(SUM(data_length + index_length) /1024/1024, 1) "DB Size in MB"FROMinformation_schema.tablesGROUP BY table_schema;
cloudformation for dbparametergroup
"Parameters": {"MaxConnection": {"Type": "Number","Description" : "Set max connection limit for the db instance"}}"Resources": {"DBParameterGroup": {"Type": "AWS::RDS::DBParameterGroup","Properties": {"Description": "Parameter group for Restaurant RDS instances","Family": "aurora5.6","Parameters": {"max_connections": {"Ref": "MaxConnection"}}}}}