추출2
2025.03.05 16:05
#!/usr/bin/env python3 import subprocess import sqlparse from sqlparse.sql import Identifier, IdentifierList # 설정 IMPALA_HOST = "your_impala_host" IMPALA_PORT = "21050" DATABASE = "your_database" OUTPUT_FILE = "view_table_mapping.txt" def run_impala_query(query): cmd = f"impala-shell -i {IMPALA_HOST}:{IMPALA_PORT} -d {DATABASE} -q '{query}' --quiet -B" result = subprocess.run(cmd, shell=True, capture_output=True, text=True) return result.stdout.strip() def extract_tables(ddl): parsed = sqlparse.parse(ddl)[0] tables = set() for token in parsed.tokens: if isinstance(token, (Identifier, IdentifierList)): if token.get_parent_name(): # db.table 형식 tables.add(f"{token.get_parent_name()}.{token.get_real_name()}") else: tables.add(token.get_real_name()) return tables # 메인 로직 with open(OUTPUT_FILE, 'w') as f: f.write("View와 물리 테이블 매핑 정보\n") f.write(f"실행 시간: {import_time.strftime('%Y-%m-%d %H:%M:%S')}\n") f.write("----------------------------------------\n") views = run_impala_query("SHOW VIEWS;").splitlines() if not views: f.write(f"데이터베이스 {DATABASE}에 View가 존재하지 않습니다.\n") exit(0) for view in views: ddl = run_impala_query(f"SHOW CREATE VIEW {view};") tables = extract_tables(ddl) f.write(f"View: {view}\n") if tables: f.write("Physical Tables:\n") for table in sorted(tables): f.write(f" - {table}\n") else: f.write("Physical Tables: (추출 실패)\n") f.write("----------------------------------------\n") print(f"처리 완료. 결과는 {OUTPUT_FILE}에 저장되었습니다.")
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
32 |
테스트
![]() | 관리자 | 2025.03.22 | 6 |
31 | 추출3 | 관리자 | 2025.03.05 | 3 |
» | 추출2 | 관리자 | 2025.03.05 | 3 |
29 | 추출 | 관리자 | 2025.03.05 | 4 |
28 | 쏜 기초영양소 가품 구분해보기 | 관리자 | 2025.01.03 | 1 |
27 | 경기침제 지표 top5 | 관리자 | 2024.12.22 | 7 |
26 | 경제지표 | 관리자 | 2024.09.28 | 4 |
25 | 마젠토 오픈소스 2.4.7 설명 | 관리자 | 2024.08.30 | 8 |
24 | https://www.cameron.co.kr/theme | 관리자 | 2024.08.26 | 6 |
23 | XE의 새로운 버젼 rhymix (https://xetown.com/) | gooper | 2024.08.23 | 7 |
22 | xe에서 wordpress로 마이그레이션 참고 자료 | gooper | 2024.08.23 | 2 |
21 | Once issued, the INVALIDATE METADATA statement cannot be cancelled. | gooper | 2024.07.30 | 20 |
20 | 질문 | gooper | 2024.07.12 | 9 |
19 | 제로보드 XE, 워드프레스로 이전 참고 사이트 | gooper | 2024.04.09 | 11 |
18 | 한국인 해외주식 보유헌황 | gooper | 2024.03.05 | 19 |
17 | 미국주식 공매도 현황 | gooper | 2024.03.01 | 152 |
16 | silver 미결제 확인 | gooper | 2022.12.05 | 107 |
15 | gold 미결제 뫅인 | gooper | 2022.12.05 | 5 |
14 | 종로골드및 골드테크 정보 | gooper | 2022.08.19 | 144 |
13 | 개인사업자 부가세신고 방법 종결 포스팅 - 국세청 홈택스 셀프 신고 | gooper | 2022.07.14 | 8 |