반응형
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
- gas
- c#
- PostgreSQL
- dataframe
- Kotlin
- Excel
- django
- PySpark
- GIT
- math
- google apps script
- Google Spreadsheet
- Google Excel
- SQL
- Apache
- Redshift
- 파이썬
- Python
- string
- PANDAS
- numpy
- list
- array
- Java
- matplotlib
- Mac
- Github
- Tkinter
- hive
Archives
- Today
- Total
목록pg_class_info (1)
달나라 노트
Redshift : table 생성 일시 추출, table 생성 시점 추출
Table의 생성 시점을 보기 위해선 아래 query를 실행하면 됩니다. select nspname as schema_name , relname as table_name , relcreationtime as creation_time from pg_class_info as pci -- left join pg_namespace as pns on pns.oid = pci.relnamespace -- where pci.reltype != 0 and pns.nspname = 'schema_name' and pci.relname = 'table_name' ;
SQL/Redshift
2023. 1. 31. 19:35