export_data
Export SQL query results from DBeaver connections to CSV, JSON, XML, or Excel formats for data analysis and sharing.
Instructions
Export query results to various formats (CSV, JSON, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | The ID or name of the DBeaver connection | |
format | No | Export format | csv |
includeHeaders | No | Include column headers in export | |
maxRows | No | Maximum number of rows to export | |
query | Yes | The SQL query to execute for export (SELECT only) |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "The ID or name of the DBeaver connection",
"type": "string"
},
"format": {
"default": "csv",
"description": "Export format",
"enum": [
"csv",
"json",
"xml",
"excel"
],
"type": "string"
},
"includeHeaders": {
"default": true,
"description": "Include column headers in export",
"type": "boolean"
},
"maxRows": {
"default": 10000,
"description": "Maximum number of rows to export",
"type": "number"
},
"query": {
"description": "The SQL query to execute for export (SELECT only)",
"type": "string"
}
},
"required": [
"connectionId",
"query"
],
"type": "object"
}