DB 데이터베이스 사이즈 체크 (전/후 DB 사이즈 비교)
//2023-08-25 목적 SQL 구문 DB 사이즈 조회 SELECT table_schema AS `Database`, SUM(data_length + index_length) / 1024 / 1024 AS `Size (MB)` FROM information_schema.TABLES GROUP BY table_schema;
//2023-08-25 목적 SQL 구문 DB 사이즈 조회 SELECT table_schema AS `Database`, SUM(data_length + index_length) / 1024 / 1024 AS `Size (MB)` FROM information_schema.TABLES GROUP BY table_schema;
//2023-08-11PDF.js is working fine, no problem is found First Name Last Name Gender Age Email Phone Aldus Edwards Male 26 a.edwards@randatmail.coma.edwards@randatmail.com 248-8872-58 Clark Rogers Male 24 c.rogers@randatmail.com 408-6210-84 William Turner Male 28 w.turner@randatmail.com 500-1449-03 Arnold Andrews Male 22 a.andrews@randatmail.com 965-1640-95 Dainton West Male 24 d.west@randatmail.com 279-8995-85 Abraham Foster Male 19 a.foster@randatmail.com 224-9633-16 Lenny Cole Male … Read more
2025-01-29(수) //SSL/TLS 인증서는 AWS에서 발급한 것도 사용가능해? 네, AWS에서 발급한 SSL/TLS 인증서도 사용 가능합니다. AWS Certificate Manager(ACM)를 통해 무료로 SSL/TLS 인증서를 발급받아 사용할 수 있습니다. ACM의 주요 특징은 다음과 같습니다: 1. 무료 인증서 발급: 공인된 도메인에 대해 무료로 인증서를 발급받을 수 있습니다. 2. 자동 갱신: 인증서 만료 시 자동으로 갱신되므로 수동 관리가 필요 없습니다. 3. AWS … Read more