Reputation: 1503
Normally I use Dbeaver for windows and always export my result set like this:
This step by step puts my result set in my clipboard and I can paste it wherever I want to work with it.
The problem is that now I am using dbeaver for mac and this guide is not working. I can go on until the moment that I select my result set like in the image below:
But once I go further in the process, in the last step I get: no query
Note that in "source" it was suppose to show the query that originated the result set, but instead it says just "select.
As a result it does't select my result or anything (besides being "successful").
Normally my query would show up there automatically and I couldn't find any option that corrects this problem in the menus.
Upvotes: 138
Views: 250746
Reputation: 1239
In version 21.0 / Release date march 1, 2021
Upvotes: 13
Reputation: 6452
You don't need to use the clipboard, you can export directly the whole resultset (not just what you see) to a file :
The export runs in the background, a popup will appear when it's done.
In newer versions of DBeaver you can just :
The export runs in the background, a popup will appear when it's done.
Compared to the previous way of doing exports, this saves you step 1 (executing the query) which can be handy with time/resource intensive queries.
Upvotes: 192
Reputation: 1503
The problem was the box "open new connection" that was checked. So I couldn't use my temporary table.
Upvotes: 9
Reputation: 465
Is there a reason you couldn't select your results and right click and choose Advanced Copy -> Advanced Copy? I'm on a Mac and this is how I always copy results to the clipboard for pasting.
Upvotes: 0