Exasol export
Skill exasol-labs/exasol-agent-skills/plugins/exasol/skills/exasol-export
Exasol skills for AI agents. Optimized for Claude Code and OpenAI Codex 🤖
npx -y skills add exasol-labs/exasol-agent-skills --skill exasol-exportAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use Exasol EXPORT SQL plus exapump local file export workflows for moving data out of Exasol. Covers native CSV/FBV export, local CSV/Parquet exports with exapump, connection objects, reject limits, and export credential patterns.
SKILL.md
2.8 KB, as published. Nobody here has run it
Exasol Export Skill
This skill covers only workflows that move data out of Exasol.
Step 0: Establish Connection
Ensure a working exapump profile before giving terminal workflows that use
exapump export:
- If the user mentions a specific profile name, test it with
exapump sql --profile <name> "SELECT 1"; always place--profileafter the subcommand. - Otherwise, test the default profile with
exapump sql "SELECT 1". - If the check fails, run
exapump profile list. - If profiles exist, ask which one to use and retry with
exapump sql --profile <name> "SELECT 1"; keep--profileafter the subcommand. - If a non-default profile is selected, include the same
--profile <name>after the subcommand on subsequentexapumpcommands, such asexapump export --profile <name> --table <schema.table> --output <file> --format <format>. - If no profiles exist, tell the user to run
exapump profile add defaultand retry. - Never read or reference the exapump configuration file.
Trigger when the user mentions EXPORT, EXPORT INTO, export table, export local file, exapump export, export CSV, export Parquet, export to S3, export to Azure Blob, export to GCS, export to FTP, export to SFTP, export to HTTP, export to HTTPS, REJECT LIMIT with export intent, or CREATE CONNECTION together with export target setup intent.
Routing Algorithm
-
Local files on the user machine
- Trigger phrases:
export local file,into local,to local,exapump export - Load:
references/export.md
- Trigger phrases:
-
Remote or cloud files reachable by Exasol
- Trigger phrases:
EXPORT,EXPORT INTO,S3,Azure Blob,GCS,FTP,SFTP,HTTP,HTTPS,REJECT LIMIT,CREATE CONNECTIONwith export target setup intent - Load:
references/export.md
- Trigger phrases:
-
Connection-object export setup
- Trigger phrases:
CREATE CONNECTIONwith export target setup intent,ALTER CONNECTION,temporary credentials,SESSION TOKEN - Load:
references/export.md
- Trigger phrases:
-
Script-based export target
- Trigger phrases:
EXPORT INTO SCRIPT,export script,custom export script - Load:
references/export.md
- Trigger phrases:
Notes
- Use this skill for direct data movement out of Exasol.
- Use exasol-import for native
IMPORT, local upload workflows, Parquet import, reject handling, and staging-based loading into Exasol. - Use exasol-extension-catalog when the user asks for connector, extension, or integration-based data transfer instead of direct native
EXPORTorexapump export.