From exasol
Exasol database interaction via exapump CLI and Exasol SQL. Covers file upload/export, SQL queries, and Exasol-specific SQL behavior including data types, reserved keywords, and constraints.
How this skill is triggered — by the user, by Claude, or both
Slash command
/exasol:exasol-databaseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Trigger when the user mentions **Exasol**, **exapump**, **database import/export**, **CSV/Parquet upload**, **Exasol SQL**, **IMPORT INTO**, **EXPORT INTO**, **EXA_**, or any Exasol database interaction.
Trigger when the user mentions Exasol, exapump, database import/export, CSV/Parquet upload, Exasol SQL, IMPORT INTO, EXPORT INTO, EXA_, or any Exasol database interaction.
Ensure a working exapump profile before proceeding:
exapump sql --profile <name> "SELECT 1" (always place --profile after the subcommand). On success, use --profile <name> on all subsequent commands.exapump sql "SELECT 1".exapump profile list to check available profiles.
exapump sql --profile <name> "SELECT 1" (always place --profile after the subcommand).exapump profile add default to create one, then retry.After the connection is established, determine the task type and load only the references needed:
Local files (upload CSV/Parquet, export to local files):
references/exapump-reference.mdreferences/import-export.md (decision tree, connection objects)Remote files / bulk loading (S3, Azure, GCS, FTP, HTTP — IMPORT/EXPORT):
references/import-export.mdSQL execution (queries, DDL, DML, schema inspection):
references/exapump-reference.md (CLI usage)references/exasol-sql.md (core SQL behavior)Table design (DISTRIBUTE BY, PARTITION BY, CREATE TABLE layout):
references/table-design.mdQuery profiling / performance (slow queries, data skew, REORGANIZE):
references/query-profiling.mdAnalytics / window functions (ROW_NUMBER, RANK, LAG/LEAD, QUALIFY, GROUPING SETS):
references/analytics-qualify.mdVirtual Schemas (external data sources, adapter scripts):
references/virtual-schemas.mdMultiple routes can apply — load all that match.
exapump sql "SELECT KEYWORD FROM EXA_SQL_KEYWORDS WHERE RESERVED ORDER BY KEYWORD"This skill handles core database interaction: connecting, uploading/exporting files, SQL execution, and table design. For UDF development and Script Language Containers, the exasol-udfs skill provides specialized guidance and will activate automatically when relevant.
npx claudepluginhub exasol-labs/exasol-agent-skills --plugin exasolRuns SQL queries or natural language questions against registered tables or ad-hoc on Parquet, CSV, JSON, Arrow IPC files using datafusion-cli.
Executes authoring T-SQL (DDL, DML, data ingestion, transactions, schema changes) against Microsoft Fabric Data Warehouse and SQL endpoints from CLI environments.
Manage schemas, execute queries, handle migrations, and diagnose query plans for Aurora DSQL, a serverless distributed SQL database. Covers IAM auth, multi-tenant patterns, and SQL compatibility validation.