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 |
Tags
- container
- 쿠버네티스
- MSA
- 스파크
- docker
- 컨테이너
- 도커
- RDD
- spark
- Prototype
- OkHttpClient
- REST
- CRAWL
- okhttp3
- MariaDB
- atlas
- Java
- oracle
- Data Lineage
- 테이블정의서
- 정규식
- 크롤링
- microservice
- dataframe
- 파이썬
- web crawl
- dataset
- kubernetes
- Python
- replaceAll
Archives
- Today
- Total
J 의 기록
Oracle 테이블 정의서 쿼리 본문
테이블정의서 (ORACLE)
--------------------------------------
select a.table_name
, b.comments
, a.column_name
, c.comments
, a.data_type
, a.nullable
--, to_clob(a.data_default)
from user_tab_columns a
, user_tab_comments b
, user_col_comments c
where a.table_name = b.table_name
AND a.column_name = c.column_name
AND b.table_name = c.table_name
AND b.comments like '%캠페인%'
--AND c.comments is not null
order by a.table_name asc
;
---------------------------------------
user_tab_columns : DB내의 모든 테이블 컬럼
user_tab_comments : 사용자가 설정한 테이블의 코멘츠 정보
user_col_comments : 사용자가 설정한 컬럼 코멘츠 정보
'개발' 카테고리의 다른 글
[Kubernetes] 쿠버네티스와 도커 (0) | 2020.03.06 |
---|---|
VNC 설치 (0) | 2020.03.06 |
MariaDB VS MySQL (0) | 2020.03.06 |
Apache Atlas (0) | 2020.03.06 |
[Kubernetes] 쿠버네티스란 무엇인가 (0) | 2020.03.06 |