Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Define additional variables for file name pattern in Dbeaver?

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.

like image 224
bluelurker Avatar asked Aug 30 '18 07:08

bluelurker


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.

like image 119
erlan23 Avatar answered Sep 22 '22 02:09

erlan23


Those options have changed to:

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

v6.1.5

like image 29
Jacquers Avatar answered Sep 20 '22 02:09

Jacquers