Define additional variables for file name pattern in Dbeaver?

Viewed 5666

While exporting the resultset i could only find 2 variables that can be used to name a file(table and timestamp).enter image description here

Does anyone know if custom variables/patterns can be created? I looked for some documentation online, however I couldn't find any.

2 Answers

On DBeaver 5.2.4, there is a tooltip when you hover your cursor to the "File name pattern" textfield. It says, allowed variables are: ${datasource}, ${catalog}, ${schema}, ${table}, ${timestamp}, ${date}, and ${project}.

I wish it could help.

Those options have changed to:

${host}
${database}
${table}
${date}
${timestamp}

v6.1.5

Related