Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Linux
- urllib
- IOS
- tensorflow
- 유니티
- 맛집
- swift
- Excel
- PyQt
- sqlite
- 다이어트
- port
- ubuntu
- 리눅스
- GIT
- python
- 날짜
- node.js
- MS-SQL
- mssql
- 라즈베리파이
- flutter
- javascript
- MySQL
- ASP
- Unity
- 함수
- PyQt5
- PER
- pandas
Archives
아미(아름다운미소)
Postgres: Show Schema Sizes in a Database 본문
SELECT schema_name,
pg_size_pretty(sum(table_size)::bigint) as "disk space",
(sum(table_size) / pg_database_size(current_database())) * 100
as "percent"
FROM (
SELECT pg_catalog.pg_namespace.nspname as schema_name,
pg_relation_size(pg_catalog.pg_class.oid) as table_size
FROM pg_catalog.pg_class
JOIN pg_catalog.pg_namespace
ON relnamespace = pg_catalog.pg_namespace.oid
) t
GROUP BY schema_name
ORDER BY schema_name
Postgres: 데이터베이스의 스키마 크기 표시
'데이타베이스' 카테고리의 다른 글
Postgresql timezone 변경 (0) | 2021.12.18 |
---|---|
[SQL] SQLGate 키보드 단축키 (0) | 2018.03.09 |
Comments