Loading...
MySQL 9.5 Reference Manual 9.5의 7.5.2 Obtaining Component Information의 한국어 번역본입니다.
아래의 경우에 피드백에서 신고해주신다면 반영하겠습니다.
감사합니다 :)
mysql.component 시스템 테이블에는 현재 로드된 컴포넌트에 대한 정보가 포함되어 있으며, 어떤 컴포넌트가 INSTALL COMPONENT를 사용하여 등록되었는지를 보여줍니다. 이 테이블을 조회하면 어떤 컴포넌트가 설치되어 있는지 알 수 있습니다. 예를 들면 다음과 같습니다:
1mysql> SELECT * FROM mysql.component; 2+--------------+--------------------+------------------------------------+ 3| component_id | component_group_id | component_urn | 4+--------------+--------------------+------------------------------------+ 5| 1 | 1 | file://component_validate_password | 6| 2 | 2 | file://component_log_sink_json | 7+--------------+--------------------+------------------------------------+
component_id와
component_group_id 값은 내부용입니다.
component_urn은 컴포넌트를 로드 및 언로드하기 위해 INSTALL COMPONENT와
UNINSTALL COMPONENT 스테이트먼트에서 사용되는 URN입니다.
7.5.1 Installing and Uninstalling Components
7.5.3 Error Log Components