MCP server for SAP HANA performance analysis: query plan capture, PlanViz export, expensive statement monitoring, plan cache inspection, table statistics, memory stats, and active session tracking.
19 lines
696 B
Plaintext
19 lines
696 B
Plaintext
# SAP HANA connection settings
|
|
# Hostname or IP address of the HANA instance
|
|
HANA_HOST=your-hana-host
|
|
# SQL port (default: 3<instance_number>15, e.g. 30015 for instance 00)
|
|
HANA_PORT=30015
|
|
# Database user — requires monitoring privileges (SELECT on SYS schema M_* views)
|
|
HANA_USER=DBADMIN
|
|
# Password for the database user
|
|
HANA_PASSWORD=your-password
|
|
|
|
# TLS / encryption settings (optional, both default to true)
|
|
# Set to true to encrypt the connection with TLS
|
|
HANA_ENCRYPT=true
|
|
# Set to false to skip server certificate validation (e.g. self-signed certs)
|
|
HANA_SSLVALIDATECERTIFICATE=false
|
|
|
|
# Tenant database name (optional — omit to connect to the system database)
|
|
# HANA_DATABASE_NAME=CCQ
|