Cesar Santos

Results 7 comments of Cesar Santos

We saw that some of the queries used to fill out the welcome page access the `logs` table at the metadata DB. In our case, this table didn't have an...

We've fixed our problem by creating a specific index for this query: ``` SELECT anon_1.dashboard_id AS anon_1_dashboard_id, anon_1.slice_id AS anon_1_slice_id, anon_1.action AS anon_1_action, anon_1.dttm AS anon_1_dttm, dashboards.slug AS dashboard_slug, dashboards.dashboard_title...

Hi folks! Is this already available on dbeaver latest release?

Hey folks! This stackoverflow entry, makes me believe the real problem is not specifying the Database: https://stackoverflow.com/questions/29151478/how-does-a-table-not-being-in-information-schema-or-systables-happen I believe that making the connection string work properly will fix my issue.

Here I'm using database authentication, I'm also waiting for my local machine to be whitelisted once again so that I can test a built docker image at the latest version...

Hi @chathawee, I believe these two indexes can help you: `CREATE INDEX logs_user_id_dttm_idx ON public.logs USING btree (user_id, dttm)` and `CREATE INDEX logs_user_id_dttm_idx1 ON public.logs USING btree (user_id, dttm) WHERE...

Hey folks, any updates on this? Had a similar problem when running a merge statement on a large table (400 columns): ![image](https://user-images.githubusercontent.com/89807801/233191849-dedafc3e-e674-4be3-ab77-50ceec155ef6.png)