일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- asp.net
- 웹 서비스
- scrollView
- 웹뷰
- MANTIS
- 이클립스
- STS
- WebView
- C#
- Bootstrap
- Redirect
- SpringSource Tool Suite
- Android
- TextBox
- MS-SQL
- Apache Lucene
- decompiler
- MSsql
- Web Service
- Java
- 컬럼명
- html
- Eclipse
- 안드로이드
- 자바스크립트
- varags
- javascript
- Maven
- 자바
- jsp
- Today
- Total
목록Database/Postgres (2)
bboks.net™
Rocky Linux 8 기준 1. postgresql repo 설치 dnf install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2. 기본 postgresql 비활성화 dnf -qy module disable postgresql 3. postgresql 설치 dnf install postgresql13 postgresql13-server 4. pg_rman 설치 해당 링크로 들어가 설치한 postgresql 버전과 맞는 버전의 pg_rman 설치 rpm -ivh https://github.com/ossc-db/pg_rman/releases/download/V1...
query 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_n..